6794ea5dcffb3135dda9f9b70de7213b29dddc8a
[scons.git] / test / runtest / simple / combined.py
1
2 #!/usr/bin/env python
3 #
4 # __COPYRIGHT__
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be included
15 # in all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
18 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
19 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 #
25
26 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27
28 """
29 Test a combination of a passing test, failing test, and no-result
30 test with no argument on the command line.
31 """
32
33 import os.path
34
35 import TestRuntest
36
37 test = TestRuntest.TestRuntest()
38
39 python = TestRuntest.python
40 test_fail_py = os.path.join('test', 'fail.py')
41 test_no_result_py = os.path.join('test', 'no_result.py')
42 test_pass_py = os.path.join('test', 'pass.py')
43
44 test.subdir('test')
45
46 test.write_failing_test(['test', 'fail.py'])
47
48 test.write_no_result_test(['test', 'no_result.py'])
49
50 test.write_passing_test(['test', 'pass.py'])
51
52 expect_stdout = """\
53 %(python)s -tt test/fail.py
54 FAILING TEST STDOUT
55 %(python)s -tt test/no_result.py
56 NO RESULT TEST STDOUT
57 %(python)s -tt test/pass.py
58 PASSING TEST STDOUT
59
60 Failed the following test:
61 \ttest/fail.py
62
63 NO RESULT from the following test:
64 \ttest/no_result.py
65 """ % locals()
66
67 expect_stderr = """\
68 FAILING TEST STDERR
69 NO RESULT TEST STDERR
70 PASSING TEST STDERR
71 """
72
73 test.run(arguments='test',
74          status=1,
75          stdout=expect_stdout,
76          stderr=expect_stderr)
77
78 test.pass_test()
79
80 # Local Variables:
81 # tab-width:4
82 # indent-tabs-mode:nil
83 # End:
84 # vim: set expandtab tabstop=4 shiftwidth=4: