Merged revisions 2302-2362,2364-2452 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     "Node._children_get()",
73 ]
74
75 expect_no_metaclasses = """
76 scons: warning: memoization is not supported in this version of Python \\(no metaclasses\\)
77 """ + TestSCons.file_expr
78
79
80 if has_metaclass:
81
82     def run_and_check(test, args, desc):
83         test.run(arguments = args)
84         stdout = test.stdout()
85         missing = filter(lambda e, s=stdout: string.find(s, e) == -1, expect)
86         if missing:
87             print "Missing the following strings in the %s output:" % desc
88             print "    " + string.join(missing, "\n    ")
89             print "STDOUT ============"
90             print stdout
91             test.fail_test()
92
93 else:
94
95     def run_and_check(test, args, desc):
96         test.run(arguments = args, stderr = expect_no_metaclasses)
97         stdout = test.stdout()
98         present = filter(lambda e, s=stdout: string.find(s, e) != -1, expect)
99         if present:
100             print "The following unexpected strings are present in the %s output:" % desc
101             print "    " + string.join(present, "\n    ")
102             print "STDOUT ============"
103             print stdout
104             test.fail_test()
105
106
107 for args in ['-h --debug=memoizer', '--debug=memoizer']:
108     run_and_check(test, args, "command line '%s'" % args)
109
110 test.must_match('file.out', "file.in\n")
111
112
113
114 test.unlink("file.out")
115
116
117
118 os.environ['SCONSFLAGS'] = '--debug=memoizer'
119
120 run_and_check(test, '', 'SCONSFLAGS=--debug=memoizer')
121
122 test.must_match('file.out', "file.in\n")
123
124
125
126 test.pass_test()