s4-waf: show the fully expanded test command
[samba.git] / source4 / selftest / wscript
1 #!/usr/bin/env python
2
3 # selftest main code.
4
5 import Scripting, os, Options, Utils, Environment, optparse, sys
6 from samba_utils import *
7
8 def set_options(opt):
9     opt.ADD_COMMAND('test', cmd_test)
10     opt.ADD_COMMAND('testonly', cmd_testonly)
11
12     gr = opt.add_option_group('test options')
13
14     gr.add_option('--with-selftest-prefix',
15                   help=("specify location of selftest directory"),
16                   action="store", dest='SELFTEST_PREFIX', default='./st')
17     gr.add_option('--tests',
18                   help=("wildcard pattern of tests to run"),
19                   action="store", dest='TESTS', default='')
20     gr.add_option('--quick',
21                   help=("enable only quick tests"),
22                   action="store_true", dest='QUICKTEST', default=False)
23     gr.add_option('--slow',
24                   help=("enable the really slow tests"),
25                   action="store_true", dest='SLOWTEST', default=False)
26     gr.add_option('--testenv',
27                   help=("start a terminal with the test environment setup"),
28                   action="store_true", dest='TESTENV', default=False)
29     gr.add_option('--valgrind',
30                   help=("use valgrind on client programs in the tests"),
31                   action="store_true", dest='VALGRIND', default=False)
32     gr.add_option('--valgrind-log',
33                   help=("where to put the valgrind log"),
34                   action="store", dest='VALGRINDLOG', default=None)
35     gr.add_option('--valgrind-server',
36                   help=("use valgrind on the server in the tests (opens an xterm)"),
37                   action="store_true", dest='VALGRIND_SERVER', default=False)
38
39
40 def cmd_testonly(opt):
41     '''run tests without doing a build first'''
42     env = LOAD_ENVIRONMENT()
43     opt.env = env
44
45     env.TESTS  = Options.options.TESTS
46
47     env.SUBUNIT_FORMATTER = '${PERL} ../selftest/format-subunit --prefix=${SELFTEST_PREFIX} --immediate'
48     env.FILTER_XFAIL = '${PERL} ../selftest/filter-subunit.pl --expected-failures=./selftest/knownfail'
49     env.FORMAT_TEST_OUTPUT = '${SUBUNIT_FORMATTER}'
50
51     env.OPTIONS = ''
52     if not Options.options.SLOWTEST:
53         env.OPTIONS += ' --exclude=./selftest/slow'
54     if Options.options.QUICKTEST:
55         env.OPTIONS += ' --quick --include=./selftest/quick'
56
57     if Options.options.TESTENV:
58         env.OPTIONS += ' --testenv'
59
60     if os.environ.get('RUN_FROM_BUILD_FARM') is not None:
61         env.FILTER_OPTIONS = '${FILTER_XFAIL} --strip-passed-output'
62     else:
63         env.FILTER_OPTIONS = '${FILTER_XFAIL} | ${FORMAT_TEST_OUTPUT}'
64
65     if Options.options.VALGRIND:
66         os.environ['VALGRIND'] = 'valgrind -q --num-callers=30'
67         if Options.options.VALGRINDLOG is not None:
68             os.environ['VALGRIND'] += ' --log-file=%s' % Options.options.VALGRINDLOG
69
70     if Options.options.VALGRIND_SERVER:
71         os.environ['SAMBA_VALGRIND'] = 'xterm -n server -e ../selftest/valgrind_run A=B '
72
73     env.SELFTEST_PREFIX = Options.options.SELFTEST_PREFIX
74
75     # this is needed for systems without rpath, or with rpath disabled
76     ADD_LD_LIBRARY_PATH('bin/shared')
77
78     # tell build system where to find config.h
79     os.environ['CONFIG_H'] = 'bin/default/source4/include/config.h'
80
81     st_done = os.path.join(env.SELFTEST_PREFIX, 'st_done')
82     if os.path.exists(st_done):
83         os.unlink(st_done)
84
85     cmd = '(${PERL} ../selftest/selftest.pl --prefix=${SELFTEST_PREFIX} --builddir=. --srcdir=. --exclude=./selftest/skip --testlist="./selftest/tests.sh|" ${OPTIONS} --socket-wrapper ${TESTS} && touch ${SELFTEST_PREFIX}/st_done) | ${FILTER_OPTIONS}'
86     cmd = EXPAND_VARIABLES(opt, cmd)
87
88     print "test: running %s" % cmd
89     ret = RUN_COMMAND(cmd, env=env)
90     if ret != 0:
91         print("ERROR: test failed with exit code %d" % ret)
92         sys.exit(ret)
93
94     if not os.path.exists(st_done):
95         print("ERROR: test command failed to complete")
96         sys.exit(1)
97
98
99 ########################################################################
100 # main test entry point
101 def cmd_test(opt):
102     '''Run the test suite (see test options below)'''
103     Scripting.commands.append('build')
104     Scripting.commands.append('testonly')