2012-07-13 09:42:14 +02:00
|
|
|
"configuration objects global API"
|
2015-07-24 17:54:10 +02:00
|
|
|
from autopath import do_autopath
|
|
|
|
do_autopath()
|
|
|
|
|
2012-07-13 09:42:14 +02:00
|
|
|
from py.test import raises
|
|
|
|
|
2013-04-20 21:58:52 +02:00
|
|
|
from tiramisu.config import Config
|
|
|
|
from tiramisu.option import IntOption, FloatOption, StrOption, ChoiceOption, \
|
2014-02-04 21:14:30 +01:00
|
|
|
BoolOption, FilenameOption, UnicodeOption, SymLinkOption, IPOption, \
|
2014-02-06 22:17:20 +01:00
|
|
|
PortOption, NetworkOption, NetmaskOption, BroadcastOption, \
|
|
|
|
DomainnameOption, OptionDescription
|
|
|
|
from tiramisu.error import PropertiesOptionError
|
2013-04-20 21:58:52 +02:00
|
|
|
|
2012-07-13 09:42:14 +02:00
|
|
|
|
|
|
|
def make_description():
|
2013-04-03 12:20:26 +02:00
|
|
|
gcoption = ChoiceOption('name', 'GC name', ('ref', 'framework'), 'ref')
|
2012-07-13 09:42:14 +02:00
|
|
|
gcdummy = BoolOption('dummy', 'dummy', default=False)
|
2014-02-01 17:25:31 +01:00
|
|
|
prop = BoolOption('prop', '', properties=('disabled',))
|
|
|
|
prop2 = BoolOption('prop', '', properties=('hidden',))
|
2012-07-13 09:42:14 +02:00
|
|
|
objspaceoption = ChoiceOption('objspace', 'Object space',
|
2013-04-20 21:58:52 +02:00
|
|
|
('std', 'thunk'), 'std')
|
2012-07-13 09:42:14 +02:00
|
|
|
booloption = BoolOption('bool', 'Test boolean option', default=True)
|
2014-02-01 17:25:31 +01:00
|
|
|
booloption2 = BoolOption('bool', 'Test boolean option', default=False)
|
2012-07-13 09:42:14 +02:00
|
|
|
intoption = IntOption('int', 'Test int option', default=0)
|
2014-02-01 16:49:16 +01:00
|
|
|
floatoption2 = FloatOption('float', 'Test float option', default=2.3)
|
2012-07-13 09:42:14 +02:00
|
|
|
floatoption = FloatOption('float', 'Test float option', default=2.3)
|
|
|
|
stroption = StrOption('str', 'Test string option', default="abc")
|
|
|
|
boolop = BoolOption('boolop', 'Test boolean option op', default=True)
|
|
|
|
wantref_option = BoolOption('wantref', 'Tests', default=False)
|
|
|
|
wantframework_option = BoolOption('wantframework', 'Test', default=False)
|
2014-02-01 17:25:31 +01:00
|
|
|
gcgroup2 = OptionDescription('gc2', '', [booloption2, prop])
|
|
|
|
gcgroup = OptionDescription('gc', '', [gcgroup2, gcoption, gcdummy, floatoption, prop2])
|
2012-07-13 09:42:14 +02:00
|
|
|
descr = OptionDescription('tiramisu', '', [gcgroup, booloption, objspaceoption,
|
2013-04-20 21:58:52 +02:00
|
|
|
wantref_option, stroption,
|
|
|
|
wantframework_option,
|
2014-02-01 16:49:16 +01:00
|
|
|
intoption, boolop, floatoption2])
|
2012-07-13 09:42:14 +02:00
|
|
|
return descr
|
|
|
|
|
|
|
|
|
2016-10-01 20:15:08 +02:00
|
|
|
def _is_same_opt(opt1, opt2):
|
|
|
|
if "id" in dir(opt1):
|
|
|
|
assert opt1.id == opt2.id
|
|
|
|
else:
|
|
|
|
assert opt1 == opt2
|
|
|
|
|
|
|
|
|
2012-07-13 09:42:14 +02:00
|
|
|
def test_iter_config():
|
|
|
|
"iteration on config object"
|
|
|
|
s = StrOption("string", "", default="string")
|
|
|
|
s2 = StrOption("string2", "", default="string2")
|
2013-04-20 21:58:52 +02:00
|
|
|
descr = OptionDescription("options", "", [s, s2])
|
2012-07-13 09:42:14 +02:00
|
|
|
config = Config(descr)
|
|
|
|
assert [(name, value) for name, value in config] == \
|
2013-04-20 21:58:52 +02:00
|
|
|
[('string', 'string'), ('string2', 'string2')]
|
|
|
|
|
2012-07-13 09:42:14 +02:00
|
|
|
|
2014-02-02 22:47:46 +01:00
|
|
|
def test_iter_config_property():
|
|
|
|
"iteration on config object"
|
|
|
|
s = StrOption("string", "", default="string", properties=('disabled',))
|
|
|
|
s2 = StrOption("string2", "", default="string2")
|
|
|
|
descr = OptionDescription("options", "", [s, s2])
|
|
|
|
config = Config(descr)
|
|
|
|
config.read_only()
|
|
|
|
assert [(name, value) for name, value in config] == \
|
|
|
|
[('string2', 'string2')]
|
|
|
|
|
|
|
|
|
2012-07-13 09:42:14 +02:00
|
|
|
def test_iter_subconfig():
|
|
|
|
"iteration on config sub object"
|
|
|
|
descr = make_description()
|
|
|
|
conf = Config(descr)
|
|
|
|
for (name, value), (gname, gvalue) in \
|
2013-04-20 21:58:52 +02:00
|
|
|
zip(conf.gc, [("name", "ref"), ("dummy", False)]):
|
2012-07-13 09:42:14 +02:00
|
|
|
assert name == gname
|
|
|
|
assert value == gvalue
|
2013-02-27 11:09:13 +01:00
|
|
|
|
2012-10-11 16:16:43 +02:00
|
|
|
|
2012-07-13 09:42:14 +02:00
|
|
|
def test_str():
|
|
|
|
descr = make_description()
|
|
|
|
c = Config(descr)
|
2013-04-20 21:58:52 +02:00
|
|
|
c # does not crash
|
2012-07-13 09:42:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_make_dict():
|
|
|
|
"serialization of the whole config to a dict"
|
|
|
|
descr = OptionDescription("opt", "", [
|
|
|
|
OptionDescription("s1", "", [
|
2014-03-31 22:34:57 +02:00
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False, properties=('hidden',))]),
|
2012-07-13 09:42:14 +02:00
|
|
|
IntOption("int", "", default=42)])
|
|
|
|
config = Config(descr)
|
2014-03-31 22:34:57 +02:00
|
|
|
config.read_write()
|
|
|
|
config.cfgimpl_get_settings().setpermissive(('hidden',))
|
2013-04-04 11:24:00 +02:00
|
|
|
d = config.make_dict()
|
2012-07-13 09:42:14 +02:00
|
|
|
assert d == {"s1.a": False, "int": 42}
|
|
|
|
config.int = 43
|
|
|
|
config.s1.a = True
|
2013-04-04 11:24:00 +02:00
|
|
|
d = config.make_dict()
|
2012-07-13 09:42:14 +02:00
|
|
|
assert d == {"s1.a": True, "int": 43}
|
2013-04-04 11:24:00 +02:00
|
|
|
d2 = config.make_dict(flatten=True)
|
2012-07-13 09:42:14 +02:00
|
|
|
assert d2 == {'a': True, 'int': 43}
|
2013-08-24 22:32:54 +02:00
|
|
|
raises(ValueError, 'd2 = config.make_dict(withvalue="3")')
|
2014-03-31 22:34:57 +02:00
|
|
|
d = config.make_dict(force_permissive=True)
|
|
|
|
assert d == {"s1.a": True, "s1.b": False, "int": 43}
|
2012-07-13 09:42:14 +02:00
|
|
|
|
|
|
|
|
2014-03-12 14:57:36 +01:00
|
|
|
def test_make_dict_with_disabled():
|
|
|
|
descr = OptionDescription("opt", "", [
|
|
|
|
OptionDescription("s1", "", [
|
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False, properties=('disabled',))]),
|
2015-11-29 23:03:08 +01:00
|
|
|
OptionDescription("s2", "", [
|
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False)], properties=('disabled',)),
|
|
|
|
IntOption("int", "", default=42)])
|
|
|
|
config = Config(descr)
|
|
|
|
config.read_only()
|
|
|
|
d = config.make_dict()
|
|
|
|
assert d == {"s1.a": False, "int": 42}
|
|
|
|
|
|
|
|
|
|
|
|
def test_make_dict_with_disabled_in_callback():
|
|
|
|
descr = OptionDescription("opt", "", [
|
|
|
|
OptionDescription("s1", "", [
|
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False, properties=('disabled',))]),
|
|
|
|
OptionDescription("s2", "", [
|
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False)], properties=('disabled',)),
|
2014-03-12 14:57:36 +01:00
|
|
|
IntOption("int", "", default=42)])
|
|
|
|
config = Config(descr)
|
|
|
|
config.read_only()
|
|
|
|
d = config.make_dict()
|
|
|
|
assert d == {"s1.a": False, "int": 42}
|
2012-07-13 09:42:14 +02:00
|
|
|
|
|
|
|
|
2017-01-06 21:01:24 +01:00
|
|
|
def test_make_dict_fullpath():
|
|
|
|
descr = OptionDescription("root", "", [
|
|
|
|
OptionDescription("opt", "", [
|
|
|
|
OptionDescription("s1", "", [
|
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False, properties=('disabled',))]),
|
|
|
|
OptionDescription("s2", "", [
|
|
|
|
BoolOption("a", "", default=False),
|
|
|
|
BoolOption("b", "", default=False)], properties=('disabled',)),
|
|
|
|
IntOption("int", "", default=42)]),
|
|
|
|
IntOption("introot", "", default=42)])
|
|
|
|
config = Config(descr)
|
|
|
|
config.read_only()
|
|
|
|
assert config.make_dict() == {"opt.s1.a": False, "opt.int": 42, "introot": 42}
|
|
|
|
assert config.opt.make_dict() == {"s1.a": False, "int": 42}
|
2017-01-09 20:16:33 +01:00
|
|
|
assert config.make_dict(fullpath=True) == {"opt.s1.a": False, "opt.int": 42, "introot": 42}
|
2017-01-06 21:01:24 +01:00
|
|
|
assert config.opt.make_dict(fullpath=True) == {"opt.s1.a": False, "opt.int": 42}
|
|
|
|
|
|
|
|
|
2012-10-11 16:16:43 +02:00
|
|
|
def test_find_in_config():
|
|
|
|
"finds option in config"
|
|
|
|
descr = make_description()
|
|
|
|
conf = Config(descr)
|
2014-02-01 17:25:31 +01:00
|
|
|
conf.read_only()
|
2014-03-31 22:34:57 +02:00
|
|
|
conf.cfgimpl_get_settings().setpermissive(('hidden',))
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.find(byname='dummy')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.dummy'))
|
|
|
|
ret = conf.find(byname='float')
|
|
|
|
assert len(ret) == 2
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.float'))
|
|
|
|
_is_same_opt(ret[1], conf.unwrap_from_path('float'))
|
|
|
|
_is_same_opt(conf.find_first(byname='bool'), conf.unwrap_from_path('gc.gc2.bool'))
|
|
|
|
_is_same_opt(conf.find_first(byname='bool', byvalue=True), conf.unwrap_from_path('bool'))
|
|
|
|
_is_same_opt(conf.find_first(byname='dummy'), conf.unwrap_from_path('gc.dummy'))
|
|
|
|
_is_same_opt(conf.find_first(byname='float'), conf.unwrap_from_path('gc.float'))
|
|
|
|
ret = conf.find(bytype=ChoiceOption)
|
|
|
|
assert len(ret) == 2
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.name'))
|
|
|
|
_is_same_opt(ret[1], conf.unwrap_from_path('objspace'))
|
|
|
|
_is_same_opt(conf.find_first(bytype=ChoiceOption), conf.unwrap_from_path('gc.name'))
|
|
|
|
ret = conf.find(byvalue='ref')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.name'))
|
|
|
|
_is_same_opt(conf.find_first(byvalue='ref'), conf.unwrap_from_path('gc.name'))
|
|
|
|
ret = conf.find(byname='prop')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.prop'))
|
2014-02-01 17:25:31 +01:00
|
|
|
conf.read_write()
|
|
|
|
raises(AttributeError, "assert conf.find(byname='prop')")
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.find(byname='prop', check_properties=False)
|
|
|
|
assert len(ret) == 2
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.gc2.prop'))
|
|
|
|
_is_same_opt(ret[1], conf.unwrap_from_path('gc.prop'))
|
|
|
|
ret = conf.find(byname='prop', force_permissive=True)
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.prop'))
|
|
|
|
_is_same_opt(conf.find_first(byname='prop', force_permissive=True), conf.unwrap_from_path('gc.prop'))
|
2014-02-01 17:25:31 +01:00
|
|
|
#assert conf.find_first(byname='prop') == conf.unwrap_from_path('gc.prop')
|
2012-10-12 11:35:07 +02:00
|
|
|
# combinaison of filters
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.find(bytype=BoolOption, byname='dummy')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.dummy'))
|
|
|
|
_is_same_opt(conf.find_first(bytype=BoolOption, byname='dummy'), conf.unwrap_from_path('gc.dummy'))
|
|
|
|
ret = conf.find(byvalue=False, byname='dummy')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.dummy'))
|
|
|
|
_is_same_opt(conf.find_first(byvalue=False, byname='dummy'), conf.unwrap_from_path('gc.dummy'))
|
2014-02-01 16:49:16 +01:00
|
|
|
#subconfig
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.gc.find(byname='dummy')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.dummy'))
|
|
|
|
ret = conf.gc.find(byname='float')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.float'))
|
|
|
|
ret = conf.gc.find(byname='bool')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.gc2.bool'))
|
|
|
|
_is_same_opt(conf.gc.find_first(byname='bool', byvalue=False), conf.unwrap_from_path('gc.gc2.bool'))
|
2014-02-01 17:25:31 +01:00
|
|
|
raises(AttributeError, "assert conf.gc.find_first(byname='bool', byvalue=True)")
|
2014-02-01 16:49:16 +01:00
|
|
|
raises(AttributeError, "conf.gc.find(byname='wantref').first()")
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.gc.find(byname='prop', check_properties=False)
|
|
|
|
assert len(ret) == 2
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.gc2.prop'))
|
|
|
|
_is_same_opt(ret[1], conf.unwrap_from_path('gc.prop'))
|
2014-02-01 17:25:31 +01:00
|
|
|
conf.read_only()
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.gc.find(byname='prop')
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], conf.unwrap_from_path('gc.prop'))
|
2014-02-01 16:49:16 +01:00
|
|
|
# not OptionDescription
|
|
|
|
raises(AttributeError, "conf.find_first(byname='gc')")
|
|
|
|
raises(AttributeError, "conf.gc.find_first(byname='gc2')")
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(ValueError, "conf.find(byname='bool', type_='unknown')")
|
2012-10-11 16:16:43 +02:00
|
|
|
|
2013-04-20 21:58:52 +02:00
|
|
|
|
2013-09-22 21:31:37 +02:00
|
|
|
def test_find_multi():
|
|
|
|
b = BoolOption('bool', '', multi=True)
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
conf = Config(o)
|
|
|
|
raises(AttributeError, "conf.find(byvalue=True)")
|
|
|
|
raises(AttributeError, "conf.find_first(byvalue=True)")
|
|
|
|
conf.bool.append(False)
|
|
|
|
raises(AttributeError, "conf.find(byvalue=True)")
|
|
|
|
raises(AttributeError, "conf.find_first(byvalue=True)")
|
|
|
|
conf.bool.append(False)
|
|
|
|
raises(AttributeError, "conf.find(byvalue=True)")
|
|
|
|
raises(AttributeError, "conf.find_first(byvalue=True)")
|
|
|
|
conf.bool.append(True)
|
2016-10-01 20:15:08 +02:00
|
|
|
ret = conf.find(byvalue=True)
|
|
|
|
assert len(ret) == 1
|
|
|
|
_is_same_opt(ret[0], b)
|
|
|
|
_is_same_opt(conf.find_first(byvalue=True), b)
|
2013-09-22 21:31:37 +02:00
|
|
|
|
|
|
|
|
2013-01-28 09:55:51 +01:00
|
|
|
def test_does_not_find_in_config():
|
|
|
|
descr = make_description()
|
|
|
|
conf = Config(descr)
|
2015-07-24 17:54:10 +02:00
|
|
|
conf
|
2013-04-14 12:01:32 +02:00
|
|
|
raises(AttributeError, "conf.find(byname='IDontExist')")
|
2013-09-30 21:21:47 +02:00
|
|
|
|
|
|
|
|
2013-10-01 08:19:10 +02:00
|
|
|
def test_filename():
|
|
|
|
a = FilenameOption('a', '')
|
2013-09-30 21:21:47 +02:00
|
|
|
o = OptionDescription('o', '', [a])
|
|
|
|
c = Config(o)
|
|
|
|
c.a = u'/'
|
|
|
|
c.a = u'/tmp'
|
|
|
|
c.a = u'/tmp/'
|
|
|
|
c.a = u'/tmp/text.txt'
|
|
|
|
c.a = u'tmp'
|
|
|
|
c.a = u'tmp/'
|
|
|
|
c.a = u'tmp/text.txt'
|
|
|
|
raises(ValueError, "c.a = u'/tmp/with space.txt'")
|
|
|
|
raises(ValueError, "c.a = u'/tmp/with$.txt'")
|
2014-02-02 22:47:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_iter_all():
|
|
|
|
s = StrOption("string", "", default="string")
|
|
|
|
s2 = StrOption("string2", "", default="string2")
|
|
|
|
descr = OptionDescription("options", "", [s, s2])
|
|
|
|
config = Config(descr)
|
|
|
|
assert list(config.iter_all()) == [('string', 'string'), ('string2', 'string2')]
|
|
|
|
for i in config.iter_all():
|
|
|
|
#test StopIteration
|
|
|
|
break
|
|
|
|
|
|
|
|
|
2014-03-31 22:34:57 +02:00
|
|
|
def test_iter_all_force_permissive():
|
|
|
|
s = StrOption("string", "", default="string")
|
|
|
|
s2 = StrOption("string2", "", default="string2")
|
|
|
|
s3 = StrOption("string3", "", default="string3", properties=('hidden',))
|
|
|
|
descr = OptionDescription("options", "", [s, s2, s3])
|
|
|
|
config = Config(descr)
|
|
|
|
config.read_write()
|
|
|
|
config.cfgimpl_get_settings().setpermissive(('hidden',))
|
|
|
|
assert list(config.iter_all()) == [('string', 'string'), ('string2', 'string2')]
|
|
|
|
assert list(config.iter_all(force_permissive=True)) == [('string', 'string'),
|
|
|
|
('string2', 'string2'),
|
|
|
|
('string3', 'string3')]
|
|
|
|
|
|
|
|
|
2014-02-02 22:47:46 +01:00
|
|
|
def test_iter_all_prop():
|
|
|
|
s = StrOption("string", "", default="string", properties=('disabled',))
|
|
|
|
s2 = StrOption("string2", "", default="string2")
|
|
|
|
descr = OptionDescription("options", "", [s, s2])
|
|
|
|
config = Config(descr)
|
|
|
|
config.read_only()
|
|
|
|
assert list(config.iter_all()) == [('string2', 'string2')]
|
2014-02-04 21:14:30 +01:00
|
|
|
|
|
|
|
|
2014-02-06 22:17:20 +01:00
|
|
|
def test_impl_getpaths():
|
|
|
|
s = StrOption("string", "", default="string", properties=('disabled',))
|
|
|
|
s2 = StrOption("string2", "", default="string2")
|
|
|
|
s3 = StrOption("string3", "", default="string3")
|
|
|
|
s4 = StrOption("string4", "", default="string4", properties=('hidden',))
|
|
|
|
od = OptionDescription('od', '', [s3, s4])
|
|
|
|
descr = OptionDescription("options", "", [s, s2, od])
|
|
|
|
config = Config(descr)
|
|
|
|
assert ['string', 'string2', 'od.string3', 'od.string4'] == config.cfgimpl_get_description().impl_getpaths()
|
|
|
|
assert ['string', 'string2', 'od', 'od.string3', 'od.string4'] == config.cfgimpl_get_description().impl_getpaths(include_groups=True)
|
|
|
|
config.read_write()
|
|
|
|
raises(PropertiesOptionError, "config.od.string4")
|
|
|
|
assert ['string', 'string2', 'od.string3', 'od.string4'] == config.cfgimpl_get_description().impl_getpaths()
|
|
|
|
assert ['string', 'string2', 'od', 'od.string3', 'od.string4'] == config.cfgimpl_get_description().impl_getpaths(include_groups=True)
|
|
|
|
|
|
|
|
|
2014-02-04 21:14:30 +01:00
|
|
|
def test_invalid_option():
|
2015-07-24 17:54:10 +02:00
|
|
|
ChoiceOption('a', '', ('1', '2'))
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(TypeError, "ChoiceOption('a', '', [1, 2])")
|
|
|
|
raises(TypeError, "ChoiceOption('a', '', 1)")
|
|
|
|
raises(ValueError, "ChoiceOption('a', '', (1,), 3)")
|
2015-07-24 17:54:10 +02:00
|
|
|
FloatOption('a', '')
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(ValueError, "FloatOption('a', '', 'string')")
|
2015-07-24 17:54:10 +02:00
|
|
|
UnicodeOption('a', '')
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(ValueError, "UnicodeOption('a', '', 1)")
|
2015-07-24 17:54:10 +02:00
|
|
|
u = UnicodeOption('a', '')
|
|
|
|
SymLinkOption('a', u)
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(ValueError, "SymLinkOption('a', 'string')")
|
2015-07-24 17:54:10 +02:00
|
|
|
IPOption('a', '')
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(ValueError, "IPOption('a', '', 1)")
|
|
|
|
raises(ValueError, "IPOption('a', '', 'string')")
|
2015-07-24 17:54:10 +02:00
|
|
|
PortOption('a', '')
|
2014-02-04 21:14:30 +01:00
|
|
|
raises(ValueError, "PortOption('a', '', 'string')")
|
|
|
|
raises(ValueError, "PortOption('a', '', '11:12:13', allow_range=True)")
|
|
|
|
raises(ValueError, "PortOption('a', '', 11111111111111111111)")
|
2014-02-06 22:17:20 +01:00
|
|
|
raises(ValueError, "PortOption('a', '', allow_zero=True, allow_wellknown=False, allow_registred=True, allow_private=False)")
|
|
|
|
raises(ValueError, "PortOption('a', '', allow_zero=True, allow_wellknown=True, allow_registred=False, allow_private=True)")
|
|
|
|
raises(ValueError, "PortOption('a', '', allow_zero=True, allow_wellknown=False, allow_registred=False, allow_private=True)")
|
|
|
|
raises(ValueError, "PortOption('a', '', allow_zero=True, allow_wellknown=False, allow_registred=True, allow_private=True)")
|
|
|
|
raises(ValueError, "PortOption('a', '', allow_zero=False, allow_wellknown=False, allow_registred=False, allow_private=False)")
|
2015-07-24 17:54:10 +02:00
|
|
|
NetworkOption('a', '')
|
2014-02-06 22:17:20 +01:00
|
|
|
raises(ValueError, "NetworkOption('a', '', 'string')")
|
2015-07-24 17:54:10 +02:00
|
|
|
NetmaskOption('a', '')
|
2014-02-06 22:17:20 +01:00
|
|
|
raises(ValueError, "NetmaskOption('a', '', 'string')")
|
2015-07-24 17:54:10 +02:00
|
|
|
BroadcastOption('a', '')
|
2014-02-06 22:17:20 +01:00
|
|
|
raises(ValueError, "BroadcastOption('a', '', 'string')")
|
2015-07-24 17:54:10 +02:00
|
|
|
DomainnameOption('a', '')
|
2014-02-06 22:17:20 +01:00
|
|
|
raises(ValueError, "DomainnameOption('a', '', 'string')")
|
|
|
|
raises(ValueError, "DomainnameOption('a', '', type_='string')")
|
|
|
|
raises(ValueError, "DomainnameOption('a', '', allow_ip='string')")
|
|
|
|
raises(ValueError, "DomainnameOption('a', '', allow_without_dot='string')")
|
2015-04-19 09:15:18 +02:00
|
|
|
raises(ValueError, "DomainnameOption('a', '', 1)")
|
2015-09-17 19:14:56 +02:00
|
|
|
#
|
|
|
|
ChoiceOption('a', '', (1,), multi=True, default_multi=1)
|
|
|
|
raises(ValueError, "ChoiceOption('a', '', (1,), default_multi=1)")
|
|
|
|
raises(ValueError, "ChoiceOption('a', '', (1,), multi=True, default=[1,], default_multi=2)")
|
|
|
|
raises(ValueError, "FloatOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "UnicodeOption('a', '', multi=True, default_multi=1)")
|
|
|
|
raises(ValueError, "IPOption('a', '', multi=True, default_multi=1)")
|
|
|
|
raises(ValueError, "IPOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "PortOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "PortOption('a', '', multi=True, default_multi='11:12:13', allow_range=True)")
|
|
|
|
raises(ValueError, "PortOption('a', '', multi=True, default_multi=11111111111111111111)")
|
|
|
|
raises(ValueError, "NetworkOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "NetmaskOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "BroadcastOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "DomainnameOption('a', '', multi=True, default_multi='string')")
|
|
|
|
raises(ValueError, "DomainnameOption('a', '', multi=True, default_multi=1)")
|