Remove more unnecessary imports from test scripts.
[scons.git] / test / packaging / guess-package-name.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 This tests the feature of guessing the package name from the given metadata
29 projectname and version.
30
31 Also overriding this default package name is tested
32
33 Furthermore that targz is the default packager is tested.
34 """
35
36 import TestSCons
37
38 python = TestSCons.python
39 test = TestSCons.TestSCons()
40 tar = test.detect('TAR', 'tar')
41
42 if not tar:
43     test.skip_test('tar not found; skipping test\n')
44
45 #
46 # TEST: default package name creation.
47 #
48 test.subdir('src')
49
50 test.write( [ 'src', 'main.c' ], r"""
51 int main( int argc, char* argv[] )
52 {
53   return 0;
54 }
55 """)
56
57 test.write('SConstruct', """
58 env=Environment(tools=['default', 'packaging'])
59 env.Program( 'src/main.c' )
60 env.Package( NAME        = 'libfoo',
61              VERSION     = '1.2.3',
62              PACKAGETYPE = 'zip',
63              source      = [ 'src/main.c', 'SConstruct' ] )
64 """)
65
66 test.run(options="--debug=stacktrace", stderr = None)
67
68 test.must_exist( 'libfoo-1.2.3.zip' )
69
70 #
71 # TEST: overriding default package name.
72 #
73
74 test.write('SConstruct', """
75 env=Environment(tools=['default', 'packaging'])
76 env.Program( 'src/main.c' )
77 env.Package( NAME        = 'libfoo',
78              VERSION     = '1.2.3',
79              PACKAGETYPE = 'src_targz',
80              target      = 'src.tar.gz',
81              source      = [ 'src/main.c', 'SConstruct' ] )
82 """)
83
84 test.run(stderr = None)
85
86 test.must_exist( 'src.tar.gz' )
87
88 #
89 # TEST: default package name creation with overriden packager.
90 #
91
92 test.write('SConstruct', """
93 env=Environment(tools=['default', 'packaging'])
94 env.Program( 'src/main.c' )
95 env.Package( NAME        = 'libfoo',
96              VERSION     = '1.2.3',
97              PACKAGETYPE = 'src_tarbz2',
98              source      = [ 'src/main.c', 'SConstruct' ] )
99 """)
100
101 test.run(stderr = None)
102
103 test.must_exist( 'libfoo-1.2.3.tar.bz2' )
104
105 test.pass_test()
106
107 # Local Variables:
108 # tab-width:4
109 # indent-tabs-mode:nil
110 # End:
111 # vim: set expandtab tabstop=4 shiftwidth=4: