blob: c89f84892e751e22d98ca5918b84a7249d676e0d (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/sh
# this runs the file serving tests that are expected to pass with samba3 against shares with various options
if [ $# -lt 2 ]; then
cat <<EOF
Usage: test_smbclient_machine_auth.sh SERVER SMBCLIENT CONFIGURATION <smbclient arguments>
EOF
exit 1
fi
SERVER="$1"
SMBCLIENT="$2"
# This is used by test_smbclient()
# shellcheck disable=2034
CONFIGURATION="${3}"
shift 3
ADDARGS="$*"
# This is used by test_smbclient()
# shellcheck disable=2034
smbclient="${VALGRIND} ${SMBCLIENT}"
incdir="$(dirname "${0}")/../../../testprogs/blackbox"
. "${incdir}/subunit.sh"
. "${incdir}/common_test_fns.inc"
failed=0
test_smbclient "smbclient //${SERVER}/tmp" \
"quit" "//${SERVER}/tmp" --machine-pass -p 139 "${ADDARGS}" || \
failed=$((failed + 1))
# Testing these here helps because we know the machine account isn't already
# this user/group.
test_smbclient "smbclient //${SERVER}/forceuser" \
"quit" "//${SERVER}/forceuser" --machine-pass -p 139 "${ADDARGS}" || \
failed=$((failed + 1))
test_smbclient "smbclient //${SERVER}/forcegroup" \
"quit" "//${SERVER}/forcegroup" --machine-pass -p 139 "${ADDARGS}" || \
failed=$((failed + 1))
exit ${failed}
|