summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_rpcclient_dfs.sh
blob: 6d588d2ced23961a5f56de95161b8b74c4498328 (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
#!/bin/sh
#
# Copyright (c) 2022 Pavel Filipenský <pfilipen@redhat.com>
#
# Blackbox tests for the rpcclient DFS commands

if [ $# -lt 4 ]; then
	cat <<EOF
Usage: test_rpcclient_dfs.sh USERNAME PASSWORD SERVER RPCCLIENT
EOF
	exit 1
fi

USERNAME="$1"
PASSWORD="$2"
SERVER="$3"
RPCCLIENT="$4"

RPCCLIENTCMD="${VALGRIND} ${RPCCLIENT} ${SERVER} -U${USERNAME}%${PASSWORD}"

incdir=$(dirname "$0")/../../../testprogs/blackbox
. "${incdir}"/subunit.sh

failed=0

${RPCCLIENTCMD} -c "dfsversion"
RC=$?
testit "dfsversion" test ${RC} -eq 0 || failed=$((failed + 1))

${RPCCLIENTCMD} -c "dfsenum 5"
RC=$?
testit "dfsenum" test ${RC} -eq 0 || failed=$((failed + 1))

${RPCCLIENTCMD} -c "dfsenumex 5"
RC=$?
testit "dfsenumex" test ${RC} -eq 0 || failed=$((failed + 1))

testok "$0" "${failed}"