Win32 portability in runtest.py tests after disabling QMTest by default.
[scons.git] / test / runtest / xml / output.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 """
28 Test writing XML output to a file.
29 """
30
31 import os
32 import re
33 import string
34
35 import TestCmd
36 import TestRuntest
37
38 test = TestRuntest.TestRuntest(match = TestCmd.match_re)
39
40 pythonstring = re.escape(TestRuntest.pythonstring)
41 test_fail_py = re.escape(os.path.join('test', 'fail.py'))
42 test_no_result_py = re.escape(os.path.join('test', 'no_result.py'))
43 test_pass_py = re.escape(os.path.join('test', 'pass.py'))
44
45 test.subdir('test')
46
47 test.write_fake_scons_source_tree()
48
49 test.write_failing_test(['test', 'fail.py'])
50
51 test.write_no_result_test(['test', 'no_result.py'])
52
53 test.write_passing_test(['test', 'pass.py'])
54
55 test.run(arguments = '-o xml.out --xml test', status=1)
56
57 expect = """\
58   <results>
59     <test>
60       <file_name>%(test_fail_py)s</file_name>
61       <command_line>%(pythonstring)s -tt %(test_fail_py)s</command_line>
62       <exit_status>1</exit_status>
63       <stdout>FAILING TEST STDOUT
64 </stdout>
65       <stderr>FAILING TEST STDERR
66 </stderr>
67       <time>\\d+\.\d</time>
68     </test>
69     <test>
70       <file_name>%(test_no_result_py)s</file_name>
71       <command_line>%(pythonstring)s -tt %(test_no_result_py)s</command_line>
72       <exit_status>2</exit_status>
73       <stdout>NO RESULT TEST STDOUT
74 </stdout>
75       <stderr>NO RESULT TEST STDERR
76 </stderr>
77       <time>\\d+\.\d</time>
78     </test>
79     <test>
80       <file_name>%(test_pass_py)s</file_name>
81       <command_line>%(pythonstring)s -tt %(test_pass_py)s</command_line>
82       <exit_status>0</exit_status>
83       <stdout>PASSING TEST STDOUT
84 </stdout>
85       <stderr>PASSING TEST STDERR
86 </stderr>
87       <time>\\d+\.\d</time>
88     </test>
89   <time>\\d+\.\d</time>
90   </results>
91 """ % locals()
92
93 test.must_match('xml.out', expect)
94
95 test.pass_test()
96
97 # Local Variables:
98 # tab-width:4
99 # indent-tabs-mode:nil
100 # End:
101 # vim: set expandtab tabstop=4 shiftwidth=4: