Merge pull request #4674 from bdbaddog/fix_2281_Aliases_ignore_pre_post_add_actions
[scons.git] / test / packaging / option--package-type.py
blob089c05d570c1e1add16424ede907f5c0bdf42e54
1 #!/usr/bin/env python
3 # MIT License
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.
26 """
27 Test the --package-type option.
29 Side effect: also tests that we can produce a noarch package
30 by supplying the ARCHITECTURE tag.
31 """
33 import TestSCons
34 import SCons.Tool.rpmutils
36 _python_ = TestSCons._python_
38 test = TestSCons.TestSCons()
40 rpm_build_root = test.workpath('rpm_build_root')
42 scons = test.program
44 rpm = test.Environment().WhereIs('rpm')
46 if not rpm:
47 test.skip_test('rpm not found, skipping test\n')
49 test.subdir('src')
51 test.write( 'main', '' )
53 test.write('SConstruct', """
54 env=Environment(tools=['packaging', 'filesystem', 'tar', 'rpm'])
55 env.Prepend(RPM = 'TAR_OPTIONS=--wildcards ')
56 env.Append(RPMFLAGS = r' --buildroot %(rpm_build_root)s')
57 prog=env.Install( '/bin', 'main' )
58 env.Package( NAME = 'foo',
59 VERSION = '1.2.3',
60 LICENSE = 'gpl',
61 SUMMARY = 'hello',
62 PACKAGEVERSION = 0,
63 X_RPM_GROUP = 'Application/office',
64 X_RPM_INSTALL = r'%(_python_)s %(scons)s --install-sandbox="$RPM_BUILD_ROOT" "$RPM_BUILD_ROOT"',
65 DESCRIPTION = 'this should be really long',
66 source = [ prog ],
67 SOURCE_URL = 'https://foo.org/foo-1.2.3.tar.gz',
68 ARCHITECTURE = 'noarch'
70 """ % locals())
72 src_rpm = 'foo-1.2.3-0.src.rpm'
73 machine_rpm = 'foo-1.2.3-0.noarch.rpm'
75 test.run(arguments='package PACKAGETYPE=rpm', stderr = None)
77 test.must_exist( src_rpm )
78 test.must_exist( machine_rpm )
79 test.must_not_exist( 'bin/main.c' )
80 test.must_not_exist( '/bin/main.c' )
82 test.run(arguments='-c package PACKAGETYPE=rpm', stderr = None)
84 test.run(arguments='package --package-type=rpm', stderr = None)
85 test.must_exist( src_rpm )
86 test.must_exist( machine_rpm )
87 test.must_not_exist( 'bin/main.c' )
88 test.must_not_exist( '/bin/main.c' )
90 test.pass_test()
92 # Local Variables:
93 # tab-width:4
94 # indent-tabs-mode:nil
95 # End:
96 # vim: set expandtab tabstop=4 shiftwidth=4: