Remove more unnecessary imports from test scripts.
[scons.git] / test / packaging / place-files-in-subdirectory.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 requirement to place files in a given subdirectory before archiving.
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: subdir creation and file copying
45 #
46 test.subdir('src')
47
48 test.write('src/main.c', '')
49
50 test.write('SConstruct', """
51 env = Environment(tools=['default', 'packaging'])
52 env.Package( NAME        = 'libfoo',
53              PACKAGEROOT = 'libfoo',
54              PACKAGETYPE = 'src_zip',
55              VERSION     = '1.2.3',
56              source      = [ 'src/main.c', 'SConstruct' ] )
57 """)
58
59 test.run(arguments='libfoo-1.2.3.zip', stderr = None)
60
61 test.must_exist( 'libfoo' )
62 test.must_exist( 'libfoo/SConstruct' )
63 test.must_exist( 'libfoo/src/main.c' )
64
65 #
66 # TEST: subdir guessing and file copying.
67 #
68 test.subdir('src')
69
70 test.write('src/main.c', '')
71
72 test.write('SConstruct', """
73 env = Environment(tools=['default', 'packaging'])
74 env.Package( NAME        = 'libfoo',
75              VERSION     = '1.2.3',
76              PACKAGETYPE = 'src_zip',
77              TARGET      = 'src.zip',
78              source      = [ 'src/main.c', 'SConstruct' ] )
79 """)
80
81 test.run(stderr = None)
82
83 test.must_exist( 'libfoo-1.2.3' )
84 test.must_exist( 'libfoo-1.2.3/SConstruct' )
85 test.must_exist( 'libfoo-1.2.3/src/main.c' )
86
87 #
88 # TEST: unpacking without the buildir.
89 #
90 test.subdir('src')
91 test.subdir('temp')
92
93 test.write('src/main.c', '')
94
95 test.write('SConstruct', """
96 env = Environment(tools=['default', 'packaging'])
97 env.Package( NAME        = 'libfoo',
98              VERSION     = '1.2.3',
99              PACKAGETYPE = 'src_targz',
100              source      = [ 'src/main.c', 'SConstruct' ] )
101 """)
102
103 test.run(stderr = None)
104
105 str = os.popen( 'tar -tzf %s'%test.workpath('libfoo-1.2.3.tar.gz') ).read()
106 test.fail_test( str != "libfoo-1.2.3/src/main.c\nlibfoo-1.2.3/SConstruct\n" )
107
108 test.pass_test()
109
110 # Local Variables:
111 # tab-width:4
112 # indent-tabs-mode:nil
113 # End:
114 # vim: set expandtab tabstop=4 shiftwidth=4: