Get rid of indentation tabs in the test scripts and have runtest.py invoke them with...
[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()
37
38 test.write('SConstruct', """
39 def cat(target, source, env):
40     open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read())
41 env = Environment(BUILDERS={'Cat':Builder(action=Action(cat))})
42 env.Cat('file.out', 'file.in')
43 """)
44
45 test.write('file.in', "file.in\n")
46
47 # The banner, and a list of representative method names that we expect
48 # to show up in the output.  Of course, this depends on keeping those
49 # names in the implementation, so if we change them, we'll have to
50 # change this test...
51 expect = [
52     "Memoizer (memory cache) hits and misses",
53     "Dir.exists()",
54     "File.exists()",
55     "SConsEnvironment.Detect()",
56 ]
57
58 for args in ['-h --debug=memoizer', '--debug=memoizer']:
59     test.run(arguments = args)
60     stdout = test.stdout()
61     missing = filter(lambda e, s=stdout: string.find(s, e) == -1, expect)
62     if missing:
63         print "Missing the following strings in the command line '%s' output:" % args
64         print "    " + string.join(missing, "\n    ")
65         print "STDOUT ============"
66         print stdout
67         test.fail_test(1)
68
69 test.must_match('file.out', "file.in\n")
70
71
72
73 test.unlink("file.out")
74
75 os.environ['SCONSFLAGS'] = '--debug=memoizer'
76
77 test.run()
78 stdout = test.stdout()
79 missing = filter(lambda e, s=stdout: string.find(s, e) == -1, expect)
80 if missing:
81     print "Missing the following strings in the SCONSFLAGS=--debug=memoizer output:"
82     print "    " + string.join(missing, "\n    ")
83     print "STDOUT ============"
84     print stdout
85     test.fail_test(1)
86
87
88
89 test.pass_test()