s4-waf: use the versions of perl/python found by configure
[kamenim/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
44     env.TESTS  = Options.options.TESTS
45
46     env.SUBUNIT_FORMATTER = '${PERL} ../selftest/format-subunit --prefix=${SELFTEST_PREFIX} --immediate'
47     env.FILTER_XFAIL = '${PERL} ../selftest/filter-subunit.pl --expected-failures=./selftest/knownfail'
48     env.FORMAT_TEST_OUTPUT = '${SUBUNIT_FORMATTER}'
49
50     env.OPTIONS = ''
51     if not Options.options.SLOWTEST:
52         env.OPTIONS += ' --exclude=./selftest/slow'
53     if Options.options.QUICKTEST:
54         env.OPTIONS += ' --quick --include=./selftest/quick'
55
56     if Options.options.TESTENV:
57         env.OPTIONS += ' --testenv'
58
59     if os.environ.get('RUN_FROM_BUILD_FARM') is not None:
60         env.FILTER_OPTIONS = '${FILTER_XFAIL} --strip-passed-output'
61     else:
62         env.FILTER_OPTIONS = '${FILTER_XFAIL} | ${FORMAT_TEST_OUTPUT}'
63
64     if Options.options.VALGRIND:
65         os.environ['VALGRIND'] = 'valgrind -q --num-callers=30'
66         if Options.options.VALGRINDLOG is not None:
67             os.environ['VALGRIND'] += ' --log-file=%s' % Options.options.VALGRINDLOG
68
69     if Options.options.VALGRIND_SERVER:
70         os.environ['SAMBA_VALGRIND'] = 'xterm -n server -e ../selftest/valgrind_run A=B '
71
72     env.SELFTEST_PREFIX = Options.options.SELFTEST_PREFIX
73
74     # this is needed for systems without rpath, or with rpath disabled
75     ADD_LD_LIBRARY_PATH('bin/shared')
76
77     # tell build system where to find config.h
78     os.environ['CONFIG_H'] = 'bin/default/source4/include/config.h'
79
80     st_done = os.path.join(env.SELFTEST_PREFIX, 'st_done')
81     if os.path.exists(st_done):
82         os.unlink(st_done)
83
84     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}'
85
86     print "test: running %s" % cmd
87     ret = RUN_COMMAND(cmd, env=env)
88     if ret != 0:
89         print("ERROR: test failed with exit code %d" % ret)
90         sys.exit(ret)
91
92     if not os.path.exists(st_done):
93         print("ERROR: test command failed to complete")
94         sys.exit(1)
95
96
97 ########################################################################
98 # main test entry point
99 def cmd_test(opt):
100     '''Run the test suite (see test options below)'''
101     Scripting.commands.append('build')
102     Scripting.commands.append('testonly')