From 1a8fd711d7e4f97a6749b5d6c4806b11c38f20f4 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 27 Aug 2012 21:02:28 +1000 Subject: selftest: Add test of smbclient --machine-pass against and using both s3 and s4 This uses both smbclient binaries to ensure that both work in both environments. Andrew Bartlett --- source4/utils/tests/test_smbclient.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 source4/utils/tests/test_smbclient.sh (limited to 'source4/utils') diff --git a/source4/utils/tests/test_smbclient.sh b/source4/utils/tests/test_smbclient.sh new file mode 100755 index 0000000000..a91c2db1bd --- /dev/null +++ b/source4/utils/tests/test_smbclient.sh @@ -0,0 +1,34 @@ +#!/bin/sh +# Blackbox tests for smbclient + +SERVER=$1 +SERVER_IP=$2 +USERNAME=$3 +PASSWORD=$4 +DOMAIN=$5 +smbclient=$6 +shift 6 + +failed=0 + +testit() { + name="$1" + shift + cmdline="$*" + echo "test: $name" + $cmdline + status=$? + if [ x$status = x0 ]; then + echo "success: $name" + else + echo "failure: $name" + failed=`expr $failed + 1` + fi + return $status +} + +testit "Test login with --machine-pass without kerberos" $VALGRIND $smbclient -c 'ls' $CONFIGURATION //$SERVER/tmp --machine-pass -k no + +testit "Test login with --machine-pass and kerberos" $VALGRIND $smbclient -c 'ls' $CONFIGURATION //$SERVER/tmp --machine-pass -k yes + +exit $failed -- cgit