From 97e7c3b8bd84edd69f6344249b24ae64e2a8b0fe Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 16 Aug 2012 08:55:43 +1000 Subject: s3-selftest: convert xattr-tdb-1 vfstest driver into a subunit test We don't use the simple smb.conf because we need to override all the paths for this to work as non-root without a panic, so we use the s3dc environment, which already loads this module. Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Thu Aug 16 02:55:19 CEST 2012 on sn-devel-104 --- source3/script/tests/xattr-tdb-1/run.sh | 55 ++++++++++++++++++++++++++++--- source3/script/tests/xattr-tdb-1/smb.conf | 5 --- source3/selftest/tests.py | 2 ++ 3 files changed, 52 insertions(+), 10 deletions(-) delete mode 100644 source3/script/tests/xattr-tdb-1/smb.conf diff --git a/source3/script/tests/xattr-tdb-1/run.sh b/source3/script/tests/xattr-tdb-1/run.sh index 2a1b6afd63..ea7a4cbb28 100755 --- a/source3/script/tests/xattr-tdb-1/run.sh +++ b/source3/script/tests/xattr-tdb-1/run.sh @@ -1,7 +1,52 @@ #!/bin/sh -if ../../../bin/vfstest -s smb.conf -f vfstest.cmd | - grep "NT_STATUS_ACCESS_DENIED" > /dev/null 2>&1 -then - exit 1 +if [ $# -lt 2 ]; then +cat </dev/null 2>&1 + + if [ $? = 0 ] ; then + # got ACCESS_DENIED .. fail + echo vfstest got NT_STATUS_ACCESS_DENIED + false + else + true + fi +} + +testit "vfstest" test_vfstest || failed=`expr $failed + 1` + +exit $failed diff --git a/source3/script/tests/xattr-tdb-1/smb.conf b/source3/script/tests/xattr-tdb-1/smb.conf deleted file mode 100644 index 259b630c5e..0000000000 --- a/source3/script/tests/xattr-tdb-1/smb.conf +++ /dev/null @@ -1,5 +0,0 @@ -[tmp] -# "path" is ignored by vfstest, it's always set to $(pwd) -path = /tmp -writable = yes -vfs objects = xattr_tdb diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index d892b16042..84e8d1e93d 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -157,6 +157,8 @@ tests=["--ping", "--separator", plantestsuite("samba.vfstest.stream_depot", "s3dc:local", [os.path.join(samba3srcdir, "script/tests/stream-depot/run.sh"), binpath("vfstest"), "$PREFIX", configuration]) +plantestsuite("samba.vfstest.xattr-tdb-1", "s3dc:local", [os.path.join(samba3srcdir, "script/tests/xattr-tdb-1/run.sh"), binpath("vfstest"), "$PREFIX", configuration]) + for options in ["--option=clientusespnego=no", " --option=clientntlmv2auth=no --option=clientlanmanauth=yes --max-protocol=LANMAN2", ""]: env = "s3dc" plantestsuite("samba3.blackbox.smbclient_auth.plain (%s) %s" % (env, options), env, [os.path.join(samba3srcdir, "script/tests/test_smbclient_auth.sh"), '$SERVER', '$SERVER_IP', '$DC_USERNAME', '$DC_PASSWORD', smbclient, configuration, options]) -- cgit