Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / Deprecated / Options / BoolOption.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 BoolOption canned Option type.
29 """
30
31 try:
32     True, False
33 except NameError:
34     True = (0 == 0)
35     False = (0 != 0)
36
37 import TestSCons
38
39 test = TestSCons.TestSCons(match = TestSCons.match_re_dotall)
40
41 SConstruct_path = test.workpath('SConstruct')
42
43 def check(expect):
44     result = test.stdout().split('\n')
45     assert result[1:len(expect)+1] == expect, (result[1:len(expect)+1], expect)
46
47
48
49 test.write(SConstruct_path, """\
50 from SCons.Options.BoolOption import BoolOption
51 BO = BoolOption
52
53 from SCons.Options import BoolOption
54
55 opts = Options(args=ARGUMENTS)
56 opts.AddOptions(
57     BoolOption('warnings', 'compilation with -Wall and similiar', 1),
58     BO('profile', 'create profiling informations', 0),
59     )
60
61 env = Environment(options=opts)
62 Help(opts.GenerateHelpText(env))
63
64 print env['warnings']
65 print env['profile']
66
67 Default(env.Alias('dummy', None))
68 """)
69
70
71 warnings = """
72 scons: warning: The Options class is deprecated; use the Variables class instead.
73 %s
74 scons: warning: The BoolOption\\(\\) function is deprecated; use the BoolVariable\\(\\) function instead.
75 %s""" % (TestSCons.file_expr, TestSCons.file_expr)
76
77 test.run(stderr=warnings)
78
79 check([str(True), str(False)])
80
81 test.run(arguments='warnings=0 profile=no profile=true', stderr=warnings)
82 check([str(False), str(True)])
83
84 expect_stderr = (warnings + """
85 scons: \\*\\*\\* Error converting option: warnings
86 Invalid value for boolean option: irgendwas
87 """ + TestSCons.file_expr)
88
89 test.run(arguments='warnings=irgendwas', stderr=expect_stderr, status=2)
90
91
92
93 test.pass_test()
94
95 # Local Variables:
96 # tab-width:4
97 # indent-tabs-mode:nil
98 # End:
99 # vim: set expandtab tabstop=4 shiftwidth=4: