mirror of
https://github.com/samba-team/samba.git
synced 2025-11-11 00:23:51 +03:00
RPC-* tests that are expected to pass against Samba4. Currently only RPC-SCHANNEL and RPC-ECHO are in that list, but as we get more working this test will allow us to ensure that they stay working.
41 lines
836 B
Bash
Executable File
41 lines
836 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# add tests to this list as they start passing, so we test
|
|
# that they stay passing
|
|
tests="RPC-SCHANNEL RPC-ECHO"
|
|
|
|
if [ $# -lt 4 ]; then
|
|
cat <<EOF
|
|
Usage: test_echo.sh SERVER USERNAME PASSWORD DOMAIN
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
server="$1"
|
|
username="$2"
|
|
password="$3"
|
|
domain="$4"
|
|
shift 4
|
|
|
|
testit() {
|
|
cmdline="$*"
|
|
if ! $cmdline > test.$$ 2>&1; then
|
|
cat test.$$;
|
|
rm -f test.$$;
|
|
echo "TEST FAILED - $cmdline";
|
|
exit 1;
|
|
fi
|
|
rm -f test.$$;
|
|
}
|
|
|
|
for transport in ncalrpc ncacn_np ncacn_ip_tcp; do
|
|
for bindoptions in connect sign seal sign,seal validate padcheck bigendian bigendian,seal; do
|
|
for t in $tests; do
|
|
echo Testing $t on $transport with $bindoptions
|
|
testit bin/smbtorture $transport:"$server[$bindoptions]" -U"$username"%"$password" -W $domain $t "$*"
|
|
done
|
|
done
|
|
done
|
|
|
|
echo "ALL OK";
|