5 # Copyright The SCons Foundation
7 # Permission is hereby granted, free of charge, to any person obtaining
8 # a copy of this software and associated documentation files (the
9 # "Software"), to deal in the Software without restriction, including
10 # without limitation the rights to use, copy, modify, merge, publish,
11 # distribute, sublicense, and/or sell copies of the Software, and to
12 # permit persons to whom the Software is furnished to do so, subject to
13 # the following conditions:
15 # The above copyright notice and this permission notice shall be included
16 # in all copies or substantial portions of the Software.
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
19 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
20 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 _python_
= TestSCons
._python
_
31 test
= TestSCons
.TestSCons()
37 test
.subdir(['sub1', 'sub2'])
39 test
.write('SConstruct', """
40 _ = DefaultEnvironment(tools=[])
41 env = Environment(tools = ['zip'])
42 env.Zip(target = 'aaa.zip', source = ['sub1/file1'], ZIPROOT='sub1')
43 env.Zip(target = 'bbb.zip', source = ['sub1/file2', 'sub1/sub2/file2'], ZIPROOT='sub1')
46 test
.write(['sub1', 'file1'], "file1\n")
47 test
.write(['sub1', 'file2'], "file2a\n")
48 test
.write(['sub1', 'sub2', 'file2'], "file2b\n")
50 test
.run(arguments
= 'aaa.zip', stderr
= None)
52 test
.must_exist('aaa.zip')
54 # TEST: Zip file should contain 'file1', not 'sub1/file1', because of ZIPROOT.
55 with zipfile
.ZipFile('aaa.zip', 'r') as zf
:
56 test
.fail_test(zf
.testzip() is not None)
58 files
= test
.zipfile_files('aaa.zip')
59 test
.fail_test(test
.zipfile_files('aaa.zip') != ['file1'],
60 message
='Zip file aaa.zip has wrong files: %s' % repr(files
))
64 test
.run(arguments
= 'bbb.zip', stderr
= None)
66 test
.must_exist('bbb.zip')
68 # TEST: Zip file should contain 'sub2/file2', not 'sub1/sub2/file2', because of ZIPROOT.
69 with zipfile
.ZipFile('bbb.zip', 'r') as zf
:
70 test
.fail_test(zf
.testzip() is not None)
72 files
= test
.zipfile_files('bbb.zip')
73 test
.fail_test(test
.zipfile_files('bbb.zip') != ['file2', 'sub2/file2'],
74 message
='Zip file bbb.zip has wrong files: %s' % repr(files
))