26b14d8c97527a71e95685272e9d1a17a96e3cde
[scons.git] / test / Deprecated / Options / EnumOption.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 EnumOption canned Option type.
29 """
30
31 import os.path
32 import string
33
34 import TestSCons
35
36 test = TestSCons.TestSCons(match = TestSCons.match_re_dotall)
37
38 SConstruct_path = test.workpath('SConstruct')
39
40 def check(expect):
41     result = string.split(test.stdout(), '\n')
42     assert result[1:len(expect)+1] == expect, (result[1:len(expect)+1], expect)
43
44
45
46 test.write(SConstruct_path, """\
47 from SCons.Options.EnumOption import EnumOption
48 EO = EnumOption
49
50 from SCons.Options import EnumOption
51
52 list_of_libs = Split('x11 gl qt ical')
53
54 opts = Options(args=ARGUMENTS)
55 opts.AddOptions(
56     EnumOption('debug', 'debug output and symbols', 'no',
57                allowed_values=('yes', 'no', 'full'),
58                map={}, ignorecase=0),  # case sensitive
59     EnumOption('guilib', 'gui lib to use', 'gtk',
60                allowed_values=('motif', 'gtk', 'kde'),
61                map={}, ignorecase=1), # case insensitive
62     EO('some', 'some option', 'xaver',
63        allowed_values=('xaver', 'eins'),
64        map={}, ignorecase=2), # make lowercase
65     )
66
67 env = Environment(options=opts)
68 Help(opts.GenerateHelpText(env))
69
70 print env['debug']
71 print env['guilib']
72 print env['some']
73
74 Default(env.Alias('dummy', None))
75 """)
76
77
78
79 warnings = """
80 scons: warning: The Options class is deprecated; use the Variables class instead.
81 %s
82 scons: warning: The EnumOption\\(\\) function is deprecated; use the EnumVariable\\(\\) function instead.
83 %s""" % (TestSCons.file_expr, TestSCons.file_expr)
84
85 test.run(stderr=warnings); check(['no', 'gtk', 'xaver'])
86
87 test.run(arguments='debug=yes guilib=Motif some=xAVER', stderr=warnings)
88 check(['yes', 'Motif', 'xaver'])
89
90 test.run(arguments='debug=full guilib=KdE some=EiNs', stderr=warnings)
91 check(['full', 'KdE', 'eins'])
92
93 expect_stderr = warnings + """
94 scons: \\*\\*\\* Invalid value for option debug: FULL
95 """ + TestSCons.file_expr
96
97 test.run(arguments='debug=FULL', stderr=expect_stderr, status=2)
98
99 expect_stderr = warnings + """
100 scons: \\*\\*\\* Invalid value for option guilib: irgendwas
101 """ + TestSCons.file_expr
102
103 test.run(arguments='guilib=IrGeNdwas', stderr=expect_stderr, status=2)
104
105 expect_stderr = warnings + """
106 scons: \\*\\*\\* Invalid value for option some: irgendwas
107 """ + TestSCons.file_expr
108
109 test.run(arguments='some=IrGeNdwas', stderr=expect_stderr, status=2)
110
111
112 test.pass_test()
113
114 # Local Variables:
115 # tab-width:4
116 # indent-tabs-mode:nil
117 # End:
118 # vim: set expandtab tabstop=4 shiftwidth=4: