diff options
Diffstat (limited to 'debian/tests/smbclient-share-access')
-rw-r--r-- | debian/tests/smbclient-share-access | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/tests/smbclient-share-access b/debian/tests/smbclient-share-access new file mode 100644 index 0000000..b124c0c --- /dev/null +++ b/debian/tests/smbclient-share-access @@ -0,0 +1,23 @@ +#!/bin/sh + +set -x +set -e + +. debian/tests/util + +username="smbtest$$" +password="$$" +add_user "${username}" "${password}" + +myshare="myshare$$" +add_share "${myshare}" + +echo "Creating file with random data and computing its md5" +populate_share "${myshare}" "${username}" + +rm -f downloaded-data +echo "Downloading file and comparing its md5" +smbclient //localhost/"${myshare}" -U "${username}"%"${password}" -c "get data downloaded-data" + +mv -f downloaded-data data +md5sum -c data.md5 |