2013-09-19 21:38:46 +02:00
|
|
|
import autopath
|
|
|
|
from py.test import raises
|
|
|
|
|
|
|
|
from tiramisu.config import Config
|
|
|
|
from tiramisu.option import StrOption, OptionDescription
|
2013-09-25 21:10:45 +02:00
|
|
|
from tiramisu.setting import groups
|
2013-09-19 21:38:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
def return_true(value, param=None):
|
|
|
|
if value == 'val' and param in [None, 'yes']:
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def return_false(value, param=None):
|
|
|
|
if value == 'val' and param in [None, 'yes']:
|
2013-09-24 23:19:20 +02:00
|
|
|
raise ValueError('error')
|
2013-09-19 21:38:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
def return_val(value, param=None):
|
|
|
|
return 'val'
|
|
|
|
|
|
|
|
|
2013-09-24 23:19:20 +02:00
|
|
|
def return_if_val(value):
|
|
|
|
if value != 'val':
|
|
|
|
raise ValueError('error')
|
|
|
|
|
|
|
|
|
2013-09-19 21:38:46 +02:00
|
|
|
def test_validator():
|
|
|
|
opt1 = StrOption('opt1', '', validator=return_true, default='val')
|
|
|
|
raises(ValueError, "StrOption('opt2', '', validator=return_false, default='val')")
|
|
|
|
opt2 = StrOption('opt2', '', validator=return_false)
|
2013-09-24 23:19:20 +02:00
|
|
|
root = OptionDescription('root', '', [opt1, opt2])
|
2013-09-19 21:38:46 +02:00
|
|
|
cfg = Config(root)
|
|
|
|
assert cfg.opt1 == 'val'
|
|
|
|
raises(ValueError, "cfg.opt2 = 'val'")
|
|
|
|
|
|
|
|
|
|
|
|
def test_validator_params():
|
|
|
|
opt1 = StrOption('opt1', '', validator=return_true, validator_params={'': ('yes',)}, default='val')
|
|
|
|
raises(ValueError, "StrOption('opt2', '', validator=return_false, validator_params={'': ('yes',)}, default='val')")
|
|
|
|
opt2 = StrOption('opt2', '', validator=return_false, validator_params={'': ('yes',)})
|
2013-09-24 23:19:20 +02:00
|
|
|
root = OptionDescription('root', '', [opt1, opt2])
|
2013-09-19 21:38:46 +02:00
|
|
|
cfg = Config(root)
|
|
|
|
assert cfg.opt1 == 'val'
|
|
|
|
raises(ValueError, "cfg.opt2 = 'val'")
|
|
|
|
|
|
|
|
|
|
|
|
def test_validator_params_key():
|
|
|
|
opt1 = StrOption('opt1', '', validator=return_true, validator_params={'param': ('yes',)}, default='val')
|
|
|
|
raises(TypeError, "StrOption('opt2', '', validator=return_true, validator_params={'param_unknown': ('yes',)}, default='val')")
|
|
|
|
root = OptionDescription('root', '', [opt1])
|
|
|
|
cfg = Config(root)
|
|
|
|
assert cfg.opt1 == 'val'
|
|
|
|
|
|
|
|
|
|
|
|
def test_validator_params_option():
|
|
|
|
opt0 = StrOption('opt0', '', default='val')
|
|
|
|
raises(ValueError, "opt1 = StrOption('opt1', '', validator=return_true, validator_params={'': ((opt0, False),)}, default='val')")
|
2013-09-24 23:19:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_validator_multi():
|
|
|
|
opt1 = StrOption('opt1', '', validator=return_if_val, multi=True)
|
|
|
|
root = OptionDescription('root', '', [opt1])
|
|
|
|
cfg = Config(root)
|
|
|
|
assert cfg.opt1 == []
|
|
|
|
cfg.opt1.append('val')
|
|
|
|
assert cfg.opt1 == ['val']
|
|
|
|
raises(ValueError, "cfg.opt1.append('val1')")
|
|
|
|
raises(ValueError, "cfg.opt1 = ['val', 'val1']")
|
|
|
|
|
|
|
|
|
|
|
|
def test_validator_warning():
|
|
|
|
opt1 = StrOption('opt1', '', validator=return_true, default='val', only_warning=True)
|
|
|
|
opt2 = StrOption('opt2', '', validator=return_false, only_warning=True)
|
|
|
|
opt3 = StrOption('opt3', '', validator=return_if_val, multi=True, only_warning=True)
|
|
|
|
root = OptionDescription('root', '', [opt1, opt2, opt3])
|
|
|
|
cfg = Config(root)
|
|
|
|
assert cfg.opt1 == 'val'
|
|
|
|
cfg.opt1 = 'val'
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is False
|
|
|
|
cfg.opt2 = 'val'
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is True
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {opt2: 'invalid value val for option opt2: error'}
|
2013-09-24 23:19:20 +02:00
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is False
|
|
|
|
cfg.opt3.append('val')
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is False
|
|
|
|
cfg.opt3.append('val1')
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is True
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {opt3: 'invalid value val1 for option opt3: error'}
|
2013-09-24 23:19:20 +02:00
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is False
|
|
|
|
raises(ValueError, "cfg.opt2 = 1")
|
2013-09-26 18:35:11 +02:00
|
|
|
cfg.opt2 = 'val'
|
|
|
|
cfg.opt3.append('val')
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is True
|
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {opt2: 'invalid value val for option opt2: error', opt3: 'invalid value val1 for option opt3: error'}
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is False
|
2013-09-25 21:10:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_validator_warning_master_slave():
|
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip reseau autorise", multi=True, validator=return_false, only_warning=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "masque du sous-reseau", multi=True, validator=return_if_val, only_warning=True)
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
interface1.impl_set_group_type(groups.master)
|
|
|
|
assert interface1.impl_get_group_type() == groups.master
|
|
|
|
root = OptionDescription('root', '', [interface1])
|
|
|
|
cfg = Config(root)
|
|
|
|
cfg.ip_admin_eth0.ip_admin_eth0.append(None)
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is False
|
|
|
|
cfg.ip_admin_eth0.netmask_admin_eth0 = ['val1']
|
|
|
|
assert cfg.ip_admin_eth0.netmask_admin_eth0 == ['val1']
|
|
|
|
assert cfg.cfgimpl_get_values().has_warning() is True
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {netmask_admin_eth0: 'invalid value val1 for option netmask_admin_eth0: error'}
|
2013-09-25 21:10:45 +02:00
|
|
|
cfg.ip_admin_eth0.ip_admin_eth0 = ['val']
|
|
|
|
assert cfg.ip_admin_eth0.ip_admin_eth0 == ['val']
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {ip_admin_eth0: 'invalid value val for option ip_admin_eth0: error'}
|
2013-09-26 09:31:51 +02:00
|
|
|
cfg.ip_admin_eth0.ip_admin_eth0 = ['val', 'val1', 'val1']
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {ip_admin_eth0: 'invalid value val for option ip_admin_eth0: error'}
|
2013-09-26 09:31:51 +02:00
|
|
|
cfg.ip_admin_eth0.ip_admin_eth0 = ['val1', 'val', 'val1']
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {ip_admin_eth0: 'invalid value val for option ip_admin_eth0: error'}
|
2013-09-26 09:31:51 +02:00
|
|
|
cfg.ip_admin_eth0.ip_admin_eth0 = ['val1', 'val1', 'val']
|
2013-09-26 18:35:11 +02:00
|
|
|
assert cfg.cfgimpl_get_values().get_warnings() == {ip_admin_eth0: 'invalid value val for option ip_admin_eth0: error'}
|