Capture updated troubleshooting output.
[scons.git] / src / test_aegistests.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 Verify that we have proper Copyright notices on all the right files
29 in our distributions.
30
31 Note that this is a packaging test, not a functional test, so the
32 name of this script doesn't end in *Tests.py.
33 """
34
35 import os
36 import popen2
37 import re
38 import string
39 import sys
40
41 import TestSCons
42
43 test = TestSCons.TestSCons()
44
45 try:
46     popen2.Popen3
47 except AttributeError:
48     def get_stdout(command):
49         (tochild, fromchild, childerr) = os.popen3(command)
50         tochild.close()
51         return fromchild.read()
52 else:
53     def get_stdout(command):
54         p = popen2.Popen3(command, 1)
55         p.tochild.close()
56         return p.fromchild.read()
57
58 output = get_stdout('aegis -list -unformatted pf') +\
59          get_stdout('aegis -list -unformatted cf')
60 lines = string.split(output, '\n')[:-1]
61 sources = filter(lambda x: x[:7] == 'source ', lines)
62
63 re1 = re.compile(r' src/.*Tests\.py')
64 re2 = re.compile(r' src/test_.*\.py')
65 re3 = re.compile(r' test/.*\.py')
66
67 def filename_is_a_test(x):
68     return re1.search(x) or re2.search(x) or re3.search(x)
69
70 test_files = filter(filename_is_a_test, sources)
71
72 if test_files:
73     sys.stderr.write("Found the following files with test names not marked as Aegis tests:\n")
74     sys.stderr.write('\t' + string.join(test_files, '\n\t') + '\n')
75     test.fail_test(1)
76
77 test.pass_test()
78
79 # Local Variables:
80 # tab-width:4
81 # indent-tabs-mode:nil
82 # End:
83 # vim: set expandtab tabstop=4 shiftwidth=4: