Eliminate / replace remaining cPickle references in test scripts.
[scons.git] / test / sconsign / corrupt.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 that we get proper warnings when .sconsign* files are corrupt.
29 """
30
31 import TestSCons
32 import TestCmd
33
34 test = TestSCons.TestSCons(match = TestCmd.match_re)
35
36 test.subdir('work1', ['work1', 'sub'],
37             'work2', ['work2', 'sub'])
38
39 work1__sconsign_dblite = test.workpath('work1', '.sconsign.dblite')
40 work2_sub__sconsign = test.workpath('work2', 'sub', '.sconsign')
41
42 SConstruct_contents = """\
43 def build1(target, source, env):
44     open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read())
45     return None
46
47 B1 = Builder(action = build1)
48 env = Environment(BUILDERS = { 'B1' : B1})
49 env.B1(target = 'sub/foo.out', source = 'foo.in')
50 """
51
52
53
54 test.write(['work1', 'SConstruct'], SConstruct_contents)
55
56 test.write(['work1', 'foo.in'], "work1/foo.in\n")
57
58 stderr = '''
59 scons: warning: Ignoring corrupt .sconsign file: \.sconsign\.dblite
60 .*
61 '''
62
63 stdout = test.wrap_stdout('build1\(\["sub.foo\.out"\], \["foo\.in"\]\)\n')
64
65 test.write(work1__sconsign_dblite, 'not:a:sconsign:file')
66 test.run(chdir='work1', arguments='.', stderr=stderr, stdout=stdout)
67
68 test.write(work1__sconsign_dblite, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0')
69 test.run(chdir='work1', arguments='.', stderr=stderr, stdout=stdout)
70
71
72
73 # Test explicitly using a .sconsign file in each directory.
74
75 SConstruct_contents = """\
76 SConsignFile(None)
77 """ + SConstruct_contents
78
79 test.write(['work2', 'SConstruct'], SConstruct_contents)
80
81 test.write(['work2', 'foo.in'], "work2/foo.in\n")
82
83 stderr = '''
84 scons: warning: Ignoring corrupt .sconsign file: sub.\.sconsign
85 .*
86 '''
87
88 stdout = test.wrap_stdout('build1\(\["sub.foo\.out"\], \["foo\.in"\]\)\n')
89
90 test.write(work2_sub__sconsign, 'not:a:sconsign:file')
91 test.run(chdir='work2', arguments='.', stderr=stderr, stdout=stdout)
92
93 test.write(work2_sub__sconsign, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0')
94 test.run(chdir='work2', arguments='.', stderr=stderr, stdout=stdout)
95
96
97
98 test.pass_test()
99
100 # Local Variables:
101 # tab-width:4
102 # indent-tabs-mode:nil
103 # End:
104 # vim: set expandtab tabstop=4 shiftwidth=4: