tiramisu/tests/auto/test_auto.py

1865 lines
83 KiB
Python
Raw Normal View History

"""test API
2017-10-22 09:48:08 +02:00
"""
import weakref
2017-10-22 09:48:08 +02:00
import pytest
2018-08-18 16:11:25 +02:00
import warnings
2017-11-18 14:51:00 +01:00
from copy import copy
2017-10-22 09:48:08 +02:00
from py.test import raises
2018-10-30 11:57:04 +01:00
from collections import OrderedDict
2017-10-22 09:48:08 +02:00
from .autopath import do_autopath
do_autopath()
from tiramisu import Config, MetaConfig, \
2019-02-23 19:06:23 +01:00
StrOption, SymLinkOption, OptionDescription, Leadership, DynOptionDescription, \
2018-08-14 23:07:07 +02:00
submulti, undefined, owners, Params, ParamOption
2019-02-23 19:06:23 +01:00
from tiramisu.error import PropertiesOptionError, APIError, ConfigError, LeadershipError
2017-10-22 09:48:08 +02:00
ICON = u'\u2937'
OPTIONS_TYPE = {'str': {'type': str,
'option': StrOption}
2018-10-30 11:57:04 +01:00
}
2018-04-07 20:15:19 +02:00
PROPERTIES = ['hidden', 'disabled', 'mandatory']
2017-11-18 14:51:00 +01:00
PROPERTIES_LIST = ['prop1', 'prop2']
OWNER = 'user'
# multi is False
FIRST_VALUE = 'myvalue'
SECOND_VALUE = 'myvalue1'
EMPTY_VALUE = None
# multi is True
LIST_FIRST_VALUE = ['myvalue']
LIST_SECOND_VALUE = ['myvalue', 'myvalue1']
LIST_EMPTY_VALUE = []
# multi is submulti
SUBLIST_FIRST_VALUE = [['myvalue']]
SUBLIST_SECOND_VALUE = [['myvalue'], ['myvalue1', 'myvalue2']]
SUBLIST_EMPTY_VALUE = []
DISPLAY = True
2017-11-18 14:51:00 +01:00
DISPLAY = False
2017-10-22 09:48:08 +02:00
def return_list(val=None, suffix=None):
if val:
return val
else:
return ['val1', 'val2']
2017-11-28 22:42:30 +01:00
def return_str(val, suffix=None):
return val
2017-10-22 09:48:08 +02:00
def display_info(func):
def wrapper(*args, **kwargs):
if DISPLAY:
print(u'\n{} {}'.format(ICON, func.__name__))
2017-10-22 09:48:08 +02:00
return func(*args, **kwargs)
return wrapper
autocheck_registers = []
def autocheck(func):
autocheck_registers.append(func)
def wrapper(*args, **kwargs):
if DISPLAY and kwargs.get('display', True):
2017-10-22 09:48:08 +02:00
print(u' {} {}'.format(ICON, func.__name__))
return func(*args, **kwargs)
return wrapper
2018-08-14 23:07:07 +02:00
def _autocheck_default_value(cfg, path, conf, **kwargs):
2017-10-22 09:48:08 +02:00
"""set and get values
"""
2019-02-23 19:06:23 +01:00
# check if is a multi, a leader or a follower
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(path).option.ismulti()
submulti_ = cfg.unrestraint.option(path).option.issubmulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(path).option.isfollower()
2017-10-22 09:48:08 +02:00
# set default value (different if value is multi or not)
2017-11-28 22:42:30 +01:00
empty_value = kwargs['default']
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
# test default value (should be empty)
2019-02-23 19:06:23 +01:00
# cannot test for follower (we cannot get all values for a follower)
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-02-23 19:06:23 +01:00
if not isfollower:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(path).value.get() == empty_value
assert cfg_.forcepermissive.option(path).value.get() == empty_value
2018-08-18 16:11:25 +02:00
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(path).value.get()")
assert cfg_.forcepermissive.option(path).value.get() == empty_value
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(path).value.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(path).value.get()")
2017-11-18 14:51:00 +01:00
else:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(path, 0).value.get() == empty_value
assert cfg_.option(path, 1).value.get() == empty_value
assert cfg_.forcepermissive.option(path, 0).value.get() == empty_value
assert cfg_.forcepermissive.option(path, 1).value.get() == empty_value
2018-08-18 16:11:25 +02:00
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(path, 0).value.get()")
assert cfg_.forcepermissive.option(path, 0).value.get() == empty_value
assert cfg_.forcepermissive.option(path, 1).value.get() == empty_value
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(path, 0).value.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(path, 0).value.get()")
2017-11-18 14:51:00 +01:00
2018-08-14 23:07:07 +02:00
def _set_value(cfg, pathwrite, conf, **kwargs):
2017-11-18 14:51:00 +01:00
set_permissive = kwargs.get('set_permissive', True)
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathwrite).option.ismulti()
submulti_ = cfg.unrestraint.option(pathwrite).option.issubmulti()
2019-02-23 19:06:23 +01:00
isleader = cfg.unrestraint.option(pathwrite).option.isleader()
isfollower = cfg.unrestraint.option(pathwrite).option.isfollower()
2017-11-18 14:51:00 +01:00
if not multi:
first_value = FIRST_VALUE
elif submulti_ is False:
2019-02-23 19:06:23 +01:00
if not isfollower:
2017-11-28 22:42:30 +01:00
first_value = LIST_FIRST_VALUE
else:
second_value = LIST_SECOND_VALUE[1]
2017-11-18 14:51:00 +01:00
else:
2019-02-23 19:06:23 +01:00
if not isfollower:
2017-11-28 22:42:30 +01:00
first_value = SUBLIST_FIRST_VALUE
else:
second_value = SUBLIST_SECOND_VALUE[1]
2017-10-22 09:48:08 +02:00
2019-02-23 19:06:23 +01:00
# for follower should have an index and good length
# for leader must append, not set
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-02-23 19:06:23 +01:00
if isleader:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(APIError, "cfg_.option(pathwrite, 0).value.set(first_value[0])")
2018-08-18 16:11:25 +02:00
if not set_permissive:
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).value.set([first_value[0]])
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite).value.set([first_value[0]])
2018-08-18 16:11:25 +02:00
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathwrite).value.set([first_value[0]])")
2018-08-18 16:11:25 +02:00
if set_permissive:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite).value.set([first_value[0]])
2017-11-18 14:51:00 +01:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathwrite).value.set([first_value[0]])")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathwrite).value.set([first_value[0]])")
2018-08-18 16:11:25 +02:00
if len(first_value) > 1:
2019-03-02 19:30:21 +01:00
raises(APIError, "cfg_.unrestraint.option(pathwrite).value.set(first_value[1])")
2019-02-23 19:06:23 +01:00
elif isfollower:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
if not set_permissive:
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite, 1).value.set(second_value)
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite, 1).value.set(second_value)
2018-08-18 16:11:25 +02:00
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathwrite, 1).value.set(second_value)")
2018-08-18 16:11:25 +02:00
if set_permissive:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite, 1).value.set(second_value)
2017-11-18 14:51:00 +01:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathwrite, 1).value.set(second_value)")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathwrite, 1).value.set(second_value)")
raises(APIError, "cfg_.unrestraint.option(pathwrite).value.set([second_value, second_value])")
2017-11-18 14:51:00 +01:00
2017-10-22 09:48:08 +02:00
else:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
if not set_permissive:
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).value.set(first_value)
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite).value.set(first_value)
2018-08-18 16:11:25 +02:00
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathwrite).value.set(first_value)")
2018-08-18 16:11:25 +02:00
if set_permissive:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite).value.set(first_value)
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathwrite).value.set(first_value)")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathwrite).value.set(first_value)")
#FIXME raises(APIError, "cfg_.unrestraint.option(pathwrite).value.set(first_value)")
2017-11-18 14:51:00 +01:00
2019-02-23 19:06:23 +01:00
def _getproperties(multi, isfollower, kwargs):
# define properties
properties = copy(PROPERTIES_LIST)
2019-02-23 19:06:23 +01:00
if multi and not isfollower:
default_props = ['empty']
properties.append('empty')
else:
default_props = []
extra_properties = kwargs.get('extra_properties')
if extra_properties:
properties.extend(extra_properties)
default_props.extend(extra_properties)
return default_props, frozenset(properties)
2017-11-18 14:51:00 +01:00
def _check_properties(cfg, mcfg, pathread, conf, kwargs, props_permissive, props):
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2019-02-23 19:06:23 +01:00
if not cfg.unrestraint.option(pathread).option.isfollower():
2019-02-23 08:01:29 +01:00
if not kwargs.get('permissive_od', False):
2019-03-02 19:30:21 +01:00
assert set(cfg_.option(pathread).property.get()) == set(props_permissive)
assert set(cfg_.option(pathread).property.get()) == set(props)
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).property.get()")
raises(PropertiesOptionError, "cfg_.option(pathread).property.get()")
assert set(cfg_.forcepermissive.option(pathread).property.get()) == set(props_permissive)
assert set(cfg_.forcepermissive.option(pathread).property.get()) == set(props)
assert set(cfg_.unrestraint.option(pathread).property.get()) == set(props_permissive)
assert set(cfg_.unrestraint.option(pathread).property.get()) == set(props)
else:
2019-02-23 08:01:29 +01:00
if not kwargs.get('permissive_od', False):
2019-03-02 19:30:21 +01:00
assert set(cfg_.option(pathread, 0).property.get()) == set(props_permissive)
assert set(cfg_.option(pathread, 0).property.get()) == set(props)
#
2019-03-02 19:30:21 +01:00
assert set(cfg_.option(pathread, 1).property.get()) == set(props_permissive)
assert set(cfg_.option(pathread, 1).property.get()) == set(props)
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).property.get()")
raises(PropertiesOptionError, "cfg_.option(pathread, 0).property.get()")
#
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 1).property.get()")
raises(PropertiesOptionError, "cfg_.option(pathread, 1).property.get()")
assert set(cfg_.forcepermissive.option(pathread, 0).property.get()) == set(props_permissive)
assert set(cfg_.forcepermissive.option(pathread, 0).property.get()) == set(props)
#
2019-03-02 19:30:21 +01:00
assert set(cfg_.forcepermissive.option(pathread, 1).property.get()) == set(props_permissive)
assert set(cfg_.forcepermissive.option(pathread, 1).property.get()) == set(props)
assert set(cfg_.unrestraint.option(pathread, 1).property.get()) == set(props_permissive)
assert set(cfg_.unrestraint.option(pathread, 1).property.get()) == set(props)
def _property_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
# check if is a multi or a follower
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathread).option.ismulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
# define properties
properties = copy(PROPERTIES_LIST)
2019-02-23 19:06:23 +01:00
if multi and not isfollower:
default_props = ['empty']
properties.append('empty')
2017-11-18 14:51:00 +01:00
else:
default_props = []
extra_properties = kwargs.get('extra_properties')
if extra_properties:
properties.extend(extra_properties)
default_props.extend(extra_properties)
2019-02-23 19:06:23 +01:00
default_props, properties = _getproperties(multi, isfollower, kwargs)
2017-10-22 09:48:08 +02:00
if confwrite == confread:
_check_properties(cfg, mcfg, pathread, confwrite, kwargs, default_props, default_props)
else:
_check_properties(cfg, mcfg, pathread, confread, kwargs, default_props, default_props)
# set properties with permissive
for prop in properties:
2019-03-02 19:30:21 +01:00
if confread is not None:
cfg_ = cfg.config(confread)
else:
cfg_ = cfg
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).property.add(prop)
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathwrite).property.add(prop)
2017-10-22 09:48:08 +02:00
else:
2019-03-02 19:30:21 +01:00
cfg_.unrestraint.option(pathwrite).property.add(prop)
if confwrite == confread:
_check_properties(cfg, mcfg, pathread, confwrite, kwargs, properties, properties)
else:
_check_properties(cfg, mcfg, pathread, confread, kwargs, properties, properties)
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
2018-08-14 23:07:07 +02:00
def _autocheck_get_value(cfg, pathread, conf, **kwargs):
2017-11-28 22:42:30 +01:00
set_permissive = kwargs.get('set_permissive', True)
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathread).option.ismulti()
submulti_ = cfg.unrestraint.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2017-11-28 22:42:30 +01:00
empty_value = kwargs['default']
2017-11-18 14:51:00 +01:00
if not multi:
first_value = FIRST_VALUE
elif submulti_ is False:
2019-02-23 19:06:23 +01:00
if not isfollower:
2017-11-28 22:42:30 +01:00
first_value = LIST_FIRST_VALUE
else:
second_value = LIST_SECOND_VALUE[1]
2017-10-22 09:48:08 +02:00
else:
2019-02-23 19:06:23 +01:00
if not isfollower:
2017-11-28 22:42:30 +01:00
first_value = SUBLIST_FIRST_VALUE
else:
second_value = SUBLIST_SECOND_VALUE[1]
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
# get value after set value without permissive
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-02-23 19:06:23 +01:00
if isfollower:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).value.get() == empty_value
assert cfg_.option(pathread, 1).value.get() == second_value
assert cfg_.forcepermissive.option(pathread, 0).value.get() == empty_value
assert cfg_.forcepermissive.option(pathread, 1).value.get() == second_value
2018-08-18 16:11:25 +02:00
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).value.get()")
assert cfg_.forcepermissive.option(pathread, 0).value.get() == empty_value
2018-08-18 16:11:25 +02:00
if set_permissive:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread, 1).value.get() == second_value
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread, 1).value.get() == empty_value
2017-11-28 22:42:30 +01:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).value.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread, 0).value.get()")
2017-10-22 09:48:08 +02:00
else:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).value.get() == first_value
assert cfg_.forcepermissive.option(pathread).value.get() == first_value
2018-08-18 16:11:25 +02:00
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).value.get()")
2018-08-18 16:11:25 +02:00
if set_permissive:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread).value.get() == first_value
else:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread).value.get() == empty_value
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).value.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread).value.get()")
def _check_owner(cfg, pathread, conf, kwargs, owner, permissive_owner):
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2019-02-23 19:06:23 +01:00
if not isfollower:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).owner.get() == owner
assert cfg_.forcepermissive.option(pathread).owner.get() == owner
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).owner.get()")
assert cfg_.forcepermissive.option(pathread).owner.get() == permissive_owner
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).owner.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread).owner.get()")
else:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).owner.get() == 'default'
assert cfg_.forcepermissive.option(pathread, 0).owner.get() == 'default'
assert cfg_.option(pathread, 1).owner.get() == owner
assert cfg_.forcepermissive.option(pathread, 1).owner.get() == owner
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).owner.get()")
raises(PropertiesOptionError, "cfg_.option(pathread, 1).owner.get()")
assert cfg_.forcepermissive.option(pathread, 0).owner.get() == 'default'
assert cfg_.forcepermissive.option(pathread, 1).owner.get() == permissive_owner
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).owner.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread, 0).owner.get()")
@autocheck
def autocheck_option_multi(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 08:01:29 +01:00
if not kwargs.get('permissive_od', False):
cfg.option(pathread).option.ismulti()
cfg.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
cfg.option(pathread).option.isleader()
cfg.option(pathread).option.isfollower()
else:
raises(PropertiesOptionError, "cfg.option(pathread).option.ismulti()")
raises(PropertiesOptionError, "cfg.option(pathread).option.issubmulti()")
2019-02-23 19:06:23 +01:00
raises(PropertiesOptionError, "cfg.option(pathread).option.isleader()")
raises(PropertiesOptionError, "cfg.option(pathread).option.isfollower()")
2019-02-23 08:01:29 +01:00
cfg.forcepermissive.option(pathread).option.ismulti()
cfg.forcepermissive.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
cfg.forcepermissive.option(pathread).option.isleader()
cfg.forcepermissive.option(pathread).option.isfollower()
2019-02-23 08:01:29 +01:00
@autocheck
def autocheck_default_owner(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
"""check different value of owner when any value is set to this option
"""
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
# check if owner is a string "default" and 'isdefault'
def do(conf):
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2019-02-23 19:06:23 +01:00
if not isfollower:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).owner.get() == 'default'
assert cfg_.forcepermissive.option(pathread).owner.get() == 'default'
#
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).owner.isdefault()
assert cfg_.forcepermissive.option(pathread).owner.isdefault()
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).owner.get()")
assert cfg_.forcepermissive.option(pathread).owner.get() == 'default'
#
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).owner.isdefault()")
assert cfg_.forcepermissive.option(pathread).owner.isdefault()
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).owner.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread).owner.get()")
#
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).owner.isdefault()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread).owner.isdefault()")
#
2019-03-02 19:30:21 +01:00
assert cfg_.unrestraint.option(pathread).owner.get() == 'default'
assert cfg_.unrestraint.option(pathread).owner.isdefault()
else:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).owner.get() == 'default'
assert cfg_.forcepermissive.option(pathread, 0).owner.get() == 'default'
#
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).owner.isdefault()
assert cfg_.forcepermissive.option(pathread, 0).owner.isdefault()
elif not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).owner.get()")
assert cfg_.forcepermissive.option(pathread, 0).owner.get() == 'default'
#
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).owner.isdefault()")
assert cfg_.forcepermissive.option(pathread, 0).owner.isdefault()
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).owner.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread, 0).owner.get()")
#
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).owner.isdefault()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread, 0).owner.isdefault()")
assert cfg_.unrestraint.option(pathread, 0).owner.get() == 'default'
assert cfg_.unrestraint.option(pathread, 0).owner.isdefault()
do(confread)
if confread != confwrite:
do(confwrite)
@autocheck
def autocheck_default_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
_autocheck_default_value(cfg, pathread, confread, **kwargs)
if confread != confwrite:
_autocheck_default_value(cfg, pathread, confwrite, **kwargs)
@autocheck
def autocheck_set_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
_set_value(cfg, pathwrite, confwrite, **kwargs)
@autocheck
def autocheck_get_value_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
multi = cfg.unrestraint.option(pathread).option.ismulti()
submulti_ = cfg.unrestraint.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
_set_value(cfg, pathwrite, confwrite, **kwargs)
empty_value = kwargs['default']
if not multi:
first_value = FIRST_VALUE
elif submulti_ is False:
first_value = LIST_FIRST_VALUE
else:
first_value = SUBLIST_FIRST_VALUE
def do(conf):
# get value after set value without permissive
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2019-02-23 19:06:23 +01:00
if isfollower:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).value.get() == empty_value
assert cfg_.forcepermissive.option(pathread, 0).value.get() == empty_value
if submulti_:
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 1).value.get() == SUBLIST_SECOND_VALUE[1]
assert cfg_.forcepermissive.option(pathread, 1).value.get() == SUBLIST_SECOND_VALUE[1]
2018-08-18 16:11:25 +02:00
else:
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 1).value.get() == LIST_SECOND_VALUE[1]
assert cfg_.forcepermissive.option(pathread, 1).value.get() == LIST_SECOND_VALUE[1]
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "assert cfg_.option(pathread, 0).value.get()")
raises(PropertiesOptionError, "assert cfg_.option(pathread, 1).value.get()")
assert cfg_.forcepermissive.option(pathread, 0).value.get() == empty_value
if submulti_:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread, 1).value.get() == SUBLIST_SECOND_VALUE[1]
else:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread, 1).value.get() == LIST_SECOND_VALUE[1]
2017-11-28 22:42:30 +01:00
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "assert cfg_.option(pathread, 0).value.get()")
raises(PropertiesOptionError, "assert cfg_.option(pathread, 1).value.get()")
raises(PropertiesOptionError, "assert cfg_.forcepermissive.option(pathread, 0).value.get()")
raises(PropertiesOptionError, "assert cfg_.forcepermissive.option(pathread, 1).value.get()")
else:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
with warnings.catch_warnings(record=True) as w:
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).value.get() == first_value
assert cfg_.forcepermissive.option(pathread).value.get() == first_value
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).value.get()")
assert cfg_.forcepermissive.option(pathread).value.get() == first_value
else:
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).value.get()")
raises(PropertiesOptionError, "cfg_.forcepermissive.option(pathread).value.get()")
with warnings.catch_warnings(record=True) as w:
do(confread)
if confread != confwrite:
do(confwrite)
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_get_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, set_permissive=False, **kwargs)
_autocheck_get_value(cfg, pathread, confread, set_permissive=False, **kwargs)
2017-12-04 20:05:36 +01:00
if pathread.endswith('val1'):
val2_path = pathread.replace('val1', 'val2')
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, val2_path, confread, **kwargs)
2017-11-23 16:56:14 +01:00
if confread != confwrite:
2018-08-14 23:07:07 +02:00
_autocheck_get_value(cfg, pathread, confwrite, set_permissive=False, **kwargs)
2017-12-04 20:05:36 +01:00
if pathread.endswith('val1'):
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, val2_path, confwrite, **kwargs)
2017-11-18 14:51:00 +01:00
@autocheck
2019-02-23 19:06:23 +01:00
def autocheck_value_follower(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
if not isfollower:
return
if kwargs.get('propertyerror', False):
return
2017-11-18 14:51:00 +01:00
2018-08-14 23:07:07 +02:00
submulti_ = cfg.forcepermissive.option(pathread).option.issubmulti()
2017-11-28 22:42:30 +01:00
empty_value = kwargs['default']
2017-11-18 14:51:00 +01:00
2017-11-23 16:56:14 +01:00
def do(conf):
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
length = cfg_.option(pathread).value.len()
assert cfg_.forcepermissive.option(pathread).value.len() == length
2017-11-23 16:56:14 +01:00
assert length == 2
do(confread)
if confread != confwrite:
do(confwrite)
length = 2
value = []
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
for idx in range(length):
value.append(cfg.forcepermissive.option(pathread, idx).value.get())
2017-11-18 14:51:00 +01:00
2017-11-28 22:42:30 +01:00
assert value == [empty_value, empty_value]
2019-02-23 19:06:23 +01:00
# cannot access to a follower with index too high
if submulti_ is False:
value = LIST_FIRST_VALUE[0]
else:
value = SUBLIST_FIRST_VALUE[0]
2017-11-18 14:51:00 +01:00
2019-02-23 19:06:23 +01:00
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).value.get()")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).value.set(value)")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).value.reset()")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).owner.get()")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).owner.isdefault()")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).property.get()")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).owner.set('new_user')")
raises(LeadershipError, "cfg.forcepermissive.option(pathread, length).property.add('prop')")
2017-10-22 09:48:08 +02:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_reset_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
# check if is a multi, a leader or a follower
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathread).option.ismulti()
submulti_ = cfg.unrestraint.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2017-10-22 09:48:08 +02:00
# set default value (different if value is multi or not)
if not multi:
first_value = FIRST_VALUE
second_value = SECOND_VALUE
elif submulti_ is False:
first_value = LIST_FIRST_VALUE
second_value = LIST_SECOND_VALUE
2017-10-22 09:48:08 +02:00
else:
first_value = SUBLIST_FIRST_VALUE
second_value = SUBLIST_SECOND_VALUE
2017-11-28 22:42:30 +01:00
empty_value = kwargs['default']
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2017-10-22 09:48:08 +02:00
# reset value without permissive
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.config(confwrite)
else:
cfg_ = cfg
2019-02-23 19:06:23 +01:00
if not isfollower:
2018-08-18 16:11:25 +02:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).value.reset()
2018-08-18 16:11:25 +02:00
#else:
#FIXME raises(PropertiesOptionError, "cfg.config(confwrite).option(pathwrite).value.reset()")
else:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite, 0).value.reset()
2018-08-18 16:11:25 +02:00
#else:
#FIXME raises(PropertiesOptionError, "cfg.config(confwrite).option(pathwrite, 0).value.reset()")
2017-10-22 09:48:08 +02:00
# get value after reset value without permissive
2017-11-23 16:56:14 +01:00
def do(conf):
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2019-02-23 19:06:23 +01:00
if isfollower:
2017-11-23 16:56:14 +01:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).value.get() == empty_value
assert cfg_.option(pathread, 1).value.get() == second_value[1]
2017-11-23 16:56:14 +01:00
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread, 0).value.get()")
assert cfg_.forcepermissive.option(pathread, 0).value.get() == empty_value
assert cfg_.forcepermissive.option(pathread, 1).value.get() == second_value[1]
2017-11-23 16:56:14 +01:00
else:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).value.get() == empty_value
2017-11-23 16:56:14 +01:00
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(PropertiesOptionError, "cfg_.option(pathread).value.get()")
assert cfg_.forcepermissive.option(pathread).value.get() == first_value
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
do(confread)
if confread != confwrite:
do(confwrite)
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
2017-11-28 22:42:30 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_append_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
isleader = cfg.unrestraint.option(pathread).option.isleader()
2018-08-14 23:07:07 +02:00
submulti_ = cfg.unrestraint.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
if not isleader:
2017-11-28 22:42:30 +01:00
return
2019-03-02 19:30:21 +01:00
if confread is not None:
cfg_ = cfg.config(confread)
else:
cfg_ = cfg
if confwrite is not None:
cfg2_ = cfg.config(confwrite)
else:
cfg2_ = cfg
2017-11-28 22:42:30 +01:00
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
if not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
leader_value = cfg_.forcepermissive.option(pathread).value.get()
2019-02-23 19:06:23 +01:00
len_value = len(leader_value)
leader_value.append(undefined)
2019-03-02 19:30:21 +01:00
assert len(cfg_.forcepermissive.option(pathread).value.get()) == len_value
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-03-02 19:30:21 +01:00
cfg2_.forcepermissive.option(pathread).value.set(leader_value)
new_leader_value = cfg_.forcepermissive.option(pathread).value.get()
2019-02-23 19:06:23 +01:00
len_new = len(new_leader_value)
2018-08-18 16:11:25 +02:00
assert len_value + 1 == len_new
2019-02-23 19:06:23 +01:00
assert new_leader_value[-1] == kwargs['default_multi']
follower_path = pathread.rsplit('.', 1)[0]
if follower_path.endswith('val1') or follower_path.endswith('val2'):
follower_path += '.third' + follower_path[-4:]
2018-08-18 16:11:25 +02:00
else:
2019-02-23 19:06:23 +01:00
follower_path += '.third'
2018-08-18 16:11:25 +02:00
for idx in range(len_new):
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(follower_path, idx).value.get() == kwargs['default_multi']
2018-08-18 16:11:25 +02:00
#
if not submulti_:
value = 'value'
else:
value = ['value']
2019-02-23 19:06:23 +01:00
leader_value.append(value)
2019-03-02 19:30:21 +01:00
assert len(cfg_.forcepermissive.option(pathread).value.get()) == len(new_leader_value)
cfg2_.forcepermissive.option(pathread).value.set(leader_value)
assert cfg_.forcepermissive.option(pathread).value.get()[-1] == value
2017-11-28 22:42:30 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_pop_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
isleader = cfg.unrestraint.option(pathread).option.isleader()
2018-08-14 23:07:07 +02:00
submulti_ = cfg.unrestraint.option(pathread).option.issubmulti()
2019-02-23 19:06:23 +01:00
if not isleader:
2017-11-28 22:42:30 +01:00
return
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.config(confwrite)
else:
cfg_ = cfg
if confread is not None:
cfg2_ = cfg.config(confread)
else:
cfg2_ = cfg
2017-11-28 22:42:30 +01:00
if not kwargs.get('propertyerror', False):
if not submulti_:
values = ['value1', 'value2', 'value3', 'value4']
2019-02-23 19:06:23 +01:00
follower_value = 'follower'
2017-11-28 22:42:30 +01:00
else:
values = [['value1'], ['value2'], ['value3'], ['value4']]
2019-02-23 19:06:23 +01:00
follower_value = ['follower']
followers = [kwargs['default_multi'], follower_value, kwargs['default_multi'], kwargs['default_multi']]
a_follower = pathwrite.rsplit('.', 1)[0]
if a_follower.endswith('val1') or a_follower.endswith('val2'):
a_follower += '.third' + a_follower[-4:]
2017-12-02 22:53:57 +01:00
else:
2019-02-23 19:06:23 +01:00
a_follower += '.third'
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathread).value.set(values)
cfg_.forcepermissive.option(a_follower, 1).value.set(follower_value)
cfg2_.forcepermissive.option(a_follower, 0).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 0).owner.isdefault() is True
cfg2_.forcepermissive.option(a_follower, 1).value.get() == follower_value
assert cfg2_.forcepermissive.option(a_follower, 1).owner.isdefault() is False
cfg2_.forcepermissive.option(a_follower, 2).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 2).owner.isdefault() is True
cfg2_.forcepermissive.option(a_follower, 3).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 3).owner.isdefault() is True
2018-08-18 16:11:25 +02:00
#
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathread).value.pop(3)
cfg2_.forcepermissive.option(a_follower, 0).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 0).owner.isdefault() is True
cfg2_.forcepermissive.option(a_follower, 1).value.get() == follower_value
assert cfg2_.forcepermissive.option(a_follower, 1).owner.isdefault() is False
cfg2_.forcepermissive.option(a_follower, 2).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 2).owner.isdefault() is True
2018-08-18 16:11:25 +02:00
#
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathread).value.pop(0)
cfg2_.forcepermissive.option(a_follower, 0).value.get() == follower_value
assert cfg2_.forcepermissive.option(a_follower, 0).owner.isdefault() is False
cfg2_.forcepermissive.option(a_follower, 1).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 1).owner.isdefault() is True
2018-08-18 16:11:25 +02:00
#
2019-03-02 19:30:21 +01:00
cfg_.forcepermissive.option(pathread).value.pop(0)
cfg2_.forcepermissive.option(a_follower, 0).value.get() == kwargs['default_multi']
assert cfg2_.forcepermissive.option(a_follower, 0).owner.isdefault() is True
2017-11-28 22:42:30 +01:00
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_reset_value_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
# check if is a multi, a leader or a follower
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2017-10-22 09:48:08 +02:00
# reset value with permissive
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-02-23 19:06:23 +01:00
if not isfollower:
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.forcepermissive.config(confwrite)
else:
cfg_ = cfg.forcepermissive
cfg_.option(pathwrite).value.reset()
2018-08-18 16:11:25 +02:00
else:
cfg.forcepermissive.option(pathwrite, 1).value.reset()
elif kwargs.get('permissive', False):
2019-02-23 19:06:23 +01:00
if not isfollower:
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.forcepermissive.config(confwrite)
else:
cfg_ = cfg.forcepermissive
cfg_.option(pathwrite).value.reset()
2018-08-18 16:11:25 +02:00
else:
cfg.forcepermissive.option(pathwrite, 1).value.reset()
#FIXME else:
2019-02-23 19:06:23 +01:00
# if not isfollower:
2018-08-18 16:11:25 +02:00
# raises(PropertiesOptionError, "cfg.forcepermissive.config(confwrite).option(pathwrite).value.reset()")
# else:
# raises(PropertiesOptionError, "cfg.forcepermissive.option(pathwrite, 1).value.reset()")
_autocheck_default_value(cfg, pathread, confread, **kwargs)
if confread != confwrite:
_autocheck_default_value(cfg, pathwrite, confwrite, **kwargs)
2017-10-22 09:48:08 +02:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_display(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-10-25 08:46:22 +02:00
"""re set value
2017-10-22 09:48:08 +02:00
"""
2017-11-28 22:42:30 +01:00
if kwargs['callback']:
return
2017-11-23 16:56:14 +01:00
make_dict = kwargs['make_dict']
make_dict_value = kwargs['make_dict_value']
2019-03-02 19:30:21 +01:00
if confread is not None:
cfg_ = cfg.config(confread)
else:
cfg_ = cfg
if confwrite is not None:
cfg2_ = cfg.config(confwrite)
else:
cfg2_ = cfg
assert cfg_.value.dict() == make_dict
2017-11-23 16:56:14 +01:00
if confread != confwrite:
2019-03-02 19:30:21 +01:00
assert(cfg2_.value.dict()) == make_dict
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2019-03-02 19:30:21 +01:00
assert cfg_.value.dict() == make_dict_value
2017-11-23 16:56:14 +01:00
if confread != confwrite:
2019-03-02 19:30:21 +01:00
assert(cfg2_.value.dict()) == make_dict_value
2017-10-22 09:48:08 +02:00
2017-11-23 16:56:14 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_property(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-11-18 14:51:00 +01:00
"""get property from path
2017-11-13 22:45:53 +01:00
"""
2019-02-23 19:06:23 +01:00
# check if is a multi or a follower
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathread).option.ismulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2017-11-18 14:51:00 +01:00
2019-02-23 19:06:23 +01:00
default_props, properties = _getproperties(multi, isfollower, kwargs)
2017-11-18 14:51:00 +01:00
if confread == confwrite:
_check_properties(cfg, mcfg, pathread, confread, kwargs, default_props, default_props)
else:
2018-09-07 06:14:52 +02:00
_check_properties(cfg, mcfg, pathread, confwrite, kwargs, default_props, default_props)
2017-11-18 14:51:00 +01:00
# set properties without permissive
2018-03-31 21:06:19 +02:00
for prop in properties:
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.unrestraint.config(confwrite)
else:
cfg_ = cfg.unrestraint
cfg_.option(pathwrite).property.add(prop)
if confread == confwrite:
_check_properties(cfg, mcfg, pathread, confread, kwargs, properties, properties)
2017-10-22 09:48:08 +02:00
else:
_check_properties(cfg, mcfg, pathread, confwrite, kwargs, properties, properties)
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_property_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
_property_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs)
2017-10-22 09:48:08 +02:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_reset_property(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-10-22 09:48:08 +02:00
"""check properties after set with permissive
"""
2019-02-23 19:06:23 +01:00
# check if is a multi or a follower
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathread).option.ismulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
default_props, properties = _getproperties(multi, isfollower, kwargs)
2017-10-22 09:48:08 +02:00
2018-09-07 06:14:52 +02:00
_property_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs)
2017-10-22 09:48:08 +02:00
# reset properties without permissive
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.unrestraint.config(confwrite)
else:
cfg_ = cfg.unrestraint
cfg_.option(pathwrite).property.reset()
2017-10-22 09:48:08 +02:00
if confread == confwrite:
_check_properties(cfg, mcfg, pathread, confread, kwargs, default_props, default_props)
else:
2018-09-07 06:14:52 +02:00
_check_properties(cfg, mcfg, pathread, confwrite, kwargs, default_props, default_props)
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_reset_property_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
# check if is a multi or a follower
2018-08-14 23:07:07 +02:00
multi = cfg.unrestraint.option(pathread).option.ismulti()
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
default_props, properties = _getproperties(multi, isfollower, kwargs)
2017-11-18 14:51:00 +01:00
2018-09-07 06:14:52 +02:00
_property_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs)
2017-10-22 09:48:08 +02:00
2018-03-31 21:06:19 +02:00
for prop in properties:
2018-08-14 23:07:07 +02:00
cfg.unrestraint.option(pathwrite).property.add(prop)
cfg.unrestraint.option(pathwrite).property.reset()
2017-10-22 09:48:08 +02:00
2018-09-07 06:14:52 +02:00
_check_properties(cfg, mcfg, pathread, confwrite, kwargs, default_props, default_props)
2017-10-22 09:48:08 +02:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_context_owner(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2018-08-14 23:07:07 +02:00
owner = cfg.owner.get()
2018-03-31 21:06:19 +02:00
assert owner == kwargs['owner']
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_owner_with_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-11-18 14:51:00 +01:00
"""value is now changed, check owner in this case
"""
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
_check_owner(cfg, pathread, confwrite, kwargs, kwargs['owner'], kwargs['owner'])
2017-11-23 16:56:14 +01:00
if confread != confwrite:
2018-08-14 23:07:07 +02:00
_check_owner(cfg, pathread, confread, kwargs, kwargs['owner'], kwargs['owner'])
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_default_owner_with_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2017-11-18 14:51:00 +01:00
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.config(confread)
cfg2_ = cfg.config(confwrite)
else:
cfg_ = cfg
cfg2_ = cfg
2017-10-22 09:48:08 +02:00
# test if is default owner without permissive
2019-02-23 19:06:23 +01:00
if not isfollower:
2017-11-28 22:42:30 +01:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).owner.isdefault() is False
2017-11-28 22:42:30 +01:00
if confwrite != confread:
2019-03-02 19:30:21 +01:00
assert cfg2_.option(pathread).owner.isdefault() is False
2018-03-31 21:06:19 +02:00
#FIXME else:
2018-08-14 23:07:07 +02:00
# raises(PropertiesOptionError, "cfg.config(confwrite).option(pathread).owner.isdefault()")
# raises(PropertiesOptionError, "cfg.config(confread).option(pathread).owner.isdefault()")
2017-10-22 09:48:08 +02:00
else:
2017-11-28 22:42:30 +01:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert cfg2_.option(pathread, 0).owner.isdefault() is True
assert cfg2_.option(pathread, 1).owner.isdefault() is False
2017-11-28 22:42:30 +01:00
if confwrite != confread:
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread, 0).owner.isdefault() is True
assert cfg_.option(pathread, 1).owner.isdefault() is False
2018-03-31 21:06:19 +02:00
#FIXME else:
2018-08-14 23:07:07 +02:00
# raises(PropertiesOptionError, "cfg.config(confwrite).option(pathread, 0).owner.isdefault()")
# raises(PropertiesOptionError, "cfg.config(confread).option(pathread, 0).owner.isdefault()")
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_default_owner_with_value_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
# check if is a isfollower
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2017-11-18 14:51:00 +01:00
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2017-11-18 14:51:00 +01:00
2017-11-23 16:56:14 +01:00
def do(conf):
# test if is default owner with permissive
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2017-11-23 16:56:14 +01:00
if not kwargs.get('propertyerror', False):
2019-02-23 19:06:23 +01:00
if not isfollower:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread).owner.isdefault() is False
2017-11-23 16:56:14 +01:00
else:
2019-03-02 19:30:21 +01:00
assert cfg_.forcepermissive.option(pathread, 0).owner.isdefault() is True
assert cfg_.forcepermissive.option(pathread, 1).owner.isdefault() is False
2018-03-31 21:06:19 +02:00
#FIXME else:
# raises(PropertiesOptionError, "cfg.config(conf).forcepermissive.option(pathread).owner.isdefault()")
2017-11-23 16:56:14 +01:00
do(confwrite)
if confwrite != confread:
do(confread)
2017-10-22 09:48:08 +02:00
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_set_owner_no_value(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.forcepermissive.config(confwrite)
else:
cfg_ = cfg.forcepermissive
2017-11-18 14:51:00 +01:00
if not kwargs.get('propertyerror', False):
2019-02-23 19:06:23 +01:00
if not isfollower:
2019-03-02 19:30:21 +01:00
raises(ConfigError, "cfg_.option(pathwrite).owner.set('new_user')")
2017-11-18 14:51:00 +01:00
else:
2019-03-02 19:30:21 +01:00
raises(ConfigError, "cfg_.option(pathwrite, 1).owner.set('new_user')")
2017-11-18 14:51:00 +01:00
2017-10-22 09:48:08 +02:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_set_owner(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-10-22 09:48:08 +02:00
# test set owner without permissive
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2017-11-18 14:51:00 +01:00
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.config(confwrite)
else:
cfg_ = cfg
2017-10-22 09:48:08 +02:00
# set owner without permissive
2019-02-23 19:06:23 +01:00
if not isfollower:
2017-11-18 14:51:00 +01:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).owner.set('new_user')
raises(ValueError, "cfg_.option(pathwrite).owner.set('default')")
raises(ValueError, "cfg_.option(pathwrite).owner.set('forced')")
2018-03-31 21:06:19 +02:00
#FIXME else:
2018-08-14 23:07:07 +02:00
# raises(PropertiesOptionError, "cfg.config(confwrite).option(pathwrite).owner.set('new_user')")
2017-11-18 14:51:00 +01:00
else:
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2018-08-14 23:07:07 +02:00
cfg.option(pathwrite, 1).owner.set('new_user')
2018-03-31 21:06:19 +02:00
#FIXME else:
2018-08-14 23:07:07 +02:00
# raises(PropertiesOptionError, "cfg.option(pathwrite, 1).owner.set('new_user')")
2017-10-22 09:48:08 +02:00
2018-08-14 23:07:07 +02:00
_check_owner(cfg, pathread, confwrite, kwargs, owners.new_user, kwargs['owner'])
2017-11-23 16:56:14 +01:00
if confwrite != confread:
2018-08-14 23:07:07 +02:00
_check_owner(cfg, pathread, confread, kwargs, owners.new_user, owners.meta)
2017-11-18 14:51:00 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_set_owner_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2019-02-23 19:06:23 +01:00
isfollower = cfg.unrestraint.option(pathread).option.isfollower()
2017-11-18 14:51:00 +01:00
2018-08-14 23:07:07 +02:00
_set_value(cfg, pathwrite, confwrite, **kwargs)
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.forcepermissive.config(confwrite)
else:
cfg_ = cfg.forcepermissive
2017-10-22 09:48:08 +02:00
# set owner with permissive
if not kwargs.get('propertyerror', False):
2019-02-23 19:06:23 +01:00
if not isfollower:
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).owner.set('new_user1')
2017-10-22 09:48:08 +02:00
else:
2018-08-14 23:07:07 +02:00
cfg.forcepermissive.option(pathwrite, 1).owner.set('new_user1')
2018-03-31 21:06:19 +02:00
#FIXME else:
2019-02-23 19:06:23 +01:00
# if not isfollower:
2018-03-19 08:33:53 +01:00
# raises(PropertiesOptionError,
2018-08-14 23:07:07 +02:00
# "cfg.forcepermissive.config(confwrite).option(pathwrite).owner.set('new_user1')")
2018-03-19 08:33:53 +01:00
# else:
# raises(PropertiesOptionError,
2018-08-14 23:07:07 +02:00
# "cfg.forcepermissive.option(pathwrite, 1).owner.set('new_user1')")
2017-10-22 09:48:08 +02:00
2018-08-14 23:07:07 +02:00
_check_owner(cfg, pathread, confwrite, kwargs, 'new_user1', 'new_user1')
2017-11-23 16:56:14 +01:00
if confwrite != confread:
2018-08-14 23:07:07 +02:00
_check_owner(cfg, pathread, confread, kwargs, 'new_user1', 'new_user1')
2018-03-31 21:06:19 +02:00
2018-04-05 21:20:39 +02:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_option(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2018-04-05 21:20:39 +02:00
expected_name = pathread.split('.')[-1]
2019-02-23 08:01:29 +01:00
if not kwargs.get('permissive_od', False):
2018-08-14 23:07:07 +02:00
current_name = cfg.option(pathread).option.name()
assert current_name == cfg.forcepermissive.option(pathread).option.name()
assert current_name == cfg.unrestraint.option(pathread).option.name()
doc = cfg.option(pathread).option.doc()
assert doc == cfg.forcepermissive.option(pathread).option.doc()
assert doc == cfg.unrestraint.option(pathread).option.doc()
2018-04-05 21:20:39 +02:00
elif not kwargs.get('propertyerror', False):
2018-08-14 23:07:07 +02:00
raises(PropertiesOptionError, "cfg.option(pathread).option.name()")
current_name = cfg.forcepermissive.option(pathread).option.name()
assert current_name == cfg.unrestraint.option(pathread).option.name()
raises(PropertiesOptionError, "cfg.option(pathread).option.doc()")
doc = cfg.forcepermissive.option(pathread).option.doc()
assert doc == cfg.unrestraint.option(pathread).option.doc()
2018-04-05 21:20:39 +02:00
else:
2018-08-14 23:07:07 +02:00
raises(PropertiesOptionError, "cfg.option(pathread).option.name()")
raises(PropertiesOptionError, "cfg.forcepermissive.option(pathread).option.name()")
current_name = cfg.unrestraint.option(pathread).option.name()
raises(PropertiesOptionError, "cfg.option(pathread).option.doc()")
raises(PropertiesOptionError, "cfg.forcepermissive.option(pathread).option.doc()")
doc = cfg.unrestraint.option(pathread).option.doc()
2018-04-05 21:20:39 +02:00
assert current_name == expected_name
if expected_name.endswith('val1') or expected_name.endswith('val2'):
expected_name = expected_name[:-4]
if kwargs['symlink']:
assert doc == "{}'s option link".format(expected_name)
else:
assert doc == "{}'s option".format(expected_name)
2017-10-25 08:46:22 +02:00
2017-11-29 07:14:29 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_permissive(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
"""test permissive for hidden and disabled value
"""
2017-11-18 14:51:00 +01:00
# no permissive before
2019-03-02 19:30:21 +01:00
if confwrite is not None:
cfg_ = cfg.unrestraint.config(confwrite)
else:
cfg_ = cfg.unrestraint
if confread is not None:
cfg2_ = cfg.config(confread).unrestraint
else:
cfg2_ = cfg.unrestraint
assert cfg_.option(pathread).permissive.get() == frozenset()
2017-11-18 14:51:00 +01:00
if kwargs.get('permissive_od', False):
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread.rsplit('.', 1)[0]).permissive.get() == frozenset()
# cannot access to hidden value without forcepermissive
# and to disabled value (with forcepermissive too)
2017-11-23 16:56:14 +01:00
#
# with meta confread == confwrite
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **kwargs)
2017-11-18 14:51:00 +01:00
# set permissive
2019-03-02 19:30:21 +01:00
cfg_.option(pathwrite).permissive.set(frozenset(['disabled']))
2017-11-29 07:14:29 +01:00
callback = kwargs['callback']
if callback:
2017-12-04 20:05:36 +01:00
if pathread.endswith('val1') or pathread.endswith('val2'):
call_path = pathread[:-4] + 'call' + pathread[-4:]
2017-11-29 07:14:29 +01:00
else:
2017-12-04 20:05:36 +01:00
call_path = pathread + 'call'
2019-03-02 19:30:21 +01:00
cfg_.option(call_path).permissive.set(frozenset(['disabled']))
# have permissive?
2019-03-02 19:30:21 +01:00
assert cfg_.option(pathread).permissive.get() == frozenset(['disabled'])
2018-09-07 06:14:52 +02:00
#if confwrite != confread:
# assert cfg.config(confread).unrestraint.option(pathread).permissive.get() == frozenset(['disabled'])
2017-11-18 14:51:00 +01:00
# can access to disabled value
ckwargs = copy(kwargs)
ckwargs['propertyerror'] = False
_autocheck_default_value(cfg, pathread, confwrite, **ckwargs)
2017-11-18 14:51:00 +01:00
2019-03-02 19:30:21 +01:00
cfg2_.option(pathwrite).permissive.set(frozenset(['disabled', 'hidden']))
2017-11-29 07:14:29 +01:00
if kwargs['callback']:
2019-03-02 19:30:21 +01:00
cfg2_.option(call_path).permissive.set(frozenset(['disabled', 'hidden']))
2017-11-18 14:51:00 +01:00
# can access to all value except when optiondescript have hidden
if not ckwargs.get('permissive_od', False):
ckwargs['permissive'] = False
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **ckwargs)
2017-11-18 14:51:00 +01:00
if ckwargs.get('permissive_od', False):
# set permissive to OptionDescription
2019-03-02 19:30:21 +01:00
cfg2_.option(pathwrite.rsplit('.', 1)[0]).permissive.set(frozenset(['disabled',
2017-11-23 16:56:14 +01:00
'hidden']))
2017-11-18 14:51:00 +01:00
ckwargs['permissive'] = False
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **ckwargs)
2018-09-07 06:14:52 +02:00
#if confread != confwrite:
# _autocheck_default_value(cfg, pathread, confwrite, **ckwargs)
2017-11-18 14:51:00 +01:00
# only hidden
2019-03-02 19:30:21 +01:00
cfg2_.option(pathwrite).permissive.set(frozenset(['hidden']))
2017-11-29 07:14:29 +01:00
if callback:
2019-03-02 19:30:21 +01:00
cfg2_.option(call_path).permissive.set(frozenset(['hidden']))
2017-11-18 14:51:00 +01:00
if ckwargs.get('permissive_od', False):
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **ckwargs)
2019-03-02 19:30:21 +01:00
cfg2_.option(pathwrite.rsplit('.', 1)[0]).permissive.set(frozenset(['hidden']))
2017-11-18 14:51:00 +01:00
ckwargs = copy(kwargs)
ckwargs['permissive'] = False
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **ckwargs)
2017-11-18 14:51:00 +01:00
# no permissive
2019-03-02 19:30:21 +01:00
cfg2_.option(pathwrite).permissive.set(frozenset())
2017-11-29 07:14:29 +01:00
if callback:
2019-03-02 19:30:21 +01:00
cfg2_.option(call_path).permissive.set(frozenset())
2017-11-18 14:51:00 +01:00
if ckwargs.get('permissive_od', False):
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **ckwargs)
2019-03-02 19:30:21 +01:00
cfg2_.option(pathwrite.rsplit('.', 1)[0]).permissive.set(frozenset())
2018-08-14 23:07:07 +02:00
_autocheck_default_value(cfg, pathread, confread, **kwargs)
2017-11-18 14:51:00 +01:00
2017-11-23 16:56:14 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_option_get(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-12-04 20:05:36 +01:00
if '.' in pathread:
name = pathread.rsplit('.', 1)[1]
2017-11-23 16:56:14 +01:00
else:
2017-12-04 20:05:36 +01:00
name = pathread
2018-08-14 23:07:07 +02:00
assert cfg.unrestraint.option(pathread).option.name() == name
2017-11-23 16:56:14 +01:00
2017-11-18 14:51:00 +01:00
2017-11-23 16:56:14 +01:00
@autocheck
2018-09-07 06:14:52 +02:00
def autocheck_find(cfg, mcfg, pathread, pathwrite, confread, confwrite, **kwargs):
2017-11-23 16:56:14 +01:00
def _getoption(opt):
2018-04-10 12:33:51 +02:00
opt = opt.option.get()
2017-11-23 16:56:14 +01:00
if opt.impl_is_dynsymlinkoption():
opt = opt.opt
2017-11-23 16:56:14 +01:00
return opt
def _getoptions(opts):
nopts = []
for opt in opts:
nopts.append(_getoption(opt))
return nopts
2017-12-04 20:05:36 +01:00
if '.' in pathread:
name = pathread.rsplit('.', 1)[1]
2017-11-23 16:56:14 +01:00
else:
2017-12-04 20:05:36 +01:00
name = pathread
2018-08-14 23:07:07 +02:00
option = _getoption(cfg.unrestraint.option(pathread))
2017-11-23 16:56:14 +01:00
def do(conf):
2019-03-02 19:30:21 +01:00
if conf is not None:
cfg_ = cfg.config(conf)
else:
cfg_ = cfg
2017-11-23 16:56:14 +01:00
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
2019-03-02 19:30:21 +01:00
assert option == _getoption(cfg_.option.find(name, first=True))
assert option == _getoption(cfg_.forcepermissive.option.find(name, first=True))
2017-11-23 16:56:14 +01:00
elif kwargs.get('permissive', False):
2019-03-02 19:30:21 +01:00
raises(AttributeError, "cfg_.option.find(name, first=True)")
assert option == _getoption(cfg_.forcepermissive.option.find(name, first=True))
2017-11-23 16:56:14 +01:00
else:
2019-03-02 19:30:21 +01:00
raises(AttributeError, "cfg_.option.find(name, first=True)")
raises(AttributeError, "cfg_.forcepermissive.option.find(name, first=True)")
assert option == _getoption(cfg_.unrestraint.option.find(name, first=True))
assert [option] == _getoptions(cfg_.unrestraint.option.find(name))
2017-11-23 16:56:14 +01:00
do(confread)
if confread != confwrite:
do(confwrite)
2018-04-07 20:15:19 +02:00
def check_all(cfg, paths_, path, meta, multi, default, default_multi, require, consistency, callback, symlink, weakrefs, **kwargs):
2017-11-23 16:56:14 +01:00
def _build_make_dict():
dico = {}
dico_value = {}
if multi is False:
value = FIRST_VALUE
elif multi is True:
value = LIST_FIRST_VALUE
else:
value = SUBLIST_FIRST_VALUE
2017-11-28 22:42:30 +01:00
if not default or multi is submulti:
2017-11-23 16:56:14 +01:00
if not multi:
default_value = None
else:
default_value = []
else:
default_value = value
2017-11-28 22:42:30 +01:00
kwargs['default'] = default_value
2017-11-23 16:56:14 +01:00
is_dyn = False
2019-02-23 19:06:23 +01:00
is_leader = False
2017-11-23 16:56:14 +01:00
dyns = []
has_value = False
2018-04-07 20:15:19 +02:00
for cpath, options in paths_.items():
2017-11-23 16:56:14 +01:00
if options is None:
break
if '.' in cpath:
dirname, name = cpath.split('.')[-2:]
2017-12-02 22:53:57 +01:00
for dname in cpath.split('.')[:-1]:
if options.get(dname, {}).get('dyn'):
is_dyn = True
2019-02-23 19:06:23 +01:00
if options.get(dname, {}).get('leader'):
is_leader = True
2017-11-23 16:56:14 +01:00
else:
dirname = ''
name = cpath
if options.get(dirname, {}).get('hidden'):
continue
allow_req = require and req
2017-12-02 22:53:57 +01:00
no_propertieserror = not options.get(name, {}).get('disabled') and not options.get(name, {}).get('hidden')
2017-11-23 16:56:14 +01:00
if is_dyn:
dyns.append(no_propertieserror or allow_req)
2017-12-02 22:53:57 +01:00
if not is_dyn and (no_propertieserror or allow_req):
2017-11-23 16:56:14 +01:00
dico[cpath] = default_value
2017-12-04 20:05:36 +01:00
if symlink:
dico[cpath + 'link'] = default_value
2017-11-23 16:56:14 +01:00
if path == cpath:
dico_value[cpath] = value
2017-12-04 20:05:36 +01:00
if symlink:
dico_value[cpath + 'link'] = value
2017-11-23 16:56:14 +01:00
else:
dico_value[cpath] = default_value
2017-12-04 20:05:36 +01:00
if symlink:
dico_value[cpath + 'link'] = default_value
2017-11-28 22:42:30 +01:00
2017-11-23 16:56:14 +01:00
has_value = True
2019-02-23 19:06:23 +01:00
isfollower = False
if '.' in path and is_leader and not path.rsplit('.', 1)[1].startswith('first'):
isfollower = True
2017-12-02 22:53:57 +01:00
if not multi is submulti:
kwargs['default'] = None
if is_dyn and dyns:
2017-11-23 16:56:14 +01:00
idx = 0
2018-04-07 20:15:19 +02:00
for cpath in list(paths_.keys())[len(dyns):]:
2017-11-23 16:56:14 +01:00
if dyns[idx]:
dico[cpath] = default_value
2017-12-04 20:05:36 +01:00
if symlink:
dico[cpath + 'link'] = default_value
2017-11-23 16:56:14 +01:00
if path == cpath:
dico_value[cpath] = value
2017-12-04 20:05:36 +01:00
if symlink:
dico_value[cpath + 'link'] = value
2017-11-23 16:56:14 +01:00
else:
dico_value[cpath] = default_value
2017-12-04 20:05:36 +01:00
if symlink:
dico_value[cpath + 'link'] = default_value
2017-11-23 16:56:14 +01:00
idx += 1
if idx == len(dyns):
idx = 0
if require:
if not req:
dico['extraoptrequire'] = None
dico_value['extraoptrequire'] = None
2017-12-04 20:05:36 +01:00
if symlink:
dico['extraoptrequirelink'] = None
dico_value['extraoptrequirelink'] = None
2017-11-23 16:56:14 +01:00
else:
dico['extraoptrequire'] = 'value'
dico_value['extraoptrequire'] = 'value'
2017-12-04 20:05:36 +01:00
if symlink:
dico['extraoptrequirelink'] = 'value'
dico_value['extraoptrequirelink'] = 'value'
2017-11-23 16:56:14 +01:00
if consistency and has_value:
cpath = list(dico.keys())[0]
if "." in cpath:
cpath = cpath.rsplit('.', 1)[0] + '.'
else:
cpath = ''
if multi:
value = []
else:
value = None
if is_dyn:
dico[cpath + 'extraoptconsistencyval1'] = value
dico_value[cpath + 'extraoptconsistencyval1'] = value
2019-02-23 19:06:23 +01:00
if is_leader:
2017-12-02 22:53:57 +01:00
spath = cpath.split('.')
spath[-2] = spath[-2][:-1] + '2'
spath[-3] = spath[-3][:-1] + '2'
npath = '.'.join(spath) + 'extraoptconsistencyval2'
else:
npath = cpath[:-2] + '2.' + 'extraoptconsistencyval2'
dico[npath] = value
dico_value[npath] = value
2017-11-23 16:56:14 +01:00
else:
dico[cpath + 'extraoptconsistency'] = value
dico_value[cpath + 'extraoptconsistency'] = value
2019-02-23 19:06:23 +01:00
if is_leader:
2018-04-07 20:15:19 +02:00
for cpath in list(paths_.keys())[len(dyns):]:
2017-12-02 22:53:57 +01:00
if cpath.endswith('.first') or cpath.endswith('.firstval1') or cpath.endswith('.firstval2'):
2017-11-28 22:42:30 +01:00
second_path = cpath.rsplit('.', 1)[0] + '.second'
third_path = cpath.rsplit('.', 1)[0] + '.third'
cons_path = cpath.rsplit('.', 1)[0] + '.extraoptconsistency'
2017-12-02 22:53:57 +01:00
if is_dyn:
suffix = cpath[-4:]
second_path += suffix
third_path += suffix
cons_path += suffix
2017-11-28 22:42:30 +01:00
#
if default_multi:
if multi is not submulti:
dvalue = SECOND_VALUE
else:
dvalue = LIST_SECOND_VALUE
else:
dvalue = []
if dvalue == [] and multi is not submulti:
dvalue = None
#
kwargs['default_multi'] = dvalue
2019-02-23 19:06:23 +01:00
if isfollower:
2017-11-28 22:42:30 +01:00
kwargs['default'] = dvalue
2019-02-23 19:06:23 +01:00
len_leader = len(dico[cpath])
2017-11-28 22:42:30 +01:00
if second_path in dico:
2019-02-23 19:06:23 +01:00
dico[second_path] = [dvalue] * len_leader
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
dico[second_path + 'link'] = [dvalue] * len_leader
2017-11-28 22:42:30 +01:00
if third_path in dico:
2019-02-23 19:06:23 +01:00
dico[third_path] = [dvalue] * len_leader
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
dico[third_path + 'link'] = [dvalue] * len_leader
2017-11-28 22:42:30 +01:00
if cons_path in dico:
2019-02-23 19:06:23 +01:00
dico[cons_path] = [dvalue] * len_leader
2017-11-28 22:42:30 +01:00
#
2019-02-23 19:06:23 +01:00
len_leader = len(dico_value[cpath])
2017-11-28 22:42:30 +01:00
if second_path in dico_value:
2019-02-23 19:06:23 +01:00
dico_value[second_path] = [dvalue] * len_leader
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
dico_value[second_path + 'link'] = [dvalue] * len_leader
2017-11-28 22:42:30 +01:00
if third_path in dico_value:
2019-02-23 19:06:23 +01:00
dico_value[third_path] = [dvalue] * len_leader
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
dico_value[third_path + 'link'] = [dvalue] * len_leader
2017-11-28 22:42:30 +01:00
if cons_path in dico_value:
2019-02-23 19:06:23 +01:00
dico_value[cons_path] = [dvalue] * len_leader
2017-12-02 22:53:57 +01:00
return is_dyn, dico, dico_value
if DISPLAY:
2017-11-18 14:51:00 +01:00
text = u' {} launch tests for {}'.format(ICON, path)
if multi is True:
text += u' as a multi'
elif multi is submulti:
text += u' as a submulti'
if default is True:
text += u' with default'
if multi is True:
text += u' with default value'
if default_multi is True:
text += u' with default multi'
2017-11-23 16:56:14 +01:00
if require:
text += u' with requirement'
if consistency:
text += u' with consistency'
2017-11-13 22:45:53 +01:00
text += u', kwargs: {}'.format(kwargs)
print(text)
2017-11-20 17:01:36 +01:00
if not require:
requires = [False]
else:
requires = [False, True]
2017-11-23 16:56:14 +01:00
confwrite = confread = None
idx = 0
2017-11-20 17:01:36 +01:00
for req in requires:
2017-12-02 22:53:57 +01:00
is_dyn, kwargs['make_dict'], kwargs['make_dict_value'] = _build_make_dict()
2017-11-28 22:42:30 +01:00
kwargs['callback'] = callback
2017-12-04 20:05:36 +01:00
kwargs['symlink'] = symlink
2017-11-20 17:01:36 +01:00
for func in autocheck_registers:
2017-11-23 16:56:14 +01:00
cfg_name = 'conftest' + str(idx)
idx += 1
2018-09-07 06:14:52 +02:00
ncfg = cfg.config.copy(session_id=cfg_name)
2017-11-23 16:56:14 +01:00
if meta:
confwrite = None
confread = cfg_name
2018-09-07 06:14:52 +02:00
mcfg = MetaConfig([ncfg], session_id='metatest')
2017-11-23 16:56:14 +01:00
weakrefs.append(weakref.ref(cfg))
2018-09-07 06:14:52 +02:00
else:
mcfg = ncfg
2017-11-28 22:42:30 +01:00
ckwargs = copy(kwargs)
2018-03-31 21:06:19 +02:00
if meta:
2018-09-07 06:14:52 +02:00
mcfg.owner.set('meta')
2018-03-31 21:06:19 +02:00
ckwargs['owner'] = owners.meta
else:
ckwargs['owner'] = OWNER
2019-02-23 19:06:23 +01:00
if mcfg.unrestraint.option(path).option.isfollower():
2017-11-28 22:42:30 +01:00
dirname = path.rsplit('.', 1)[0]
2019-02-23 19:06:23 +01:00
leader_path = dirname + '.first'
leader_path_2 = None
2017-12-02 22:53:57 +01:00
if dirname.endswith('val1') or dirname.endswith('val2'):
2019-02-23 19:06:23 +01:00
leader_path += 'val1'
leader_path = leader_path.replace('val2', 'val1')
leader_path_2 = leader_path.replace('val1', 'val2')
2017-11-28 22:42:30 +01:00
if multi is submulti:
value = SUBLIST_SECOND_VALUE
else:
value = LIST_SECOND_VALUE
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-02-23 19:06:23 +01:00
mcfg.option(leader_path).value.set(value)
ckwargs['make_dict'][leader_path] = value
ckwargs['make_dict_value'][leader_path] = value
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
ckwargs['make_dict'][leader_path + 'link'] = value
ckwargs['make_dict_value'][leader_path + 'link'] = value
if leader_path_2:
2018-08-18 16:11:25 +02:00
with warnings.catch_warnings(record=True) as w:
2019-02-23 19:06:23 +01:00
mcfg.option(leader_path_2).value.set(value)
ckwargs['make_dict'][leader_path_2] = value
ckwargs['make_dict_value'][leader_path_2] = value
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
ckwargs['make_dict'][leader_path_2 + 'link'] = value
ckwargs['make_dict_value'][leader_path_2 + 'link'] = value
2017-11-28 22:42:30 +01:00
if default_multi:
if multi is not submulti:
dvalue = SECOND_VALUE
else:
dvalue = LIST_SECOND_VALUE
elif multi is submulti:
dvalue = []
else:
dvalue = None
2017-12-02 22:53:57 +01:00
def do(suffix, oldsuffix=None):
if suffix:
ldirname = dirname.replace(oldsuffix, suffix)
else:
ldirname = dirname
npath = ldirname + '.second' + suffix
if npath in ckwargs['make_dict']:
ckwargs['make_dict'][npath] = [dvalue] * len(value)
ckwargs['make_dict_value'][npath] = [dvalue] * len(value)
2017-12-04 20:05:36 +01:00
if symlink:
ckwargs['make_dict'][npath + 'link'] = [dvalue] * len(value)
ckwargs['make_dict_value'][npath + 'link'] = [dvalue] * len(value)
2017-12-02 22:53:57 +01:00
if path == npath:
2019-02-23 19:06:23 +01:00
ckwargs['make_dict_value'][npath][-1] = ckwargs['make_dict_value'][leader_path][-1]
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
ckwargs['make_dict_value'][npath + 'link'][-1] = ckwargs['make_dict_value'][leader_path][-1]
2017-12-02 22:53:57 +01:00
npath = ldirname + '.third' + suffix
if npath in ckwargs['make_dict']:
ckwargs['make_dict'][npath] = [dvalue] * len(value)
ckwargs['make_dict_value'][npath] = [dvalue] * len(value)
2017-12-04 20:05:36 +01:00
if symlink:
ckwargs['make_dict'][npath + 'link'] = [dvalue] * len(value)
ckwargs['make_dict_value'][npath + 'link'] = [dvalue] * len(value)
2017-12-02 22:53:57 +01:00
if path == npath:
2019-02-23 19:06:23 +01:00
ckwargs['make_dict_value'][npath][-1] = ckwargs['make_dict_value'][leader_path][-1]
2017-12-04 20:05:36 +01:00
if symlink:
2019-02-23 19:06:23 +01:00
ckwargs['make_dict_value'][npath + 'link'][-1] = ckwargs['make_dict_value'][leader_path][-1]
2017-12-02 22:53:57 +01:00
npath = ldirname + '.extraoptconsistency' + suffix
if npath in ckwargs['make_dict']:
ckwargs['make_dict'][npath] = [dvalue] * len(value)
ckwargs['make_dict_value'][npath] = [dvalue] * len(value)
2017-12-04 20:05:36 +01:00
if symlink:
ckwargs['make_dict'][npath + 'link'] = [dvalue] * len(value)
ckwargs['make_dict_value'][npath + 'link'] = [dvalue] * len(value)
2017-12-02 22:53:57 +01:00
if not is_dyn:
do('')
else:
#do(dirname[-4:])
do('val1', 'val2')
do('val2', 'val1')
2017-11-28 22:42:30 +01:00
2018-08-14 23:07:07 +02:00
ncfg.property.read_write()
2018-09-07 06:14:52 +02:00
mcfg.property.read_write()
2017-11-20 17:01:36 +01:00
if req:
2017-12-04 20:05:36 +01:00
name = 'extraoptrequire'
if symlink:
name += 'link'
2018-09-07 06:14:52 +02:00
mcfg.option(name).value.set('value')
2017-11-20 17:01:36 +01:00
if 'permissive' in ckwargs and not 'permissive_od' in ckwargs or \
'propertyerror' in ckwargs and not 'propertyerror_od' in ckwargs:
for to_del in ['permissive', 'propertyerror', 'extra_properties']:
if to_del in ckwargs:
del ckwargs[to_del]
if DISPLAY:
print(u' {} {}'.format(ICON, func.__name__))
2017-12-04 20:05:36 +01:00
pathread = path
if symlink:
pathwrite = path + 'link'
else:
pathwrite = path
2017-11-20 17:01:36 +01:00
try:
2018-09-07 06:14:52 +02:00
func(mcfg, ncfg, pathread, pathwrite, confread, confwrite, **ckwargs)
2017-11-20 17:01:36 +01:00
except Exception as err:
msg = u'error in function {} for {}'.format(func.__name__, path)
if multi is True:
msg += u' as a multi'
elif multi is submulti:
msg += u' as a submulti'
2017-11-28 22:42:30 +01:00
if default is True:
2017-11-20 17:01:36 +01:00
msg += u' with default value'
2017-11-28 22:42:30 +01:00
if callback is True:
msg += u' (callback)'
2017-12-04 20:05:36 +01:00
if symlink is True:
msg += u' (symlink)'
2017-11-20 17:01:36 +01:00
print(u'{}: {}'.format(msg, ckwargs))
raise err
2018-09-07 06:14:52 +02:00
if meta:
del mcfg
2017-11-23 16:56:14 +01:00
del ncfg
def check_deref(weakrefs):
"""try if all elements are dereferenced
"""
for wrf in weakrefs:
assert wrf() is None
2017-10-22 09:48:08 +02:00
2018-09-07 06:14:52 +02:00
def make_conf(options, multi, default, default_multi, require, consistency, callback, symlink):
2017-11-13 22:45:53 +01:00
weakrefs = []
2017-11-20 17:01:36 +01:00
dyn = []
goptions = []
2019-02-23 19:06:23 +01:00
def make_option(path, option_infos, in_leader, leader):
2017-10-22 09:48:08 +02:00
option_type = 'str'
option_properties = []
2017-11-20 17:01:36 +01:00
option_requires = []
2019-02-23 19:06:23 +01:00
isfollower = False
if in_leader and symlink:
2017-12-04 20:05:36 +01:00
return None, None, None
2017-11-12 20:11:56 +01:00
if option_infos is not None:
2018-03-31 21:06:19 +02:00
if require:
return None, None, None
2017-11-12 20:11:56 +01:00
for prop in PROPERTIES:
if option_infos.get(prop, False) is True:
2017-11-20 17:01:36 +01:00
if not require:
option_properties.append(prop)
else:
option_requires.append({'option': goptions[0], 'expected': None,
'action': prop})
2019-02-23 19:06:23 +01:00
isfollower = option_infos.get('follower', False)
2017-11-12 20:11:56 +01:00
args = [path, "{}'s option".format(path)]
2017-10-22 09:48:08 +02:00
kwargs = {}
2017-11-28 22:42:30 +01:00
call_kwargs = {}
2017-10-22 09:48:08 +02:00
if option_properties != []:
kwargs['properties'] = tuple(option_properties)
2017-11-28 22:42:30 +01:00
if callback:
call_kwargs['properties'] = tuple(option_properties)
2017-11-20 17:01:36 +01:00
if option_requires != []:
2017-11-28 22:42:30 +01:00
if callback:
call_kwargs['requires'] = option_requires
else:
kwargs['requires'] = option_requires
2017-11-20 17:01:36 +01:00
if multi and path is not 'extraoptrequire':
kwargs['multi'] = multi
2017-11-28 22:42:30 +01:00
if callback:
call_kwargs['multi'] = multi
2019-02-23 19:06:23 +01:00
if ((not in_leader or leader) and default) and path is not 'extraoptrequire' and not path.endswith('extraoptconsistency'):
if multi is False:
value = FIRST_VALUE
elif multi is True:
value = LIST_FIRST_VALUE
else:
value = SUBLIST_EMPTY_VALUE
2017-11-28 22:42:30 +01:00
if callback:
kwargs['callback'] = return_str
call_kwargs['default'] = value
else:
kwargs['default'] = value
elif callback:
2017-12-04 20:05:36 +01:00
return None, None, None
2017-11-20 17:01:36 +01:00
if default_multi and path is not 'extraoptrequire':
if multi is not submulti:
value = SECOND_VALUE
else:
value = LIST_SECOND_VALUE
kwargs['default_multi'] = value
2017-10-22 09:48:08 +02:00
tiramisu_option = OPTIONS_TYPE[option_type]['option']
2017-11-28 22:42:30 +01:00
if callback:
largs = [path + 'call', "{}'s callback option".format(path)]
objcall = tiramisu_option(*largs, **call_kwargs)
kwargs['callback_params'] = Params(ParamOption(objcall))
2017-11-28 22:42:30 +01:00
else:
objcall = None
2017-12-04 20:05:36 +01:00
if symlink and not path.endswith('extraoptconsistency'):
sobj = tiramisu_option(args[0] + 'link', args[1] + ' link', **kwargs)
kwargs = {}
args[1] = sobj
tiramisu_option = SymLinkOption
else:
sobj = None
2017-11-13 22:45:53 +01:00
obj = tiramisu_option(*args, **kwargs)
2017-11-20 17:01:36 +01:00
if not 'extraopt' in path and consistency:
if require:
2017-12-04 20:05:36 +01:00
if symlink:
gopt = goptions[2]
else:
gopt = goptions[1]
2017-11-20 17:01:36 +01:00
else:
gopt = goptions[0]
2018-03-31 21:06:19 +02:00
obj.impl_add_consistency('not_equal', gopt, warnings_only=True, transitive=False)
2017-12-04 20:05:36 +01:00
return obj, objcall, sobj
2017-10-22 09:48:08 +02:00
def make_optiondescriptions(path, collected):
2017-11-12 20:11:56 +01:00
infos = collected.get('properties', {})
2017-10-22 09:48:08 +02:00
properties = []
kwargs = {}
optiondescription = OptionDescription
2017-11-12 20:11:56 +01:00
for prop in PROPERTIES:
if infos.get(prop, False) is True:
properties.append(prop)
2019-02-23 19:06:23 +01:00
if infos.get('leader', False) is True:
2017-11-12 20:11:56 +01:00
if not multi:
return
2019-02-23 19:06:23 +01:00
optiondescription = Leadership
2017-11-12 20:11:56 +01:00
if infos.get('dyn', False) is True:
2017-12-04 20:05:36 +01:00
if symlink:
return
2017-11-12 20:11:56 +01:00
optiondescription = DynOptionDescription
kwargs['callback'] = return_list
2017-11-20 17:01:36 +01:00
dyn.append(path)
2017-10-22 09:48:08 +02:00
options = []
if 'options' in collected:
options.extend(collected['options'])
for key, values in collected.items():
2017-11-12 20:11:56 +01:00
if key in ['options', 'properties']:
2017-10-22 09:48:08 +02:00
continue
option = make_optiondescriptions(key, values)
if option is None:
return
options.append(option)
if properties != []:
kwargs['properties'] = tuple(properties)
2017-11-13 22:45:53 +01:00
obj = optiondescription(path, "{}'s optiondescription".format(path), options, **kwargs)
weakrefs.append(weakref.ref(obj))
return obj
2017-10-22 09:48:08 +02:00
collect_options = {}
2017-11-20 17:01:36 +01:00
if require or consistency:
noptions = OrderedDict()
if require:
noptions['extraoptrequire'] = {}
if consistency:
subpath = list(options.keys())[0]
if '.' in subpath:
subpath = subpath.rsplit('.', 1)[0] + '.'
else:
subpath = ''
noptions[subpath + 'extraoptconsistency'] = {}
noptions.update(options)
else:
noptions = options
for path, option in noptions.items():
2017-10-22 09:48:08 +02:00
if option is None:
continue
local_collect_options = collect_options
2017-11-12 20:11:56 +01:00
for optiondescription in path.split('.')[:-1]:
local_collect_options.setdefault(optiondescription, {'properties': {}})
2017-10-22 09:48:08 +02:00
local_collect_options = local_collect_options[optiondescription]
2017-11-12 20:11:56 +01:00
local_collect_options['properties'].update(option.get(optiondescription, {}))
option_name = path.split('.')[-1]
2019-02-23 19:06:23 +01:00
in_leader = False
2017-11-28 22:42:30 +01:00
if '.' in path:
name_od = path.rsplit('.', 1)[0]
2017-12-02 22:53:57 +01:00
if '.' in name_od:
subod, name_od = name_od.split('.')
oddescr = collect_options.get(subod, {})
else:
oddescr = collect_options
2019-02-23 19:06:23 +01:00
in_leader = oddescr.get(name_od, {}).get('properties', {}).get('leader')
leader = in_leader and path.endswith('first')
obj, objcall, sobj = make_option(option_name, option.get(option_name), in_leader, leader)
2017-11-28 22:42:30 +01:00
if obj is None:
return None, None, None
weakrefs.append(weakref.ref(obj))
if callback:
weakrefs.append(weakref.ref(objcall))
2017-12-04 20:05:36 +01:00
if sobj is not None:
weakrefs.append(weakref.ref(sobj))
2017-11-28 22:42:30 +01:00
if '.' in path:
2019-02-23 19:06:23 +01:00
if leader:
2017-11-28 22:42:30 +01:00
local_collect_options.setdefault('options', []).insert(0, obj)
else:
local_collect_options.setdefault('options', []).append(obj)
else:
local_collect_options.setdefault('options', []).append(obj)
2017-11-20 17:01:36 +01:00
goptions.append(obj)
2017-11-28 22:42:30 +01:00
if callback:
local_collect_options.setdefault('options', []).append(objcall)
goptions.append(objcall)
2017-12-04 20:05:36 +01:00
if sobj is not None:
local_collect_options.setdefault('options', []).append(sobj)
goptions.append(sobj)
2017-10-22 09:48:08 +02:00
rootod = make_optiondescriptions('root', collect_options)
if rootod is None:
2017-11-28 22:42:30 +01:00
return None, None, None
2017-11-13 22:45:53 +01:00
cfg = Config(rootod, session_id='conftest')
weakrefs.append(weakref.ref(cfg))
2017-11-20 17:01:36 +01:00
del goptions
return cfg, weakrefs, dyn
2017-10-22 09:48:08 +02:00
DICT_PATHS = [
2019-02-23 08:01:29 +01:00
# test a config without optiondescription
2018-04-05 21:13:24 +02:00
OrderedDict([('first', {}),
('second', {'second': {'disabled': True}}),
('third', {'third': {'hidden': True}})
2019-02-23 08:01:29 +01:00
]),
# test a config with two optiondescription
2018-04-05 21:13:24 +02:00
OrderedDict([('subod.subsubod.first', {}),
('subod.subsubod.second', {'second': {'disabled': True}}),
('subod.subsubod.third', {'third': {'hidden': True}})]),
2019-02-23 19:06:23 +01:00
# test a config with leadership
OrderedDict([('odleader.first', {'odleader': {'leader': True}}),
('odleader.second', {'odleader': {'leader': True}, 'second': {'disabled': True, 'follower': True}}),
('odleader.third', {'odleader': {'leader': True}, 'third': {'hidden': True, 'follower': True}})]),
2019-02-23 08:01:29 +01:00
# test a config with dynoption
2018-04-05 21:13:24 +02:00
OrderedDict([('subod.first', {'subod': {'dyn': True}}),
('subod.second', {'second': {'disabled': True}}),
('subod.third', {'third': {'hidden': True}}),
('subodval1.firstval1', None),
('subodval1.secondval1', None),
('subodval1.thirdval1', None),
('subodval2.firstval2', None),
('subodval2.secondval2', None),
('subodval2.thirdval2', None)]),
2019-02-23 08:01:29 +01:00
# test a config with dynoption subdir
2018-04-05 21:13:24 +02:00
OrderedDict([('subod.subsubod.first', {'subsubod': {'dyn': True}}),
('subod.subsubod.second', {'subsubod': {'dyn': True}, 'second': {'disabled': True}}),
('subod.subsubod.third', {'subsubod': {'dyn': True}, 'third': {'hidden': True}}),
('subod.subsubodval1.firstval1', None),
('subod.subsubodval1.secondval1', None),
('subod.subsubodval1.thirdval1', None),
('subod.subsubodval2.firstval2', None),
('subod.subsubodval2.secondval2', None),
('subod.subsubodval2.thirdval2', None)]),
2019-02-23 08:01:29 +01:00
# test a config with hidden subsubod
2017-11-12 20:11:56 +01:00
OrderedDict([('subod.subsubod.first', {'subsubod': {'hidden': True}}),
2017-11-13 22:45:53 +01:00
('subod.subsubod.second', {'subsubod': {'hidden': True}}),
('subod.subsubod.third', {'subsubod': {'hidden': True}})]),
2019-02-23 08:01:29 +01:00
# test a config with hidden dyn subsubod
2018-04-05 21:13:24 +02:00
OrderedDict([('subod.subsubod.first', {'subsubod': {'dyn': True, 'hidden': True}}),
('subod.subsubod.second', {'subsubod': {'dyn': True, 'hidden': True}}),
('subod.subsubod.third', {'subsubod': {'dyn': True, 'hidden': True}}),
('subod.subsubodval1.firstval1', None),
('subod.subsubodval1.secondval1', None),
('subod.subsubodval1.thirdval1', None),
('subod.subsubodval2.firstval2', None),
('subod.subsubodval2.secondval2', None),
('subod.subsubodval2.thirdval2', None)]),
2019-02-23 19:06:23 +01:00
# test a config with dyn subsubod with leadership
OrderedDict([('subod.subsubod.first', {'subod': {'dyn': True}, 'subsubod': {'leader': True}}),
('subod.subsubod.second', {'subod': {'dyn': True}, 'subsubod' : {'leader': True}, 'second': {'disabled': True, 'follower': True}}),
('subod.subsubod.third', {'subod': {'dyn': True}, 'subsubod': {'leader': True}, 'third': {'hidden': True, 'follower': True}}),
2018-04-05 21:13:24 +02:00
('subodval1.subsubodval1.firstval1', None),
('subodval1.subsubodval1.secondval1', None),
('subodval1.subsubodval1.thirdval1', None),
('subodval2.subsubodval2.firstval2', None),
('subodval2.subsubodval2.secondval2', None),
('subodval2.subsubodval2.thirdval2', None)]),
]
2017-11-13 22:45:53 +01:00
@pytest.fixture(scope="function", params=DICT_PATHS)
def paths(request):
if DISPLAY:
print(u'\n{} {}: {}'.format(ICON, request.function.__name__, request.param))
return request.param
2017-11-13 22:45:53 +01:00
def test_options(paths):
def get_kwargs_option(options, kwargs, od=False):
2018-04-07 20:15:19 +02:00
if options.get('mandatory', False):
kwargs['mandatory'] = True
2017-11-13 22:45:53 +01:00
if options.get('hidden', False) is True:
kwargs['permissive'] = True
if not od:
kwargs.setdefault('extra_properties', []).append('hidden')
2017-11-18 14:51:00 +01:00
else:
kwargs['permissive_od'] = True
2017-11-13 22:45:53 +01:00
if options.get('disabled', False) is True:
kwargs['propertyerror'] = True
if not od:
kwargs.setdefault('extra_properties', []).append('disabled')
2017-11-18 14:51:00 +01:00
else:
kwargs['propertyerror_od'] = True
2017-11-13 22:45:53 +01:00
def get_kwargs(path):
kwargs = {}
spath = path.split('.')
get_kwargs_option(paths[path].get(spath[-1], {}), kwargs)
if len(spath) > 1:
get_kwargs_option(paths[path].get(spath[-2], {}), kwargs, od=True)
return kwargs
lpaths = list(paths.keys())
2018-03-31 21:06:19 +02:00
2018-04-05 21:13:24 +02:00
for meta in (False, True):
for callback in (False, True):
for consistency in (False, True):
for require in (False, True):
for default_multi in (False, True):
for symlink in (False, True):
2017-12-04 20:05:36 +01:00
if callback and default_multi:
continue
2018-04-05 21:13:24 +02:00
for default in (False, True):
for multi in (False, True, submulti):
pass
# for meta in (True,):
2018-04-05 21:13:24 +02:00
# for callback in (False,):
2018-10-29 21:01:01 +01:00
# for consistency in (True,):
# for require in (True,):
# for default_multi in (True,):
2018-04-05 21:13:24 +02:00
# for symlink in (False,):
# if callback and default_multi:
# continue
2018-10-29 21:01:01 +01:00
# for default in (True,):
# for multi in (submulti,):
2017-12-04 20:05:36 +01:00
if multi is submulti and default:
continue
if multi is submulti and consistency:
continue
if multi is False and default_multi:
continue
2018-09-07 06:14:52 +02:00
cfg, weakrefs, dyn = make_conf(paths, multi, default, default_multi, require, consistency, callback, symlink)
2017-12-04 20:05:36 +01:00
if cfg is None:
continue
if dyn:
cnt = 0
idx = 0
for index, lpath in enumerate(lpaths):
if paths[lpath]:
cnt += 1
else:
check_all(cfg, paths, lpaths[index], meta, multi, default,
default_multi, require, consistency, callback, symlink,
weakrefs, **get_kwargs(lpaths[idx]))
idx += 1
if idx == cnt:
idx = 0
else:
for lpath in lpaths:
check_all(cfg, paths, lpath, meta, multi, default,
default_multi, require, consistency, callback, symlink,
weakrefs, **get_kwargs(lpath))
del cfg
check_deref(weakrefs)