2012-09-27 20:41:32 +04:00
#!/usr/bin/python
# This script generates a list of testsuites that should be run as part of
2012-10-05 13:39:34 +04:00
# the Samba test suite.
2012-09-27 20:41:32 +04:00
# The output of this script is parsed by selftest.pl, which then decides
# which of the tests to actually run. It will, for example, skip all tests
# listed in selftest/skip or only run a subset during "make quicktest".
2012-10-05 13:39:34 +04:00
# The idea is that this script outputs all of the tests of Samba, not
2012-09-27 20:41:32 +04:00
# just those that are known to pass, and list those that should be skipped
# or are known to fail in selftest/skip or selftest/knownfail. This makes it
2012-10-05 13:39:34 +04:00
# very easy to see what functionality is still missing in Samba and makes
# it possible to run the testsuite against other servers, such as
2012-09-27 20:41:32 +04:00
# Windows that have a different set of features.
# The syntax for a testsuite is "-- TEST --" on a single line, followed
# by the name of the test, the environment it needs and the command to run, all
# three separated by newlines. All other lines in the output are considered
# comments.
2018-10-11 06:05:23 +03:00
import os
from selftesthelpers import bindir , srcdir , python
from selftesthelpers import planpythontestsuite , samba4srcdir
from selftesthelpers import plantestsuite , bbdir
from selftesthelpers import configuration , valgrindify
from selftesthelpers import skiptestsuite
2012-09-27 20:41:32 +04:00
2013-05-06 02:37:58 +04:00
try :
config_h = os . environ [ " CONFIG_H " ]
except KeyError :
2016-07-29 01:57:52 +03:00
samba4bindir = bindir ( )
2013-05-06 02:37:58 +04:00
config_h = os . path . join ( samba4bindir , " default/include/config.h " )
2016-12-15 12:33:59 +03:00
# check available features
config_hash = dict ( )
2013-05-06 02:37:58 +04:00
f = open ( config_h , ' r ' )
try :
2016-12-15 12:33:59 +03:00
lines = f . readlines ( )
config_hash = dict ( ( x [ 0 ] , ' ' . join ( x [ 1 : ] ) )
2018-07-30 09:16:12 +03:00
for x in map ( lambda line : line . strip ( ) . split ( ' ' ) [ 1 : ] ,
2018-11-28 17:15:23 +03:00
list ( filter ( lambda line : ( line [ 0 : 7 ] == ' #define ' ) and ( len ( line . split ( ' ' ) ) > 2 ) , lines ) ) ) )
2013-05-06 02:37:58 +04:00
finally :
f . close ( )
2016-12-15 12:33:59 +03:00
have_man_pages_support = ( " XSLTPROC_MANPAGES " in config_hash )
2017-04-10 08:50:41 +03:00
with_pam = ( " WITH_PAM " in config_hash )
2018-07-30 09:18:03 +03:00
pam_wrapper_so_path = config_hash [ " LIBPAM_WRAPPER_SO_PATH " ]
2018-05-31 22:16:31 +03:00
pam_set_items_so_path = config_hash [ " PAM_SET_ITEMS_SO_PATH " ]
2016-12-15 12:33:59 +03:00
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.source " )
2013-05-06 02:37:58 +04:00
if have_man_pages_support :
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.docs " )
2013-05-06 02:37:58 +04:00
2014-11-02 01:57:35 +03:00
try :
import testscenarios
except ImportError :
skiptestsuite ( " subunit " , " testscenarios not available " )
else :
planpythontestsuite ( " none " , " subunit.tests.test_suite " )
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.blackbox.ndrdump " )
planpythontestsuite ( " none " , " samba.tests.blackbox.check_output " )
planpythontestsuite ( " none " , " api " , name = " ldb.python " , extra_path = [ ' lib/ldb/tests/python ' ] )
planpythontestsuite ( " none " , " samba.tests.credentials " )
planpythontestsuite ( " none " , " samba.tests.registry " )
planpythontestsuite ( " ad_dc_ntvfs:local " , " samba.tests.auth " )
planpythontestsuite ( " none " , " samba.tests.get_opt " )
planpythontestsuite ( " none " , " samba.tests.security " )
planpythontestsuite ( " none " , " samba.tests.dcerpc.misc " )
2015-07-30 05:29:54 +03:00
planpythontestsuite ( " none " , " samba.tests.dcerpc.integer " )
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.param " )
planpythontestsuite ( " none " , " samba.tests.upgrade " )
planpythontestsuite ( " none " , " samba.tests.core " )
planpythontestsuite ( " none " , " samba.tests.common " )
planpythontestsuite ( " none " , " samba.tests.provision " )
planpythontestsuite ( " none " , " samba.tests.password_quality " )
2012-10-05 13:51:37 +04:00
planpythontestsuite ( " none " , " samba.tests.strings " )
planpythontestsuite ( " none " , " samba.tests.netcmd " )
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.dcerpc.rpc_talloc " )
planpythontestsuite ( " none " , " samba.tests.dcerpc.array " )
planpythontestsuite ( " none " , " samba.tests.dcerpc.string_tests " )
planpythontestsuite ( " none " , " samba.tests.hostconfig " )
planpythontestsuite ( " ad_dc_ntvfs:local " , " samba.tests.messaging " )
planpythontestsuite ( " none " , " samba.tests.s3param " )
planpythontestsuite ( " none " , " samba.tests.s3passdb " )
planpythontestsuite ( " none " , " samba.tests.s3registry " )
planpythontestsuite ( " none " , " samba.tests.s3windb " )
planpythontestsuite ( " none " , " samba.tests.s3idmapdb " )
2012-10-05 13:51:37 +04:00
planpythontestsuite ( " none " , " samba.tests.samba3sam " )
2014-06-02 04:53:01 +04:00
planpythontestsuite (
" none " , " wafsamba.tests.test_suite " ,
extra_path = [ os . path . join ( samba4srcdir , " .. " , " buildtools " ) ,
2018-07-03 14:57:48 +03:00
os . path . join ( samba4srcdir , " .. " , " third_party " , " waf " ) ] )
2019-02-15 12:15:23 +03:00
def cmdline ( script , * args ) :
"""
Prefix PYTHON env var and append - - configurefile option to abs script path .
script . sh arg1 arg2
- - >
PYTHON = python / path / to / bbdir / script . sh arg1 arg2 \
- - configurefile $ SMB_CONF_FILE
"""
return [
" PYTHON= %s " % python ,
os . path . join ( bbdir , script ) ,
] + list ( args ) + [ configuration ]
2015-10-23 05:38:23 +03:00
plantestsuite (
" samba4.blackbox.demote-saveddb " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' demote-saveddb.sh ' , ' $PREFIX_ABS/demote ' ) )
2014-06-02 04:53:01 +04:00
plantestsuite (
" samba4.blackbox.dbcheck.alpha13 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' alpha13 ' ) )
2019-02-15 12:55:51 +03:00
# same test as above but skip member link checks
plantestsuite (
" samba4.blackbox.dbcheck.alpha13.quick " , " none " ,
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' alpha13 ' , ' --quick-membership-checks ' ) )
2014-06-02 04:53:01 +04:00
plantestsuite (
" samba4.blackbox.dbcheck.release-4-0-0 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-0-0 ' ) )
2019-02-15 12:55:51 +03:00
# same test as above but skip member link checks
plantestsuite (
" samba4.blackbox.dbcheck.release-4-0-0.quick " , " none " ,
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-0-0 ' , ' --quick-membership-checks ' ) )
2014-06-02 04:53:01 +04:00
plantestsuite (
" samba4.blackbox.dbcheck.release-4-1-0rc3 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-1-0rc3 ' ) )
2019-02-15 12:55:51 +03:00
# same test as above but skip member link checks
plantestsuite (
" samba4.blackbox.dbcheck.release-4-1-0rc3.quick " , " none " ,
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-1-0rc3 ' , ' --quick-membership-checks ' ) )
2014-06-02 04:53:01 +04:00
plantestsuite (
" samba4.blackbox.dbcheck.release-4-1-6-partial-object " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-1-6-partial-object ' ) )
2019-02-15 12:55:51 +03:00
# same test as above but skip member link checks
plantestsuite (
" samba4.blackbox.dbcheck.release-4-1-6-partial-object.quick " , " none " ,
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-1-6-partial-object ' , ' --quick-membership-checks ' ) )
2016-08-31 02:39:24 +03:00
plantestsuite (
" samba4.blackbox.dbcheck.release-4-5-0-pre1 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-5-0-pre1 ' ) )
2019-02-15 12:55:51 +03:00
# same test as above but skip member link checks
plantestsuite (
" samba4.blackbox.dbcheck.release-4-5-0-pre1.quick " , " none " ,
cmdline ( ' dbcheck-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-5-0-pre1 ' , ' --quick-membership-checks ' ) )
2014-06-02 04:53:01 +04:00
plantestsuite (
" samba4.blackbox.upgradeprovision.alpha13 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' upgradeprovision-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' alpha13 ' ) )
2014-06-02 04:53:01 +04:00
plantestsuite (
" samba4.blackbox.upgradeprovision.release-4-0-0 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' upgradeprovision-oldrelease.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-0-0 ' ) )
2016-08-31 08:07:29 +03:00
plantestsuite (
" samba4.blackbox.tombstones-expunge.release-4-5-0-pre1 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' tombstones-expunge.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-5-0-pre1 ' ) )
2016-11-07 01:39:53 +03:00
plantestsuite (
" samba4.blackbox.dbcheck-links.release-4-5-0-pre1 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' dbcheck-links.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-5-0-pre1 ' ) )
2017-10-31 23:02:01 +03:00
plantestsuite (
" samba4.blackbox.runtime-links.release-4-5-0-pre1 " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' runtime-links.sh ' , ' $PREFIX_ABS/provision ' ,
' release-4-5-0-pre1 ' ) )
2017-10-06 06:30:40 +03:00
plantestsuite (
" samba4.blackbox.schemaupgrade " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' schemaupgrade.sh ' , ' $PREFIX_ABS/provision ' ) )
2017-12-15 05:43:32 +03:00
plantestsuite (
" samba4.blackbox.functionalprep " , " none " ,
2019-02-15 12:15:23 +03:00
cmdline ( ' functionalprep.sh ' , ' $PREFIX_ABS/provision ' ) )
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.upgradeprovision " )
planpythontestsuite ( " none " , " samba.tests.xattr " )
planpythontestsuite ( " none " , " samba.tests.ntacls " )
planpythontestsuite ( " none " , " samba.tests.policy " )
planpythontestsuite ( " none " , " samba.tests.kcc.graph " )
planpythontestsuite ( " none " , " samba.tests.kcc.graph_utils " )
2015-04-30 05:33:30 +03:00
planpythontestsuite ( " none " , " samba.tests.kcc.ldif_import_export " )
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.graph " )
2014-10-13 04:48:10 +04:00
plantestsuite ( " wafsamba.duplicate_symbols " , " none " , [ os . path . join ( srcdir ( ) , " buildtools/wafsamba/test_duplicate_symbol.sh " ) ] )
2019-02-15 07:30:43 +03:00
planpythontestsuite ( " none " , " samba.tests.glue " )
planpythontestsuite ( " none " , " samba.tests.tdb_util " )
planpythontestsuite ( " none " , " samba.tests.samdb_api " )
2016-12-15 12:33:59 +03:00
2017-04-10 08:50:41 +03:00
if with_pam :
2017-06-09 16:45:25 +03:00
plantestsuite ( " samba.tests.pam_winbind(local) " , " ad_member " ,
[ os . path . join ( srcdir ( ) , " python/samba/tests/test_pam_winbind.sh " ) ,
valgrindify ( python ) , pam_wrapper_so_path ,
" $SERVER " , " $USERNAME " , " $PASSWORD " ] )
plantestsuite ( " samba.tests.pam_winbind(domain) " , " ad_member " ,
2017-06-09 15:52:59 +03:00
[ os . path . join ( srcdir ( ) , " python/samba/tests/test_pam_winbind.sh " ) ,
2017-06-09 16:15:15 +03:00
valgrindify ( python ) , pam_wrapper_so_path ,
" $DOMAIN " , " $DC_USERNAME " , " $DC_PASSWORD " ] )
2018-05-31 22:16:31 +03:00
for pam_options in [ " ' ' " , " use_authtok " , " try_authtok " ] :
plantestsuite ( " samba.tests.pam_winbind_chauthtok with options %s " % pam_options , " ad_member " ,
[ os . path . join ( srcdir ( ) , " python/samba/tests/test_pam_winbind_chauthtok.sh " ) ,
valgrindify ( python ) , pam_wrapper_so_path , pam_set_items_so_path ,
" $DOMAIN " , " TestPamOptionsUser " , " oldp@ssword0 " , " newp@ssword0 " ,
pam_options , ' yes ' ,
" $DC_SERVER " , " $DC_USERNAME " , " $DC_PASSWORD " ] )
2017-08-01 17:07:58 +03:00
plantestsuite ( " samba.tests.pam_winbind_warn_pwd_expire(domain) " , " ad_member " ,
[ os . path . join ( srcdir ( ) , " python/samba/tests/test_pam_winbind_warn_pwd_expire.sh " ) ,
valgrindify ( python ) , pam_wrapper_so_path ,
" $DOMAIN " , " alice " , " Secret007 " ] )
2017-04-05 16:59:39 +03:00
2017-06-08 17:08:15 +03:00
2018-02-22 01:54:45 +03:00
plantestsuite ( " samba.unittests.krb5samba " , " none " ,
[ os . path . join ( bindir ( ) , " default/testsuite/unittests/test_krb5samba " ) ] )
plantestsuite ( " samba.unittests.sambafs_srv_pipe " , " none " ,
[ os . path . join ( bindir ( ) , " default/testsuite/unittests/test_sambafs_srv_pipe " ) ] )
plantestsuite ( " samba.unittests.lib_util_modules " , " none " ,
[ os . path . join ( bindir ( ) , " default/testsuite/unittests/test_lib_util_modules " ) ] )
2018-02-19 14:08:26 +03:00
2018-02-22 01:54:45 +03:00
plantestsuite ( " samba.unittests.smb1cli_session " , " none " ,
[ os . path . join ( bindir ( ) , " default/libcli/smb/test_smb1cli_session " ) ] )
2019-03-19 13:18:47 +03:00
plantestsuite ( " samba.unittests.talloc_keep_secret " , " none " ,
[ os . path . join ( bindir ( ) , " default/lib/util/test_talloc_keep_secret " ) ] )
2018-02-22 01:54:45 +03:00
plantestsuite ( " samba.unittests.tldap " , " none " ,
[ os . path . join ( bindir ( ) , " default/source3/test_tldap " ) ] )
2018-02-17 23:53:32 +03:00
plantestsuite ( " samba.unittests.rfc1738 " , " none " ,
[ os . path . join ( bindir ( ) , " default/lib/util/test_rfc1738 " ) ] )
2018-05-01 02:10:24 +03:00
plantestsuite ( " samba.unittests.kerberos " , " none " ,
[ os . path . join ( bindir ( ) , " test_kerberos " ) ] )
2018-02-20 13:08:47 +03:00
plantestsuite ( " samba.unittests.ms_fnmatch " , " none " ,
[ os . path . join ( bindir ( ) , " default/lib/util/test_ms_fnmatch " ) ] )
2018-07-26 23:44:24 +03:00
plantestsuite ( " samba.unittests.ntlm_check " , " none " ,
[ os . path . join ( bindir ( ) , " default/libcli/auth/test_ntlm_check " ) ] )
2019-03-19 02:47:52 +03:00
plantestsuite ( " samba.unittests.test_registry_regfio " , " none " ,
[ os . path . join ( bindir ( ) , " default/source3/test_registry_regfio " ) ] )
2019-03-27 22:17:08 +03:00
plantestsuite ( " samba.unittests.test_oLschema2ldif " , " none " ,
[ os . path . join ( bindir ( ) , " default/source4/utils/oLschema2ldif/test_oLschema2ldif " ) ] )