From: Kai Blin Date: Fri, 2 May 2008 23:50:20 +0000 (+0200) Subject: tests: Add a net_misc test. X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=4cbb87adad09a0e9cfdd82d6aa794c5af91bb654;p=metze%2Fsamba%2Fwip.git tests: Add a net_misc test. (This used to be commit 026d701aff2c035359894786ec22b4ed829cfb31) --- diff --git a/source3/script/tests/test_net_misc.sh b/source3/script/tests/test_net_misc.sh new file mode 100755 index 000000000000..3ceb08788517 --- /dev/null +++ b/source3/script/tests/test_net_misc.sh @@ -0,0 +1,50 @@ +#!/bin/sh + +# various tests for the "net" command + +NET="$VALGRIND ${NET:-$BINDIR/net} $CONFIGURATION" + +NETTIME="${NET} time" +NETLOOKUP="${NET} lookup" + +incdir=`dirname $0` +. $incdir/test_functions.sh + +failed=0 + +test_time() +{ + PARAM="$1" + + ${NETTIME} ${PARAM} -S localhost2 +} + +test_lookup() +{ + PARAM="$1" + + ${NETLOOKUP} ${PARAM} +} + +testit "get the time" \ + test_time || \ + failed=`expr $failed + 1` + +testit "get the system time" \ + test_time system || \ + failed=`expr $failed + 1` + +testit "get the tize zone" \ + test_time zone || \ + failed=`expr $failed + 1` + +testit "lookup the PDC" \ + test_lookup pdc || \ + failed=`expr $failed + 1` + +testit "lookup the master browser" \ + test_lookup master || \ + failed=`expr $failed + 1` + +testok $0 $failed + diff --git a/source3/script/tests/test_net_s3.sh b/source3/script/tests/test_net_s3.sh new file mode 100755 index 000000000000..24732580fae9 --- /dev/null +++ b/source3/script/tests/test_net_s3.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +# tests for the "net" command + +incdir=`dirname $0` +. $incdir/test_functions.sh + +failed=0 + +net_misc() { + echo "Running misc tests" + $SCRIPTDIR/test_net_misc.sh \ + || failed=`expr $failed + $?` +} + +net_registry() { + echo "Running registry tests" + $SCRIPTDIR/test_net_registry.sh \ + || failed=`expr $failed + $?` +} + +net_misc +net_registry + +testok $0 $failed + diff --git a/source3/script/tests/tests_all.sh b/source3/script/tests/tests_all.sh index 6e5334da315a..cb545674e372 100755 --- a/source3/script/tests/tests_all.sh +++ b/source3/script/tests/tests_all.sh @@ -42,9 +42,9 @@ ntlm_auth_s3() { || failed=`expr $failed + $?` } -net_registry() { - echo "RUNNING SUBTESTS net_registry" - $SCRIPTDIR/test_net_registry.sh \ +net_s3() { + echo "RUNNING SUBTESTS net_s3" + $SCRIPTDIR/test_net_s3.sh \ || failed=`expr $failed + $?` } @@ -72,7 +72,7 @@ if test "x$TESTS" = "x" ; then smbclient_s3_encrypted wbinfo_s3 ntlm_auth_s3 - net_registry + net_s3 posix_s3 else for THIS_TEST in $TESTS; do