Issue 2168: Mac OS X fixes for SWIG tests. (Greg Noel)
[scons.git] / test / nonexistent.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 """
26 This test verifies that we fail gracefully and provide informative
27 messages if someone tries to build a target that hasn't been defined
28 or uses a nonexistent source file.
29 """
30
31 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
32
33 import os.path
34 import TestSCons
35
36 test = TestSCons.TestSCons()
37
38 foo_bar = os.path.join('foo', 'bar')
39
40 test.write('SConstruct', """
41 env = Environment()
42 env.Command("aaa.out", "aaa.in", "should never get executed")
43 env.Command("bbb.out", "bbb.in", "should never get executed")
44 File('xxx')
45 Dir('ddd')
46 """)
47
48 test.run(arguments = 'foo',
49          stderr = "scons: *** Do not know how to make target `foo'.  Stop.\n",
50          status = 2)
51
52 test.run(arguments = '-k foo/bar foo',
53          stderr = "scons: *** Do not know how to make target `%s'.\n" % foo_bar,
54          status = 2)
55
56 test.run(arguments = "aaa.out",
57          stderr = "scons: *** Source `aaa.in' not found, needed by target `aaa.out'.  Stop.\n",
58          status = 2)
59
60 test.run(arguments = "-k bbb.out aaa.out",
61          stderr = """scons: *** Source `bbb.in' not found, needed by target `bbb.out'.
62 scons: *** Source `aaa.in' not found, needed by target `aaa.out'.
63 """,
64          status = 2)
65
66 test.run(arguments = '-k aaa.in bbb.in',
67          stderr = """scons: *** Do not know how to make target `aaa.in'.
68 scons: *** Do not know how to make target `bbb.in'.
69 """,
70          status = 2)
71
72
73 test.run(arguments = 'xxx',
74          stderr = "scons: *** Do not know how to make target `xxx'.  Stop.\n",
75          status = 2)
76
77 test.run(arguments = 'ddd')
78
79
80 # Make sure that SCons doesn't print up-to-date messages for non-derived files that exist:
81 test.write('SConstruct', """
82 File('xxx')
83 """)
84
85 test.write('xxx', "xxx")
86
87 test.run(arguments='xxx', stdout=test.wrap_stdout("""\
88 scons: Nothing to be done for `xxx'.
89 """))
90          
91 test.run(arguments='xxx', stdout=test.wrap_stdout("""\
92 scons: Nothing to be done for `xxx'.
93 """))
94
95 test.pass_test()