Merged revisions 1675-1736 via svnmerge from
[scons.git] / test / option / debug-memoizer.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 calling the --debug=memoizer option.
29 """
30
31 import os
32 import string
33
34 import TestSCons
35
36 test = TestSCons.TestSCons(match = TestSCons.match_re)
37
38 # Find out if we support metaclasses (Python 2.2 and later).
39
40 class M:
41     def __init__(cls, name, bases, cls_dict):
42         cls.has_metaclass = 1
43
44 class A:
45     __metaclass__ = M
46
47 try:
48     has_metaclass = A.has_metaclass
49 except AttributeError:
50     has_metaclass = None
51
52
53
54 test.write('SConstruct', """
55 def cat(target, source, env):
56     open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read())
57 env = Environment(BUILDERS={'Cat':Builder(action=Action(cat))})
58 env.Cat('file.out', 'file.in')
59 """)
60
61 test.write('file.in', "file.in\n")
62
63 # The banner, and a list of representative method names that we expect
64 # to show up in the output.  Of course, this depends on keeping those
65 # names in the implementation, so if we change them, we'll have to
66 # change this test...
67 expect = [
68     "Memoizer (memory cache) hits and misses",
69     "Base.stat()",
70     "Dir.srcdir_list()",
71     "File.exists()",
72     "FS._doLookup()",
73     "Node._children_get()",
74 ]
75
76 expect_no_metaclasses = """
77 scons: warning: memoization is not supported in this version of Python \\(no metaclasses\\)
78 """ + TestSCons.file_expr
79
80
81 if has_metaclass:
82
83     def run_and_check(test, args, desc):
84         test.run(arguments = args)
85         stdout = test.stdout()
86         missing = filter(lambda e, s=stdout: string.find(s, e) == -1, expect)
87         if missing:
88             print "Missing the following strings in the %s output:" % desc
89             print "    " + string.join(missing, "\n    ")
90             print "STDOUT ============"
91             print stdout
92             test.fail_test()
93
94 else:
95
96     def run_and_check(test, args, desc):
97         test.run(arguments = args, stderr = expect_no_metaclasses)
98         stdout = test.stdout()
99         present = filter(lambda e, s=stdout: string.find(s, e) != -1, expect)
100         if present:
101             print "The following unexpected strings are present in the %s output:" % desc
102             print "    " + string.join(present, "\n    ")
103             print "STDOUT ============"
104             print stdout
105             test.fail_test()
106
107
108 for args in ['-h --debug=memoizer', '--debug=memoizer']:
109     run_and_check(test, args, "command line '%s'" % args)
110
111 test.must_match('file.out', "file.in\n")
112
113
114
115 test.unlink("file.out")
116
117
118
119 os.environ['SCONSFLAGS'] = '--debug=memoizer'
120
121 run_and_check(test, '', 'SCONSFLAGS=--debug=memoizer')
122
123 test.must_match('file.out', "file.in\n")
124
125
126
127 test.pass_test()