Remove more unnecessary imports from test scripts.
[scons.git] / test / packaging / use-builddir.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 the ability to use the archiver in combination with builddir.
29 """
30
31 import os
32 import TestSCons
33
34 python = TestSCons.python
35
36 test = TestSCons.TestSCons()
37
38 tar = test.detect('TAR', 'tar')
39
40 if not tar:
41     test.skip_test('tar not found, skipping test\n')
42
43 #
44 # TEST: builddir usage.
45 #
46 test.subdir('src')
47 test.subdir('build')
48
49 test.write('src/main.c', '')
50
51 test.write('SConstruct', """
52 VariantDir('build', 'src')
53 env=Environment(tools=['default', 'packaging'])
54 env.Package( NAME        = 'libfoo',
55              PACKAGEROOT = 'build/libfoo',
56              VERSION     = '1.2.3',
57              PACKAGETYPE = 'src_zip',
58              target      = 'build/libfoo-1.2.3.zip',
59              source      = [ 'src/main.c', 'SConstruct' ] )
60 """)
61
62 test.run(stderr = None)
63
64 test.must_exist( 'build/libfoo-1.2.3.zip' )
65
66 # TEST: builddir not placed in archive
67 # XXX: VariantDir should be stripped.
68 #
69 test.subdir('src')
70 test.subdir('build')
71 test.subdir('temp')
72
73 test.write('src/main.c', '')
74
75 test.write('SConstruct', """
76 VariantDir('build', 'src')
77 env=Environment(tools=['default', 'packaging'])
78 env.Package( NAME        = 'libfoo',
79              VERSION     = '1.2.3',
80              PAKCAGETYPE = 'src_targz',
81              source      = [ 'src/main.c', 'SConstruct' ] )
82 """)
83
84 test.run(stderr = None)
85
86 test.must_exist( 'libfoo-1.2.3.tar.gz' )
87
88 os.popen( 'tar -C temp -xzf %s'%test.workpath('libfoo-1.2.3.tar.gz') )
89
90 test.must_exist( 'temp/libfoo-1.2.3/src/main.c' )
91 test.must_exist( 'temp/libfoo-1.2.3/SConstruct' )
92
93 test.pass_test()
94
95 # Local Variables:
96 # tab-width:4
97 # indent-tabs-mode:nil
98 # End:
99 # vim: set expandtab tabstop=4 shiftwidth=4: