tiramisu/test/test_config.py

115 lines
4.0 KiB
Python
Raw Normal View History

#this test is much more to test that **it's there** and answers attribute access
import autopath
from py.test import raises
from tiramisu.config import Config
from tiramisu.option import IntOption, FloatOption, StrOption, ChoiceOption, \
BoolOption, OptionDescription
def make_description():
2013-04-03 12:20:26 +02:00
gcoption = ChoiceOption('name', 'GC name', ('ref', 'framework'), 'ref')
gcdummy = BoolOption('dummy', 'dummy', default=False)
objspaceoption = ChoiceOption('objspace', 'Object space',
('std', 'thunk'), 'std')
booloption = BoolOption('bool', 'Test boolean option', default=True)
intoption = IntOption('int', 'Test int option', default=0)
floatoption = FloatOption('float', 'Test float option', default=2.3)
2013-04-03 12:20:26 +02:00
stroption = StrOption('str', 'Test string option', default="abc", properties=('mandatory', ))
boolop = BoolOption('boolop', 'Test boolean option op', default=True)
wantref_option = BoolOption('wantref', 'Test requires', default=False)
wantframework_option = BoolOption('wantframework', 'Test requires',
default=False)
2012-11-12 12:06:58 +01:00
gcgroup = OptionDescription('gc', '', [gcoption, gcdummy, floatoption])
descr = OptionDescription('tiram', '', [gcgroup, booloption, objspaceoption,
wantref_option, stroption,
wantframework_option,
intoption, boolop])
return descr
def test_base_config():
gcdummy = BoolOption('dummy', 'dummy', default=False)
descr = OptionDescription('tiramisu', '', [gcdummy])
cfg = Config(descr)
assert cfg.dummy is False
dm = cfg.unwrap_from_path('dummy')
assert dm._name == 'dummy'
def test_reset_value():
descr = make_description()
cfg = Config(descr)
assert cfg.gc.dummy is False
cfg.gc.dummy = True
assert cfg.gc.dummy is True
2012-11-12 12:06:58 +01:00
def test_base_config_and_groups():
descr = make_description()
# overrides the booloption default value
2012-11-12 12:06:58 +01:00
config = Config(descr)
config.bool = False
assert config.gc.name == 'ref'
assert config.bool is False
nm = config.unwrap_from_path('gc.name')
assert nm._name == 'name'
gc = config.unwrap_from_path('gc')
2012-11-12 12:06:58 +01:00
assert gc._name == 'gc'
2013-04-03 12:20:26 +02:00
#nm = config.unwrap_from_name('name')
#assert nm._name == 'name'
2012-11-12 12:06:58 +01:00
def test_base_config_in_a_tree():
"how options are organized into a tree"
descr = make_description()
2012-11-12 12:06:58 +01:00
config = Config(descr)
config.bool = False
assert config.gc.name == 'ref'
config.gc.name = 'framework'
assert config.gc.name == 'framework'
assert getattr(config, "gc.name") == 'framework'
assert config.objspace == 'std'
config.objspace = 'thunk'
assert config.objspace == 'thunk'
2012-11-12 12:06:58 +01:00
assert config.gc.float == 2.3
assert config.int == 0
config.gc.float = 3.4
config.int = 123
assert config.gc.float == 3.4
assert config.int == 123
assert not config.wantref
assert config.str == "abc"
config.str = "def"
assert config.str == "def"
raises(AttributeError, 'config.gc.foo = "bar"')
2012-11-12 12:06:58 +01:00
config = Config(descr)
config.bool = False
assert config.gc.name == 'ref'
config.wantframework = True
def test_cfgimpl_get_home_by_path():
descr = make_description()
2012-11-12 12:06:58 +01:00
config = Config(descr)
config.bool = False
2013-03-15 09:24:43 +01:00
assert config.cfgimpl_get_home_by_path('gc.dummy')[1] == 'dummy'
assert config.cfgimpl_get_home_by_path('dummy')[1] == 'dummy'
#assert config.getpaths(include_groups=False) == ['gc.name', 'gc.dummy', 'gc.float', 'bool', 'objspace', 'wantref', 'str', 'wantframework', 'int', 'boolop']
#assert config.getpaths(include_groups=True) == ['gc', 'gc.name', 'gc.dummy', 'gc.float', 'bool', 'objspace', 'wantref', 'str', 'wantframework', 'int', 'boolop']
def test_information_config():
descr = make_description()
config = Config(descr)
string = 'some informations'
config.impl_set_information('info', string)
assert config.impl_get_information('info') == string