s3:utils: Fix Inherit-Only flag being automatically propagated to children
[Samba.git] / selftest / wscript
blobb8faf6dbc84f2d1a2ef42be7ed658220c5ede15c
1 #!/usr/bin/env python
2 # vim: expandtab ft=python
4 # selftest main code.
6 import sys
7 import os
8 from waflib import Options, Utils
10 from samba_utils import (
11 ADD_LD_LIBRARY_PATH,
12 CHECK_MAKEFLAGS,
13 EXPAND_VARIABLES,
14 LOAD_ENVIRONMENT,
15 RUN_COMMAND,
17 from samba_autoconf import CONFIG_GET, CONFIG_SET
18 import types
20 DEFAULT_SELFTEST_PREFIX="./st"
22 def options(opt):
24 opt.add_option('--enable-selftest',
25 help=("enable options necessary for selftest (default=no)"),
26 action="store_true", dest='enable_selftest', default=False)
27 opt.add_option('--with-selftest-prefix',
28 help=("specify location of selftest directory "
29 "(default=%s)" % DEFAULT_SELFTEST_PREFIX),
30 action="store", dest='SELFTEST_PREFIX', default=DEFAULT_SELFTEST_PREFIX)
32 opt.ADD_COMMAND('test', cmd_test)
33 opt.ADD_COMMAND('testonly', cmd_testonly)
35 gr = opt.add_option_group('test options')
37 gr.add_option('--load-list',
38 help=("Load a test id list from a text file"),
39 action="store", dest='LOAD_LIST', default=None)
40 gr.add_option('--list',
41 help=("List available tests"),
42 action="store_true", dest='LIST', default=False)
43 gr.add_option('--tests',
44 help=("wildcard pattern of tests to run"),
45 action="store", dest='TESTS', default='')
46 gr.add_option('--filtered-subunit',
47 help=("output (xfail) filtered subunit"),
48 action="store_true", dest='FILTERED_SUBUNIT', default=False)
49 gr.add_option('--quick',
50 help=("enable only quick tests"),
51 action="store_true", dest='QUICKTEST', default=False)
52 gr.add_option('--slow',
53 help=("enable the really slow tests"),
54 action="store_true", dest='SLOWTEST', default=False)
55 gr.add_option('--nb-slowest',
56 help=("Show the n slowest tests (default=10)"),
57 type=int, default=10, dest='NB_SLOWEST')
58 gr.add_option('--testenv',
59 help=("start a terminal with the test environment setup"),
60 action="store_true", dest='TESTENV', default=False)
61 gr.add_option('--valgrind',
62 help=("use valgrind on client programs in the tests"),
63 action="store_true", dest='VALGRIND', default=False)
64 gr.add_option('--valgrind-log',
65 help=("where to put the valgrind log"),
66 action="store", dest='VALGRINDLOG', default=None)
67 gr.add_option('--valgrind-server',
68 help=("use valgrind on the server in the tests (opens an xterm)"),
69 action="store_true", dest='VALGRIND_SERVER', default=False)
70 gr.add_option('--screen',
71 help=("run the samba servers in screen sessions"),
72 action="store_true", dest='SCREEN', default=False)
73 gr.add_option('--gdbtest',
74 help=("run the servers within a gdb window"),
75 action="store_true", dest='GDBTEST', default=False)
76 gr.add_option('--fail-immediately',
77 help=("stop tests on first failure"),
78 action="store_true", dest='FAIL_IMMEDIATELY', default=False)
79 gr.add_option('--socket-wrapper-pcap',
80 help=("create a pcap file for each failing test"),
81 action="store_true", dest='SOCKET_WRAPPER_PCAP', default=False)
82 gr.add_option('--socket-wrapper-keep-pcap',
83 help=("create a pcap file for all individual test"),
84 action="store_true", dest='SOCKET_WRAPPER_KEEP_PCAP', default=False)
85 gr.add_option('--random-order', dest='RANDOM_ORDER', default=False,
86 action="store_true", help="Run testsuites in random order")
87 gr.add_option('--perf-test', dest='PERF_TEST', default=False,
88 action="store_true", help="run performance tests only")
89 gr.add_option('--test-list', dest='TEST_LIST', default='',
90 help=("use tests listed here, not defaults "
91 "(--test-list='FOO|' will execute FOO; "
92 "--test-list='FOO' will read it)"))
93 gr.add_option('--no-subunit-filter',
94 help=("no (xfail) subunit filtering"),
95 action="store_true", dest='NO_SUBUNIT_FILTER', default=False)
98 def configure(conf):
99 conf.env.SELFTEST_PREFIX = Options.options.SELFTEST_PREFIX
100 if Options.options.enable_selftest or Options.options.developer:
101 conf.DEFINE('ENABLE_SELFTEST', 1)
104 def cmd_testonly(opt):
105 '''run tests without doing a build first'''
106 env = LOAD_ENVIRONMENT()
107 opt.env = env
109 if Options.options.SELFTEST_PREFIX != DEFAULT_SELFTEST_PREFIX:
110 env.SELFTEST_PREFIX = Options.options.SELFTEST_PREFIX
112 if (not CONFIG_SET(opt, 'NSS_WRAPPER') or
113 not CONFIG_SET(opt, 'UID_WRAPPER') or
114 not CONFIG_SET(opt, 'SOCKET_WRAPPER')):
115 print("ERROR: You must use --enable-selftest to enable selftest")
116 sys.exit(1)
118 os.environ['SAMBA_SELFTEST'] = '1'
120 env.TESTS = Options.options.TESTS
122 env.SUBUNIT_FORMATTER = os.getenv('SUBUNIT_FORMATTER')
124 # Lots of test scripts need to run with the correct version
125 # of python. With the correct shebang the script should run with the
126 # correct version, the problem is that not all scripts are part
127 # of the installation, some scripts are part of the source code,
128 # and the shebang is not dynamically generated as yet.
129 # It is safer if we are somewhat version neutral at the moment and
130 # ignore the shebang and always run scripts from the test environment
131 # with the python version (determined by PYTHON env variable) If this
132 # env variable isn't set then set it according to the python version
133 # that is running the tests
134 if not os.getenv('PYTHON', None):
135 from sys import executable as exe
136 os.environ['PYTHON'] = os.path.basename(exe)
138 if not env.SUBUNIT_FORMATTER:
139 if Options.options.PERF_TEST:
140 env.SUBUNIT_FORMATTER = '${PYTHON} -u ${srcdir}/selftest/format-subunit-json --prefix=${SELFTEST_PREFIX}'
141 else:
142 env.SUBUNIT_FORMATTER = '${PYTHON} -u ${srcdir}/selftest/format-subunit --prefix=${SELFTEST_PREFIX} --immediate'
143 env.FILTER_XFAIL = ('${PYTHON} -u ${srcdir}/selftest/filter-subunit '
144 '--expected-failures=${srcdir}/selftest/knownfail '
145 '--expected-failures=${srcdir}/selftest/knownfail.d '
146 '--expected-failures=${srcdir}/selftest/expectedfail.d '
147 '--flapping=${srcdir}/selftest/flapping '
148 '--flapping=${srcdir}/selftest/flapping.d')
150 if Options.options.FAIL_IMMEDIATELY:
151 env.FILTER_XFAIL += ' --fail-immediately'
153 env.FORMAT_TEST_OUTPUT = '${SUBUNIT_FORMATTER}'
155 # clean any previous temporary files
156 os.system("rm -rf %s/tmp" % env.SELFTEST_PREFIX);
158 # put all command line options in the environment as TESTENV_*=*
159 for o in dir(Options.options):
160 if o[0:1] != '_':
161 val = getattr(Options.options, o, '')
162 if not issubclass(type(val), types.FunctionType) \
163 and not issubclass(type(val), types.MethodType):
164 os.environ['TESTENV_%s' % o.upper()] = str(getattr(Options.options, o, ''))
166 env.OPTIONS = ''
167 if not Options.options.SLOWTEST:
168 env.OPTIONS += ' --exclude=${srcdir}/selftest/slow'
169 if Options.options.QUICKTEST:
170 env.OPTIONS += ' --quick --include=${srcdir}/selftest/quick'
171 if Options.options.LOAD_LIST:
172 env.OPTIONS += ' --load-list=%s' % Options.options.LOAD_LIST
173 if Options.options.TESTENV:
174 env.OPTIONS += ' --testenv'
175 if Options.options.SOCKET_WRAPPER_PCAP:
176 env.OPTIONS += ' --socket-wrapper-pcap'
177 if Options.options.SOCKET_WRAPPER_KEEP_PCAP:
178 env.OPTIONS += ' --socket-wrapper-keep-pcap'
179 if Options.options.RANDOM_ORDER:
180 env.OPTIONS += ' --random-order'
181 if Options.options.PERF_TEST:
182 env.FILTER_OPTIONS = ('${PYTHON} -u ${srcdir}/selftest/filter-subunit '
183 '--perf-test-output')
184 else:
185 env.FILTER_OPTIONS = '${FILTER_XFAIL}'
187 if Options.options.VALGRIND:
188 os.environ['VALGRIND'] = 'valgrind -q --num-callers=30'
189 if Options.options.VALGRINDLOG is not None:
190 os.environ['VALGRIND'] += ' --log-file=%s' % Options.options.VALGRINDLOG
192 server_wrapper=''
194 if Options.options.VALGRIND_SERVER:
195 server_wrapper = '${srcdir}/selftest/valgrind_run _DUMMY=X'
196 elif Options.options.GDBTEST:
197 server_wrapper = '${srcdir}/selftest/gdb_run _DUMMY=X'
199 if Options.options.SCREEN:
200 server_wrapper = '${srcdir}/selftest/in_screen %s' % server_wrapper
201 os.environ['TERMINAL'] = EXPAND_VARIABLES(opt, '${srcdir}/selftest/in_screen')
202 elif server_wrapper != '':
203 server_wrapper = 'xterm -n server -l -e %s' % server_wrapper
205 if server_wrapper != '':
206 os.environ['SAMBA_VALGRIND'] = EXPAND_VARIABLES(opt, server_wrapper)
207 os.environ['NMBD_VALGRIND'] = EXPAND_VARIABLES(opt, server_wrapper)
208 os.environ['WINBINDD_VALGRIND'] = EXPAND_VARIABLES(opt, server_wrapper)
209 os.environ['SMBD_VALGRIND'] = EXPAND_VARIABLES(opt, server_wrapper)
210 os.environ['SAMBA_DCERPCD_VALGRIND'] = EXPAND_VARIABLES(opt, server_wrapper)
212 # this is needed for systems without rpath, or with rpath disabled
213 ADD_LD_LIBRARY_PATH('bin/shared')
214 ADD_LD_LIBRARY_PATH('bin/shared/private')
216 # if we are using a system version of ldb then we need to tell it to
217 # load modules from our modules path
218 if env.USING_SYSTEM_LDB:
219 os.environ['LDB_MODULES_PATH'] = os.path.abspath(
220 os.path.join(*(env.cwd + ['bin/modules/ldb'])))
222 # tell build system where to find config.h
223 os.environ['CONFIG_H'] = 'bin/default/include/config.h'
225 # tell the test system where perl is
226 if isinstance(env.PERL, list):
227 perl = ' '.join(env.PERL)
228 else:
229 perl = env.PERL
230 os.environ['PERL'] = perl
232 st_done = os.path.join(env.SELFTEST_PREFIX, 'st_done')
233 if os.path.exists(st_done):
234 os.unlink(st_done)
236 if not os.path.isdir(env.SELFTEST_PREFIX):
237 os.makedirs(env.SELFTEST_PREFIX, int('755', 8))
239 if Options.options.TEST_LIST:
240 env.TESTLISTS = '--testlist=%r' % Options.options.TEST_LIST
241 elif Options.options.PERF_TEST:
242 env.TESTLISTS = '--testlist="${PYTHON} ${srcdir}/selftest/perf_tests.py|" '
243 else:
244 env.TESTLISTS = ('--testlist="${PYTHON} ${srcdir}/selftest/tests.py|" ' +
245 '--testlist="${PYTHON} ${srcdir}/source3/selftest/tests.py|" ' +
246 '--testlist="${PYTHON} ${srcdir}/source4/selftest/tests.py|"')
248 if CONFIG_SET(opt, 'AD_DC_BUILD_IS_ENABLED'):
249 env.SELFTEST_TARGET = "samba"
250 else:
251 env.SELFTEST_TARGET = "samba3"
253 env.OPTIONS += " --nss_wrapper_so_path=" + CONFIG_GET(opt, 'LIBNSS_WRAPPER_SO_PATH')
254 env.OPTIONS += " --resolv_wrapper_so_path=" + CONFIG_GET(opt, 'LIBRESOLV_WRAPPER_SO_PATH')
255 env.OPTIONS += " --uid_wrapper_so_path=" + CONFIG_GET(opt, 'LIBUID_WRAPPER_SO_PATH')
257 # selftest can optionally use kernel namespaces instead of socket-wrapper
258 if os.environ.get('USE_NAMESPACES') is None:
259 env.OPTIONS += " --socket_wrapper_so_path=" + CONFIG_GET(opt, 'LIBSOCKET_WRAPPER_SO_PATH')
261 if not CONFIG_SET(opt, 'HAVE_RESOLV_CONF_SUPPORT'):
262 env.OPTIONS += " --use-dns-faking"
264 if CONFIG_GET(opt, 'USING_SYSTEM_KRB5'):
265 env.OPTIONS += " --mitkrb5"
267 if CONFIG_GET(opt, 'USING_SYSTEM_KRB5') and CONFIG_GET(opt, 'MIT_KDC_PATH'):
268 env.OPTIONS += " --exclude=${srcdir}/selftest/skip_mit_kdc"
269 env.FILTER_XFAIL += " --expected-failures=${srcdir}/selftest/"\
270 "knownfail_mit_kdc"
272 env.FILTER_XFAIL += ' --expected-failures=${srcdir}/selftest/knownfail_mit_kdc_1_20'
273 else:
274 env.FILTER_XFAIL += " --expected-failures=${srcdir}/selftest/"\
275 "knownfail_heimdal_kdc"
277 if CONFIG_SET(opt, 'USING_EMBEDDED_HEIMDAL'):
278 env.FILTER_XFAIL += " --expected-failures=${srcdir}/selftest/"\
279 "expectedfail_heimdal"
281 if CONFIG_GET(opt, 'SIZEOF_VOID_P') == 4:
282 env.FILTER_XFAIL += " --expected-failures=${srcdir}/selftest/knownfail-32bit"
283 env.OPTIONS += " --default-ldb-backend=tdb --exclude=${srcdir}/selftest/skip-32bit"
285 if not CONFIG_GET(opt, 'HAVE_GSS_KRB5_CRED_NO_CI_FLAGS_X'):
286 # older MIT krb5 libraries (< 1.14) don't have
287 # GSS_KRB5_CRED_NO_CI_FLAGS_X
288 env.OPTIONS += " --exclude=${srcdir}/selftest/skip.no-GSS_KRB5_CRED_NO_CI_FLAGS_X"
290 if os.environ.get('DISABLE_OPATH'):
291 env.OPTIONS += " --exclude=${srcdir}/selftest/skip.opath-required"
293 libasan = None
294 if env.ADDRESS_SANITIZER:
295 # We try to find the correct libasan automatically
296 libasan = Utils.cmd_output(
297 r'ldd bin/texpect | grep libasan| cut -f 3 -d \ ',
298 silent=True).strip()
299 libasan = libasan.decode('utf8')
301 # Have the selftest.pl LD_PRELOAD libasan in the right spot
302 env.OPTIONS += " --asan_so_path=" + libasan
304 if CONFIG_SET(opt, 'HAVE_CRYPT_R'):
305 # We try to find the correct libcrypt automatically
306 libcrypt = Utils.cmd_output(
307 'ldd bin/modules/ldb/password_hash.so | awk \'/libcrypt.so/ { print $3 }\'',
308 silent=True).strip()
309 libcrypt = libcrypt.decode('utf8')
310 env.OPTIONS += " --crypt_so_path=" + libcrypt
312 subunit_cache = None
313 # We use the full path rather than relative path to avoid problems on some platforms (ie. solaris 8).
314 env.CORE_COMMAND = '${PERL} ${srcdir}/selftest/selftest.pl --target=${SELFTEST_TARGET} --prefix=${SELFTEST_PREFIX} --srcdir=${srcdir} --exclude=${srcdir}/selftest/skip ${TESTLISTS} ${OPTIONS} ${TESTS}'
316 # If using namespaces (rather than socket-wrapper), run the selftest script
317 # in its own network namespace (by doing an 'unshare'). (To create a new
318 # namespace as a non-root user, we have to also unshare the current user
319 # namespace, and remap ourself as root in the namespace created)
320 if os.environ.get('USE_NAMESPACES') is not None:
321 env.CORE_COMMAND = 'unshare --net --user --map-root-user ' + env.CORE_COMMAND
323 if env.ADDRESS_SANITIZER and libasan:
324 # For now we cannot run with leak and odr detection
325 asan_options = "ASAN_OPTIONS=detect_leaks=0"
326 asan_options += ":detect_odr_violation=0"
327 # uncomment if you need asan logs
328 # asan_options += ":verbosity=111"
329 asan_options += ":suppressions=${srcdir}/selftest/sanitizer/asan.supp"
330 asan_options += " "
332 # And we need to disable RTLD_DEEPBIND in ldb and socket wrapper
333 no_leak_check = "LDB_MODULES_DISABLE_DEEPBIND=1 "
334 no_leak_check += "SOCKET_WRAPPER_DISABLE_DEEP_BIND=1"
335 no_leak_check += " "
336 env.CORE_COMMAND = asan_options + no_leak_check + env.CORE_COMMAND
338 # We need to have the subunit filter and formatter preload
339 # libasan otherwise the tests fail at startup.
341 # Also, we do not care about leaks in python
343 asan_envs = (asan_options + no_leak_check + "LD_PRELOAD=" + libasan
344 + ' ')
345 env.FILTER_OPTIONS = asan_envs + env.FILTER_OPTIONS
346 env.SUBUNIT_FORMATTER = asan_envs + env.SUBUNIT_FORMATTER
348 if env.UNDEFINED_SANITIZER:
349 # print a stack trace with the error.
350 print_stack_trace = "UBSAN_OPTIONS=print_stacktrace=1"
351 print_stack_trace += ",suppressions=${srcdir}/selftest/ubsan.supp"
352 env.CORE_COMMAND = print_stack_trace + " " + env.CORE_COMMAND
354 if Options.options.LIST:
355 cmd = '${CORE_COMMAND} --list'
356 else:
357 env.OPTIONS += ' --socket-wrapper'
358 cmd = '(${CORE_COMMAND} && touch ${SELFTEST_PREFIX}/st_done) | ${FILTER_OPTIONS}'
360 if Options.options.NO_SUBUNIT_FILTER:
361 # Skip subunit filtering (i.e. because python is disabled).
362 # Use --one to bail out upon any failure
363 cmd = '(${CORE_COMMAND} --one && touch ${SELFTEST_PREFIX}/st_done)'
364 elif not Options.options.FILTERED_SUBUNIT:
365 subunit_cache = os.path.join(env.SELFTEST_PREFIX, "subunit")
366 cmd += ' | tee %s | ${FORMAT_TEST_OUTPUT}' % subunit_cache
367 else:
368 cmd += ' | ${FILTER_OPTIONS}'
370 runcmd = EXPAND_VARIABLES(opt, cmd)
372 print("test: running %s" % runcmd)
373 ret = RUN_COMMAND(cmd, env=env)
375 if (os.path.exists(".testrepository") and
376 not Options.options.LIST and
377 not Options.options.LOAD_LIST and
378 subunit_cache is not None):
379 testrcmd = 'testr load -q < %s > /dev/null' % subunit_cache
380 runcmd = EXPAND_VARIABLES(opt, testrcmd)
381 RUN_COMMAND(runcmd, env=env)
383 if subunit_cache is not None:
384 nb = Options.options.NB_SLOWEST
385 cmd = "./script/show_testsuite_time %s %d" % (subunit_cache, nb)
386 runcmd = EXPAND_VARIABLES(opt, cmd)
387 RUN_COMMAND(runcmd, env=env)
389 if ret != 0:
390 print("ERROR: test failed with exit code %d" % ret)
391 sys.exit(ret)
393 if not Options.options.LIST and not os.path.exists(st_done):
394 print("ERROR: test command failed to complete")
395 sys.exit(1)
398 ########################################################################
399 # main test entry point
400 def cmd_test(opt):
401 '''Run the test suite (see test options below)'''
403 # if running all tests, then force a symbol check
404 env = LOAD_ENVIRONMENT()
405 CHECK_MAKEFLAGS(env)
406 Options.commands.append('build')
407 Options.commands.append('testonly')