ENH: handle MSVS_VERSION additionally to MSVC_VERSION, but raise deprecation warnings...
[scons.git] / src / test_files.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 certain important files in our distribution
29 packages.
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 os.path
37 import re
38 import string
39
40 import TestSCons
41
42 test = TestSCons.TestSCons()
43
44 try:
45     cwd = os.environ['SCONS_CWD']
46 except KeyError:
47     cwd = os.getcwd()
48
49 def build_path(*args):
50     return apply(os.path.join, (cwd, 'build',) + args)
51
52 build_scons_tar_gz  = build_path('unpack-tar-gz', 'scons-'+test.scons_version)
53 build_scons_zip     = build_path('unpack-zip', 'scons-'+test.scons_version)
54 build_local_tar_gz  = build_path('test-local-tar-gz')
55 build_local_zip     = build_path('test-local-zip')
56
57 scons_files = [
58     'CHANGES.txt',
59     'LICENSE.txt',
60     'README.txt',
61     'RELEASE.txt',
62 ]
63
64 local_files = [
65     'scons-LICENSE',
66     'scons-README',
67 ]
68
69 # Map each directory to search (dictionary keys) to a list of its
70 # subsidiary files and directories to exclude from copyright checks.
71 check = {
72     build_scons_tar_gz  : scons_files,
73     build_scons_zip     : scons_files,
74     build_local_tar_gz  : local_files,
75     build_local_zip     : local_files,
76 }
77
78 missing = []
79 no_result = []
80
81 for directory, check_list in check.items():
82     if os.path.exists(directory):
83         for c in check_list:
84             f = os.path.join(directory, c)
85             if not os.path.isfile(f):
86                 missing.append(f)
87     else:
88         no_result.append(directory)
89
90 if missing:
91     print "Missing the following files:\n"
92     print "\t" + string.join(missing, "\n\t")
93     test.fail_test(1)
94
95 if no_result:
96     print "Cannot check files, the following have apparently not been built:"
97     print "\t" + string.join(no_result, "\n\t")
98     test.no_result(1)
99
100 test.pass_test()
101
102 # Local Variables:
103 # tab-width:4
104 # indent-tabs-mode:nil
105 # End:
106 # vim: set expandtab tabstop=4 shiftwidth=4: