[ci skip] update generated files
[scons.git] / test / Glob / exclude.py
blob658d99acd79d9a7ae51b85dc2dcd293f9d8ea071
1 #!/usr/bin/env python
3 # __COPYRIGHT__
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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27 """
28 Verify the "exclude" parameter usage of the Glob() function.
29 - with or without subdir
30 - with or without returning strings
31 - a file in a subdir is not excluded by a pattern without this subdir
32 """
34 import TestSCons
36 test = TestSCons.TestSCons()
38 test.write('SConstruct', """\
39 DefaultEnvironment(tools=[])
40 env = Environment(tools=[])
42 def concatenate(target, source, env):
43 with open(str(target[0]), 'wb') as ofp:
44 for s in source:
45 with open(str(s), 'rb') as ifp:
46 ofp.write(ifp.read())
48 env['BUILDERS']['Concatenate'] = Builder(action=concatenate)
50 env.Concatenate('fa.out', sorted(Glob('f*.in' , exclude=['f2.in', 'f4.*'] , strings=False), key=lambda t: t.get_internal_path()))
51 env.Concatenate('fb.out', sorted(Glob('f*.in' , exclude=['f2.in', 'f4.*'] , strings=True)))
52 env.Concatenate('fc.out', sorted(Glob('d?/f*.in', exclude=['d?/f1.*', 'f2.in'], strings=False), key=lambda t: t.get_internal_path()))
53 env.Concatenate('fd.out', sorted(Glob('d?/f*.in', exclude=['d?/f1.*', 'f2.in'], strings=True)))
54 env.Concatenate('fe.out', sorted(Glob('f*.in', exclude='f1.in' , strings=True)))
55 env.Concatenate('ff.out', sorted(Glob('f*.in', exclude='other' , strings=True)))
56 """)
58 test.write('f1.in', "f1.in\n")
59 test.write('f2.in', "f2.in\n")
60 test.write('f3.in', "f3.in\n")
61 test.write('f4.in', "f4.in\n")
62 test.write('f5.in', "f5.in\n")
64 test.subdir('d1', 'd2')
65 test.write(['d1', 'f1.in'], "d1/f1.in\n")
66 test.write(['d1', 'f2.in'], "d1/f2.in\n")
67 test.write(['d1', 'f3.in'], "d1/f3.in\n")
68 test.write(['d2', 'f1.in'], "d2/f1.in\n")
69 test.write(['d2', 'f2.in'], "d2/f2.in\n")
70 test.write(['d2', 'f3.in'], "d2/f3.in\n")
72 test.run(arguments = '.')
74 test.must_match('fa.out', "f1.in\nf3.in\nf5.in\n")
75 test.must_match('fb.out', "f1.in\nf3.in\nf5.in\n")
76 test.must_match('fc.out', "d1/f2.in\nd1/f3.in\nd2/f2.in\nd2/f3.in\n")
77 test.must_match('fd.out', "d1/f2.in\nd1/f3.in\nd2/f2.in\nd2/f3.in\n")
78 test.must_match('fe.out', "f2.in\nf3.in\nf4.in\nf5.in\n")
79 test.must_match('ff.out', "f1.in\nf2.in\nf3.in\nf4.in\nf5.in\n")
81 test.pass_test()
83 # Local Variables:
84 # tab-width:4
85 # indent-tabs-mode:nil
86 # End:
87 # vim: set expandtab tabstop=4 shiftwidth=4: