autocheck_option corrections
This commit is contained in:
parent
73d27af971
commit
38890519c9
|
@ -945,37 +945,37 @@ def autocheck_set_owner_permissive(api, pathread, pathwrite, confread, confwrite
|
||||||
_check_owner(api, pathread, confread, kwargs, 'new_user1', 'new_user1')
|
_check_owner(api, pathread, confread, kwargs, 'new_user1', 'new_user1')
|
||||||
|
|
||||||
|
|
||||||
#FIXME @autocheck
|
@autocheck
|
||||||
#def autocheck_option(api, pathread, pathwrite, confread, confwrite, **kwargs):
|
def autocheck_option(api, pathread, pathwrite, confread, confwrite, **kwargs):
|
||||||
# expected_name = pathread.split('.')[-1]
|
expected_name = pathread.split('.')[-1]
|
||||||
# if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
|
if not kwargs.get('permissive', False) and not kwargs.get('propertyerror', False):
|
||||||
# current_name = api.option(pathread).option.name
|
current_name = api.option(pathread).option.name()
|
||||||
# assert current_name == api.forcepermissive.option(pathread).option.name
|
assert current_name == api.forcepermissive.option(pathread).option.name()
|
||||||
# assert current_name == api.unrestraint.option(pathread).option.name
|
assert current_name == api.unrestraint.option(pathread).option.name()
|
||||||
# doc = api.option(pathread).option.doc()
|
doc = api.option(pathread).option.doc()
|
||||||
# assert doc == api.forcepermissive.option(pathread).option.doc()
|
assert doc == api.forcepermissive.option(pathread).option.doc()
|
||||||
# assert doc == api.unrestraint.option(pathread).option.doc()
|
assert doc == api.unrestraint.option(pathread).option.doc()
|
||||||
# elif not kwargs.get('propertyerror', False):
|
elif not kwargs.get('propertyerror', False):
|
||||||
# raises(PropertiesOptionError, "api.option(pathread).option.name")
|
raises(PropertiesOptionError, "api.option(pathread).option.name()")
|
||||||
# current_name = api.forcepermissive.option(pathread).option.name
|
current_name = api.forcepermissive.option(pathread).option.name()
|
||||||
# assert current_name == api.unrestraint.option(pathread).option.name
|
assert current_name == api.unrestraint.option(pathread).option.name()
|
||||||
# raises(PropertiesOptionError, "api.option(pathread).option.doc()")
|
raises(PropertiesOptionError, "api.option(pathread).option.doc()")
|
||||||
# doc = api.forcepermissive.option(pathread).option.doc()
|
doc = api.forcepermissive.option(pathread).option.doc()
|
||||||
# assert doc == api.unrestraint.option(pathread).option.doc()
|
assert doc == api.unrestraint.option(pathread).option.doc()
|
||||||
# else:
|
else:
|
||||||
# raises(PropertiesOptionError, "api.option(pathread).option.name")
|
raises(PropertiesOptionError, "api.option(pathread).option.name()")
|
||||||
# raises(PropertiesOptionError, "api.forcepermissive.option(pathread).option.name")
|
raises(PropertiesOptionError, "api.forcepermissive.option(pathread).option.name()")
|
||||||
# current_name = api.unrestraint.option(pathread).option.name
|
current_name = api.unrestraint.option(pathread).option.name()
|
||||||
# raises(PropertiesOptionError, "api.option(pathread).option.doc()")
|
raises(PropertiesOptionError, "api.option(pathread).option.doc()")
|
||||||
# raises(PropertiesOptionError, "api.forcepermissive.option(pathread).option.doc()")
|
raises(PropertiesOptionError, "api.forcepermissive.option(pathread).option.doc()")
|
||||||
# doc = api.unrestraint.option(pathread).option.doc()
|
doc = api.unrestraint.option(pathread).option.doc()
|
||||||
# assert current_name == expected_name
|
assert current_name == expected_name
|
||||||
# if expected_name.endswith('val1') or expected_name.endswith('val2'):
|
if expected_name.endswith('val1') or expected_name.endswith('val2'):
|
||||||
# expected_name = expected_name[:-4]
|
expected_name = expected_name[:-4]
|
||||||
# if kwargs['symlink']:
|
if kwargs['symlink']:
|
||||||
# assert doc == "{}'s option link".format(expected_name)
|
assert doc == "{}'s option link".format(expected_name)
|
||||||
# else:
|
else:
|
||||||
# assert doc == "{}'s option".format(expected_name)
|
assert doc == "{}'s option".format(expected_name)
|
||||||
|
|
||||||
|
|
||||||
@autocheck
|
@autocheck
|
||||||
|
|
|
@ -86,7 +86,7 @@ class CommonTiramisu(object):
|
||||||
def _get_option(self):
|
def _get_option(self):
|
||||||
option = self.config_bag.option
|
option = self.config_bag.option
|
||||||
if option is None:
|
if option is None:
|
||||||
option = self.subconfig.cfgimpl_get_description().impl_getchild(self.name,
|
option = self.subconfig.cfgimpl_get_description().impl_getchild(self._name,
|
||||||
self.config_bag,
|
self.config_bag,
|
||||||
self.subconfig)
|
self.subconfig)
|
||||||
self.config_bag.option = option
|
self.config_bag.option = option
|
||||||
|
@ -121,7 +121,7 @@ class CommonTiramisuOption(CommonTiramisu):
|
||||||
self.path = path
|
self.path = path
|
||||||
self.index = index
|
self.index = index
|
||||||
self.config_bag = config_bag
|
self.config_bag = config_bag
|
||||||
self.name = name
|
self._name = name
|
||||||
self.subconfig = subconfig
|
self.subconfig = subconfig
|
||||||
if self.slave_need_index:
|
if self.slave_need_index:
|
||||||
self._test_slave_index()
|
self._test_slave_index()
|
||||||
|
@ -204,6 +204,11 @@ class TiramisuOptionOption(CommonTiramisuOption):
|
||||||
option = self._get_option()
|
option = self._get_option()
|
||||||
return option.impl_get_display_name()
|
return option.impl_get_display_name()
|
||||||
|
|
||||||
|
@count
|
||||||
|
def name(self):
|
||||||
|
self._get_option()
|
||||||
|
return self._name
|
||||||
|
|
||||||
@count
|
@count
|
||||||
def _default(self):
|
def _default(self):
|
||||||
option = self._get_option()
|
option = self._get_option()
|
||||||
|
@ -437,7 +442,7 @@ class TiramisuOptionValue(CommonTiramisuOption):
|
||||||
self._get_option()
|
self._get_option()
|
||||||
self._test_slave_index()
|
self._test_slave_index()
|
||||||
settings = self.config_bag.config.cfgimpl_get_settings()
|
settings = self.config_bag.config.cfgimpl_get_settings()
|
||||||
value = self.subconfig.getattr(self.name,
|
value = self.subconfig.getattr(self._name,
|
||||||
self.index,
|
self.index,
|
||||||
self.config_bag)
|
self.config_bag)
|
||||||
if isinstance(value, Multi):
|
if isinstance(value, Multi):
|
||||||
|
@ -461,7 +466,7 @@ class TiramisuOptionValue(CommonTiramisuOption):
|
||||||
value = values.getdefaultvalue(self.path,
|
value = values.getdefaultvalue(self.path,
|
||||||
self.index,
|
self.index,
|
||||||
self.config_bag)
|
self.config_bag)
|
||||||
self.subconfig.setattr(self.name,
|
self.subconfig.setattr(self._name,
|
||||||
self.index,
|
self.index,
|
||||||
value,
|
value,
|
||||||
self.config_bag)
|
self.config_bag)
|
||||||
|
@ -531,7 +536,7 @@ class TiramisuOption(CommonTiramisu):
|
||||||
subconfig,
|
subconfig,
|
||||||
config_bag):
|
config_bag):
|
||||||
|
|
||||||
self.name = name
|
self._name = name
|
||||||
self.subconfig = subconfig
|
self.subconfig = subconfig
|
||||||
self.path = path
|
self.path = path
|
||||||
self.index = index
|
self.index = index
|
||||||
|
@ -549,7 +554,7 @@ class TiramisuOption(CommonTiramisu):
|
||||||
|
|
||||||
def __getattr__(self, subfunc):
|
def __getattr__(self, subfunc):
|
||||||
if subfunc in self.registers:
|
if subfunc in self.registers:
|
||||||
return self.registers[subfunc](self.name,
|
return self.registers[subfunc](self._name,
|
||||||
self.path,
|
self.path,
|
||||||
self.index,
|
self.index,
|
||||||
self.subconfig,
|
self.subconfig,
|
||||||
|
|
Loading…
Reference in New Issue