[ci skip] update generated files
[scons.git] / test / sconsign / corrupt.py
blobfa6a0e9cbcf95d0ff92b6828bc6ea88649f67e6d
1 #!/usr/bin/env python
3 # __COPYRIGHT__
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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27 """
28 Test that we get proper warnings when .sconsign* files are corrupt.
29 """
31 import TestSCons
32 import TestCmd
33 import re
35 test = TestSCons.TestSCons(match = TestCmd.match_re)
37 test.subdir('work1', ['work1', 'sub'],
38 'work2', ['work2', 'sub'])
40 database_name = test.get_sconsignname()
41 database_filename = database_name + ".dblite"
43 # for test1 we're using the default database filename
44 work1__sconsign_dblite = test.workpath('work1', database_filename)
45 # for test 2 we have an explicit hardcode to .sconsign
46 work2_sub__sconsign = test.workpath('work2', 'sub', database_name)
48 SConstruct_contents = """\
49 def build1(target, source, env):
50 with open(str(target[0]), 'wb') as ofp, open(str(source[0]), 'rb') as ifp:
51 ofp.write(ifp.read())
52 return None
54 B1 = Builder(action = build1)
55 env = Environment(BUILDERS = { 'B1' : B1})
56 env.B1(target = 'sub/foo.out', source = 'foo.in')
57 """
61 test.write(['work1', 'SConstruct'], SConstruct_contents)
63 test.write(['work1', 'foo.in'], "work1/foo.in\n")
65 stderr = r'''
66 scons: warning: Ignoring corrupt .sconsign file: {}
68 '''.format(re.escape(database_filename))
70 stdout = test.wrap_stdout(r'build1\(\["sub.foo\.out"\], \["foo\.in"\]\)' + '\n')
72 test.write(work1__sconsign_dblite, 'not:a:sconsign:file')
73 test.run(chdir='work1', arguments='.', stderr=stderr, stdout=stdout)
75 test.write(work1__sconsign_dblite, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0')
76 test.run(chdir='work1', arguments='.', stderr=stderr, stdout=stdout)
80 # Test explicitly using a .sconsign file in each directory.
82 SConstruct_contents = """\
83 SConsignFile(None)
84 """ + SConstruct_contents
86 test.write(['work2', 'SConstruct'], SConstruct_contents)
88 test.write(['work2', 'foo.in'], "work2/foo.in\n")
90 stderr = r'''
91 scons: warning: Ignoring corrupt .sconsign file: sub.{}
93 '''.format(database_name)
95 stdout = test.wrap_stdout(r'build1\(\["sub.foo\.out"\], \["foo\.in"\]\)' + '\n')
97 test.write(work2_sub__sconsign, 'not:a:sconsign:file')
98 test.run(chdir='work2', arguments='.', stderr=stderr, stdout=stdout)
100 test.write(work2_sub__sconsign, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0')
101 test.run(chdir='work2', arguments='.', stderr=stderr, stdout=stdout)
105 test.pass_test()
107 # Local Variables:
108 # tab-width:4
109 # indent-tabs-mode:nil
110 # End:
111 # vim: set expandtab tabstop=4 shiftwidth=4: