summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-13 02:37:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:41 -0500
commita568462c5965adb7234a8ca70fe12c9b54778b63 (patch)
tree4230684cd348441b7a5fd61c6a8d47cefdde5083
parentcde1950aea3d77104e969ee2f3917e1fc902d2e9 (diff)
downloadsamba-a568462c5965adb7234a8ca70fe12c9b54778b63.tar.gz
samba-a568462c5965adb7234a8ca70fe12c9b54778b63.tar.bz2
samba-a568462c5965adb7234a8ca70fe12c9b54778b63.zip
r2305: a useful test script for trying a wide variety of DCE/RPC options with the echo pipe
and smbtorture (This used to be commit 42bdee690bca2e818901fde412d5fb9631b2303f)
-rw-r--r--source4/script/tests/README4
-rwxr-xr-xsource4/script/tests/test_echo.sh47
2 files changed, 51 insertions, 0 deletions
diff --git a/source4/script/tests/README b/source4/script/tests/README
new file mode 100644
index 0000000000..bf7ff1842b
--- /dev/null
+++ b/source4/script/tests/README
@@ -0,0 +1,4 @@
+This directory contains test scripts that are useful for running a
+bunch of tests all at once. I expect it will eventually be hooked into
+a "make test" framework.
+
diff --git a/source4/script/tests/test_echo.sh b/source4/script/tests/test_echo.sh
new file mode 100755
index 0000000000..c030a0326b
--- /dev/null
+++ b/source4/script/tests/test_echo.sh
@@ -0,0 +1,47 @@
+#!/bin/sh
+
+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 ncacn_np ncacn_ip_tcp; do
+ for bindoptions in sign seal sign,seal validate padcheck bigendian bigendian,seal; do
+ for ntlmoptions in \
+ "--option=ntlmssp_client:ntlm2=yes" \
+ "--option=ntlmssp_client:ntlm2=no" \
+ "--option=ntlmssp_client:ntlm2=yes --option=ntlmssp_client:128bit=no" \
+ "--option=ntlmssp_client:ntlm2=no --option=ntlmssp_client:128bit=no" \
+ "--option=ntlmssp_client:ntlm2=yes --option=ntlmssp_client:keyexchange=no" \
+ "--option=ntlmssp_client:ntlm2=no --option=ntlmssp_client:keyexchange=no" \
+ ; do
+ echo Testing $transport with $bindoptions and $ntlmoptions
+ testit bin/smbtorture $transport:"$server":$bindoptions $ntlmoptions -U"$username"%"$password" -W $domain RPC-ECHO "$*"
+ done
+ done
+done
+
+# separately test the print option - its v slow
+echo Testing print option
+testit bin/smbtorture ncacn_np:"$server":print -U"$username"%"$password" -W $domain RPC-ECHO "$*"
+
+echo "ALL OK";