summaryrefslogtreecommitdiffstats
path: root/debian/tests/smbclient-share-access-uring
blob: 4b7a2056fe3d04ae366a9870bc890c5b7bdd8d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

set -x
set -e

. debian/tests/util

ensure_uring_available

username="smbtest$$"
password="$$"
add_user "${username}" "${password}"

myshare="myshare$$"
add_share "${myshare}" io_uring

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