233 lines
8.0 KiB
Python
233 lines
8.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""theses tests are much more to test that config, option description, vs...
|
|
**it's there** and answers via attribute access"""
|
|
|
|
import autopath
|
|
from py.test import raises
|
|
|
|
from tiramisu.config import Config
|
|
from tiramisu.option import IntOption, FloatOption, StrOption, ChoiceOption, \
|
|
BoolOption, UnicodeOption, OptionDescription
|
|
from tiramisu.error import ConflictError
|
|
|
|
|
|
def make_description():
|
|
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)
|
|
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)
|
|
|
|
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():
|
|
"""making a :class:`tiramisu.config.Config()` object
|
|
and a :class:`tiramisu.option.OptionDescription()` object
|
|
"""
|
|
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_not_config():
|
|
assert raises(TypeError, "Config('str')")
|
|
|
|
|
|
def test_base_path():
|
|
gcdummy = BoolOption('dummy', 'dummy', default=False)
|
|
descr = OptionDescription('tiramisu', '', [gcdummy])
|
|
cfg = Config(descr)
|
|
assert cfg._impl_path is None
|
|
base = OptionDescription('config', '', [descr])
|
|
cfg = Config(base)
|
|
assert cfg._impl_path is None
|
|
assert cfg.tiramisu._impl_path == 'tiramisu'
|
|
nbase = OptionDescription('baseconfig', '', [base])
|
|
cfg = Config(nbase)
|
|
assert cfg._impl_path is None
|
|
assert cfg.config._impl_path == 'config'
|
|
assert cfg.config.tiramisu._impl_path == 'config.tiramisu'
|
|
|
|
|
|
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
|
|
|
|
|
|
def test_base_config_and_groups():
|
|
descr = make_description()
|
|
# overrides the booloption default value
|
|
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')
|
|
assert gc._name == 'gc'
|
|
#nm = config.unwrap_from_name('name')
|
|
#assert nm._name == 'name'
|
|
|
|
|
|
def test_base_config_in_a_tree():
|
|
"how options are organized into a tree, see :ref:`tree`"
|
|
descr = make_description()
|
|
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'
|
|
|
|
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"')
|
|
|
|
config = Config(descr)
|
|
config.bool = False
|
|
assert config.gc.name == 'ref'
|
|
config.wantframework = True
|
|
|
|
|
|
def test_cfgimpl_get_home_by_path():
|
|
" :meth:`tiramisu.config.SubConfig.cfgimpl_get_home_by_path()` to retrieve a path"
|
|
descr = make_description()
|
|
config = Config(descr)
|
|
config.bool = False
|
|
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
|
|
raises(ValueError, "config.impl_get_information('noinfo')")
|
|
|
|
|
|
def test_config_impl_get_path_by_opt():
|
|
descr = make_description()
|
|
config = Config(descr)
|
|
dummy = config.unwrap_from_path('gc.dummy')
|
|
boo = config.unwrap_from_path('bool')
|
|
assert config.cfgimpl_get_description().impl_get_path_by_opt(boo) == 'bool'
|
|
assert config.cfgimpl_get_description().impl_get_path_by_opt(dummy) == 'gc.dummy'
|
|
|
|
|
|
def test_config_impl_get_opt_by_path():
|
|
descr = make_description()
|
|
config = Config(descr)
|
|
dummy = config.unwrap_from_path('gc.dummy')
|
|
boo = config.unwrap_from_path('bool')
|
|
assert config.cfgimpl_get_description().impl_get_opt_by_path('bool') == boo
|
|
assert config.cfgimpl_get_description().impl_get_opt_by_path('gc.dummy') == dummy
|
|
|
|
|
|
def test_information_display():
|
|
g1 = IntOption('g1', '', 1)
|
|
g2 = StrOption('g2', '', 'héhé')
|
|
g3 = UnicodeOption('g3', '', u'héhé')
|
|
g4 = BoolOption('g4', '', True)
|
|
g5 = StrOption('g5', '')
|
|
d1 = OptionDescription('od', '', [g1, g2, g3, g4, g5])
|
|
root = OptionDescription('root', '', [d1])
|
|
config = Config(root)
|
|
config.od == """g1 = 1
|
|
g2 = héhé
|
|
g3 = héhé
|
|
g4 = True
|
|
g5 = None"""
|
|
config == '[od]'
|
|
|
|
|
|
def test_get_modified_values():
|
|
g1 = IntOption('g1', '', 1)
|
|
g2 = StrOption('g2', '', 'héhé')
|
|
g3 = UnicodeOption('g3', '', u'héhé')
|
|
g4 = BoolOption('g4', '', True)
|
|
g5 = StrOption('g5', '')
|
|
d1 = OptionDescription('od', '', [g1, g2, g3, g4, g5])
|
|
root = OptionDescription('root', '', [d1])
|
|
config = Config(root)
|
|
assert config.cfgimpl_get_values().get_modified_values() == {}
|
|
config.od.g5 = 'yes'
|
|
assert config.cfgimpl_get_values().get_modified_values() == {'od.g5': ('user', 'yes')}
|
|
config.od.g4 = True
|
|
assert config.cfgimpl_get_values().get_modified_values() == {'od.g5': ('user', 'yes'), 'od.g4': ('user', True)}
|
|
|
|
|
|
def test_has_value():
|
|
g1 = IntOption('g1', '', 1)
|
|
g2 = StrOption('g2', '', 'héhé')
|
|
g3 = UnicodeOption('g3', '', u'héhé')
|
|
g4 = BoolOption('g4', '', True)
|
|
g5 = StrOption('g5', '')
|
|
d1 = OptionDescription('od', '', [g1, g2, g3, g4, g5])
|
|
root = OptionDescription('root', '', [d1])
|
|
config = Config(root)
|
|
assert not g5 in config.cfgimpl_get_values()
|
|
config.od.g5 = 'yes'
|
|
assert g5 in config.cfgimpl_get_values()
|
|
|
|
|
|
def test_values_not_setitem():
|
|
g1 = IntOption('g1', '', 1)
|
|
g2 = StrOption('g2', '', 'héhé')
|
|
g3 = UnicodeOption('g3', '', u'héhé')
|
|
g4 = BoolOption('g4', '', True)
|
|
g5 = StrOption('g5', '')
|
|
d1 = OptionDescription('od', '', [g1, g2, g3, g4, g5])
|
|
root = OptionDescription('root', '', [d1])
|
|
config = Config(root)
|
|
raises(ValueError, "config.cfgimpl_get_values()[g1] = 2")
|
|
|
|
|
|
def test_duplicated_option():
|
|
g1 = IntOption('g1', '', 1)
|
|
#in same OptionDescription
|
|
raises(ConflictError, "d1 = OptionDescription('od', '', [g1, g1])")
|
|
d1 = OptionDescription('od1', '', [g1])
|
|
d2 = OptionDescription('od2', '', [g1])
|
|
root = OptionDescription('root', '', [d1, d2])
|
|
#in different OptionDescription
|
|
raises(ConflictError, "config = Config(root)")
|