2018-10-31 18:26:20 +01:00
|
|
|
from .autopath import do_autopath
|
|
|
|
do_autopath()
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
import pytest
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
from tiramisu.setting import groups, owners
|
|
|
|
from tiramisu import IntOption, StrOption, NetworkOption, NetmaskOption, \
|
2019-02-23 19:06:23 +01:00
|
|
|
OptionDescription, Leadership, Config, GroupConfig, MixConfig, \
|
2019-10-27 11:09:15 +01:00
|
|
|
MetaConfig, Params, ParamOption, ParamValue, ParamSelfOption, Calculation, \
|
|
|
|
valid_network_netmask
|
2019-02-23 19:06:23 +01:00
|
|
|
from tiramisu.error import ConfigError, ConflictError, PropertiesOptionError, LeadershipError, APIError
|
2018-10-31 18:26:20 +01:00
|
|
|
from tiramisu.storage import list_sessions
|
|
|
|
|
|
|
|
owners.addowner('mix1')
|
|
|
|
owners.addowner('mix2')
|
|
|
|
|
|
|
|
|
|
|
|
def teardown_function(function):
|
|
|
|
assert list_sessions() == [], 'session list is not empty when leaving "{}"'.format(function.__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def return_value(value=None):
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
def raise_exception():
|
|
|
|
raise Exception('test')
|
|
|
|
|
|
|
|
|
|
|
|
def make_description():
|
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
i2 = IntOption('i2', '', default=1)
|
|
|
|
i3 = IntOption('i3', '')
|
|
|
|
i4 = IntOption('i4', '', default=2)
|
|
|
|
i5 = IntOption('i5', '', default=[2], multi=True)
|
|
|
|
i6 = IntOption('i6', '', properties=('disabled',))
|
|
|
|
od1 = OptionDescription('od1', '', [i1, i2, i3, i4, i5, i6])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
|
|
|
return od2
|
|
|
|
|
|
|
|
|
|
|
|
def make_description1():
|
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
i2 = IntOption('i2', '', default=1)
|
|
|
|
i3 = IntOption('i3', '')
|
|
|
|
i4 = IntOption('i4', '', default=2)
|
|
|
|
i5 = IntOption('i5', '', default=[2], multi=True)
|
|
|
|
i6 = IntOption('i6', '', properties=('disabled',))
|
|
|
|
od1 = OptionDescription('od1', '', [i1, i2, i3, i4, i5, i6])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
|
|
|
return od2
|
|
|
|
|
|
|
|
|
|
|
|
def make_description2():
|
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
i2 = IntOption('i2', '', default=1)
|
|
|
|
i3 = IntOption('i3', '')
|
|
|
|
i4 = IntOption('i4', '', default=2)
|
|
|
|
i5 = IntOption('i5', '', default=[2], multi=True)
|
|
|
|
i6 = IntOption('i6', '', properties=('disabled',))
|
|
|
|
od1 = OptionDescription('od1', '', [i1, i2, i3, i4, i5, i6])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
|
|
|
return od2
|
|
|
|
|
|
|
|
|
|
|
|
def make_description3():
|
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
i2 = IntOption('i2', '', default=1)
|
|
|
|
i3 = IntOption('i3', '')
|
|
|
|
i4 = IntOption('i4', '', default=2)
|
|
|
|
i5 = IntOption('i5', '', default=[2], multi=True)
|
|
|
|
i6 = IntOption('i6', '', properties=('disabled',))
|
|
|
|
od1 = OptionDescription('od1', '', [i1, i2, i3, i4, i5, i6])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
|
|
|
return od2
|
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
async def make_mixconfig(double=False):
|
2018-10-31 18:26:20 +01:00
|
|
|
od1 = make_description()
|
|
|
|
od2 = make_description1()
|
|
|
|
od3 = make_description2()
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od1, session_id='conf1')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
conf2 = await Config(od2, session_id='conf2')
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(od3, [conf1, conf2], session_id='mix')
|
2018-10-31 18:26:20 +01:00
|
|
|
if double:
|
|
|
|
od4 = make_description3()
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.owner.set(owners.mix2)
|
|
|
|
mix = await MixConfig(od4, [mix], session_id='doublemix')
|
|
|
|
await mix.property.read_write()
|
|
|
|
await mix.owner.set(owners.mix1)
|
2018-10-31 18:26:20 +01:00
|
|
|
return mix
|
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_name():
|
|
|
|
mix = await make_mixconfig(True)
|
|
|
|
assert await mix.config.path() == 'doublemix'
|
|
|
|
ret = await mix.config('mix')
|
|
|
|
assert await ret.config.path() == 'doublemix.mix'
|
|
|
|
ret = await mix.config('mix.conf1')
|
|
|
|
assert await ret.config.path() == 'doublemix.mix.conf1'
|
|
|
|
ret = await mix.config('mix.conf2')
|
|
|
|
assert await ret.config.path() == 'doublemix.mix.conf2'
|
2019-02-06 21:47:11 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_not_group():
|
2018-10-31 18:38:44 +01:00
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
od1 = OptionDescription('od1', '', [i1])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od2, session_id='conf1')
|
|
|
|
grp = await GroupConfig([conf1])
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
await MixConfig(od2, [grp])
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_unknown_config():
|
|
|
|
mix = await make_mixconfig()
|
|
|
|
with pytest.raises(ConfigError):
|
|
|
|
await mix.config('unknown')
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_none():
|
|
|
|
mix = await make_mixconfig()
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await mix.option('od1.i3').value.get() is await newconf1.option('od1.i3').value.get() is await newconf2.option('od1.i3').value.get() is None
|
|
|
|
assert await mix.option('od1.i3').owner.get() is await newconf1.option('od1.i3').owner.get() is await newconf2.option('od1.i3').owner.get() is owners.default
|
|
|
|
#
|
|
|
|
await mix.option('od1.i3').value.set(3)
|
|
|
|
assert await mix.option('od1.i3').value.get() == await newconf1.option('od1.i3').value.get() == await newconf2.option('od1.i3').value.get() == 3
|
|
|
|
assert await mix.option('od1.i3').owner.get() is await newconf1.option('od1.i3').owner.get() is await newconf2.option('od1.i3').owner.get() is owners.mix1
|
|
|
|
#
|
|
|
|
await newconf1.option('od1.i3').value.set(2)
|
|
|
|
assert await mix.option('od1.i3').value.get() == await newconf2.option('od1.i3').value.get() == 3
|
|
|
|
assert await newconf1.option('od1.i3').value.get() == 2
|
|
|
|
assert await mix.option('od1.i3').owner.get() is await newconf2.option('od1.i3').owner.get() is owners.mix1
|
|
|
|
assert await newconf1.option('od1.i3').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await mix.option('od1.i3').value.set(4)
|
|
|
|
assert await mix.option('od1.i3').value.get() == await newconf2.option('od1.i3').value.get() == 4
|
|
|
|
assert await newconf1.option('od1.i3').value.get() == 2
|
|
|
|
assert await mix.option('od1.i3').owner.get() is await newconf2.option('od1.i3').owner.get() is owners.mix1
|
|
|
|
assert await newconf1.option('od1.i3').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await mix.option('od1.i3').value.reset()
|
|
|
|
assert await mix.option('od1.i3').value.get() is await newconf2.option('od1.i3').value.get() is None
|
|
|
|
assert await newconf1.option('od1.i3').value.get() == 2
|
|
|
|
assert await mix.option('od1.i3').owner.get() is await newconf2.option('od1.i3').owner.get() is owners.default
|
|
|
|
assert await newconf1.option('od1.i3').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await newconf1.option('od1.i3').value.reset()
|
|
|
|
assert await mix.option('od1.i3').value.get() is await newconf1.option('od1.i3').value.get() is await newconf2.option('od1.i3').value.get() is None
|
|
|
|
assert await mix.option('od1.i3').owner.get() is await newconf1.option('od1.i3').owner.get() is await newconf2.option('od1.i3').owner.get() is owners.default
|
|
|
|
#
|
|
|
|
assert await mix.config.name() == await mix.config.name()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_reset():
|
|
|
|
mix = await make_mixconfig()
|
|
|
|
assert await mix.option('od1.i2').value.get() == 1
|
|
|
|
await mix.option('od1.i2').value.set(2)
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
await newconf1.option('od1.i2').value.set(3)
|
|
|
|
assert await mix.option('od1.i2').value.get() == 2
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 3
|
|
|
|
assert await newconf2.option('od1.i2').value.get() == 2
|
|
|
|
await mix.config.reset()
|
|
|
|
assert await mix.option('od1.i2').value.get() == 1
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 3
|
|
|
|
assert await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_default():
|
|
|
|
mix = await make_mixconfig()
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newconf1.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.default
|
|
|
|
#
|
|
|
|
await mix.option('od1.i2').value.set(3)
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 3
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newconf1.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
#
|
|
|
|
await newconf1.option('od1.i2').value.set(2)
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 3
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await mix.option('od1.i2').value.set(4)
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 4
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await mix.option('od1.i2').value.reset()
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.default
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await newconf1.option('od1.i2').value.reset()
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newconf1.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.default
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_contexts():
|
|
|
|
mix = await make_mixconfig()
|
|
|
|
errors = await mix.value.set('od1.i2', 6, only_config=True)
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
assert await mix.option('od1.i2').value.get() == 1
|
|
|
|
assert await mix.option('od1.i2').owner.get() == owners.default
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == 6
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() == await newconf1.option('od1.i2').owner.get() is owners.user
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_find():
|
|
|
|
mix = await make_mixconfig()
|
|
|
|
ret = list(await mix.option.find('i2'))
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 1
|
2019-12-24 15:24:20 +01:00
|
|
|
assert 1 == await ret[0].value.get()
|
|
|
|
ret = await mix.option.find('i2', first=True)
|
|
|
|
assert 1 == await ret.value.get()
|
|
|
|
assert await mix.value.dict() == {'od1.i4': 2, 'od1.i1': None, 'od1.i3': None,
|
2018-10-31 18:26:20 +01:00
|
|
|
'od1.i2': 1, 'od1.i5': [2]}
|
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_mix():
|
|
|
|
mix = await make_mixconfig(double=True)
|
|
|
|
newmix = await mix.config('mix')
|
|
|
|
newconf1 = await mix.config('mix.conf1')
|
|
|
|
newconf2 = await mix.config('mix.conf2')
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newmix.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newmix.option('od1.i2').owner.get() is await newconf1.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.default
|
|
|
|
#
|
|
|
|
await mix.option('od1.i2').value.set(3)
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newmix.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 3
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newmix.option('od1.i2').owner.get() is await newconf1.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
#
|
|
|
|
await newconf1.option('od1.i2').value.set(2)
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newmix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 3
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newmix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await newmix.option('od1.i2').value.set(4)
|
|
|
|
assert await mix.option('od1.i2').value.get() == 3
|
|
|
|
assert await newmix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 4
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
assert await newmix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix2
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await newmix.option('od1.i2').value.reset()
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newmix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 3
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newmix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.mix1
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await mix.option('od1.i2').value.reset()
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newmix.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
assert await newconf1.option('od1.i2').value.get() == 2
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newmix.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.default
|
|
|
|
assert await newconf1.option('od1.i2').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await newconf1.option('od1.i2').value.reset()
|
|
|
|
assert await mix.option('od1.i2').value.get() == await newmix.option('od1.i2').value.get() == await newconf1.option('od1.i2').value.get() == await newconf2.option('od1.i2').value.get() == 1
|
|
|
|
assert await mix.option('od1.i2').owner.get() is await newmix.option('od1.i2').owner.get() is await newconf1.option('od1.i2').owner.get() is await newconf2.option('od1.i2').owner.get() is owners.default
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_mix_set():
|
|
|
|
mix = await make_mixconfig(double=True)
|
|
|
|
errors1 = await mix.value.set('od1.i1', 7, only_config=True)
|
|
|
|
errors2 = await mix.value.set('od1.i6', 7, only_config=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors1) == 0
|
|
|
|
assert len(errors2) == 2
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.config('mix.conf1')
|
|
|
|
conf1 = ret._config_bag.context
|
|
|
|
ret = await mix.config('mix.conf2')
|
|
|
|
conf2 = ret._config_bag.context
|
|
|
|
newconf1 = await mix.config('mix.conf1')
|
|
|
|
newconf2 = await mix.config('mix.conf2')
|
|
|
|
assert await newconf1.option('od1.i1').value.get() == await newconf2.option('od1.i1').value.get() == 7
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
|
|
|
dconfigs = []
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.config.find('i1', value=7)
|
|
|
|
for conf in await ret.config.list():
|
2018-10-31 18:26:20 +01:00
|
|
|
dconfigs.append(conf._config_bag.context)
|
|
|
|
assert [conf1, conf2] == dconfigs
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('od1.i1').value.set(8)
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
|
|
|
dconfigs = []
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.config.find('i1')
|
|
|
|
for conf in await ret.config.list():
|
2018-10-31 18:26:20 +01:00
|
|
|
dconfigs.append(conf._config_bag.context)
|
|
|
|
assert [conf1, conf2] == dconfigs
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.config.find('i1', value=7)
|
|
|
|
assert conf2 == list(await ret.config.list())[0]._config_bag.context
|
|
|
|
ret = await mix.config.find('i1', value=8)
|
|
|
|
assert conf1 == list(await ret.config.list())[0]._config_bag.context
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
|
|
|
dconfigs = []
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.config.find('i5', value=2)
|
|
|
|
for conf in await ret.config.list():
|
2018-10-31 18:26:20 +01:00
|
|
|
dconfigs.append(conf._config_bag.context)
|
|
|
|
assert [conf1, conf2] == dconfigs
|
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await mix.config.find('i1', value=10)
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await mix.config.find('not', value=10)
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await mix.config.find('i6')
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await mix.value.set('od1.i6', 7, only_config=True, force_default=True)
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await mix.value.set('od1.i6', 7, only_config=True, force_default_if_same=True)
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await mix.value.set('od1.i6', 7, only_config=True, force_dont_change_value=True)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_unconsistent():
|
2018-10-31 18:26:20 +01:00
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
i2 = IntOption('i2', '', default=1)
|
|
|
|
i3 = IntOption('i3', '')
|
|
|
|
i4 = IntOption('i4', '', default=2)
|
|
|
|
od1 = OptionDescription('od1', '', [i1, i2, i3, i4])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
|
|
|
od3 = OptionDescription('od3', '', [od1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od2, session_id='conf1')
|
|
|
|
conf2 = await Config(od2, session_id='conf2')
|
|
|
|
conf3 = await Config(od2, session_id='conf3')
|
2018-11-13 22:10:01 +01:00
|
|
|
i5 = IntOption('i5', '')
|
|
|
|
od4 = OptionDescription('od4', '', [i5])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf4 = await Config(od4, session_id='conf4')
|
|
|
|
mix = await MixConfig(od2, [conf1, conf2])
|
|
|
|
await mix.owner.set(owners.mix1)
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
await MixConfig(od2, "string")
|
2018-10-31 18:26:20 +01:00
|
|
|
# same descr but conf1 already in mix
|
2019-12-24 15:24:20 +01:00
|
|
|
assert len(list(await conf1.config.parents())) == 1
|
|
|
|
assert len(list(await conf3.config.parents())) == 0
|
|
|
|
new_mix = await MixConfig(od2, [conf1, conf3])
|
|
|
|
assert len(list(await conf1.config.parents())) == 2
|
|
|
|
assert len(list(await conf3.config.parents())) == 1
|
2018-10-31 18:26:20 +01:00
|
|
|
# not same descr
|
2019-12-24 15:24:20 +01:00
|
|
|
await MixConfig(od2, [conf3, conf4])
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_leadership():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_only()
|
|
|
|
ret = await mix.config.find('ip_admin_eth0')
|
|
|
|
configs = await ret.config.list()
|
|
|
|
assert len(configs) == 2
|
|
|
|
assert conf1._config_bag.context == configs[0]._config_bag.context
|
|
|
|
assert conf2._config_bag.context == configs[1]._config_bag.context
|
|
|
|
ret = await mix.config.find('netmask_admin_eth0')
|
|
|
|
configs = await ret.config.list()
|
|
|
|
assert len(configs) == 2
|
|
|
|
assert conf1._config_bag.context == configs[0]._config_bag.context
|
|
|
|
assert conf2._config_bag.context == configs[1]._config_bag.context
|
|
|
|
await mix.property.read_write()
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await mix.config.find('netmask_admin_eth0')
|
|
|
|
ret = await mix.unrestraint.config.find('netmask_admin_eth0')
|
|
|
|
configs = await ret.config.list()
|
|
|
|
assert len(configs) == 2
|
|
|
|
assert conf1._config_bag.context == configs[0]._config_bag.context
|
|
|
|
assert conf2._config_bag.context == configs[1]._config_bag.context
|
|
|
|
await mix.property.read_only()
|
|
|
|
ret = await mix.config.find('netmask_admin_eth0')
|
|
|
|
configs = await ret.config.list()
|
|
|
|
assert len(configs) == 2
|
|
|
|
assert conf1._config_bag.context == configs[0]._config_bag.context
|
|
|
|
assert conf2._config_bag.context == configs[1]._config_bag.context
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_leadership_value2():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2], session_id="mix")
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.8'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == None
|
|
|
|
#FIXME devrait raise ! assert await newconf1.option('ip_admin_eth0.ip_admin_eth0', 0).value.get() == None
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.reset()
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == None
|
|
|
|
await mix.option('ip_admin_eth0.netmask_admin_eth0', 0).value.set('255.255.255.0')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == '255.255.255.0'
|
|
|
|
await mix.option('ip_admin_eth0.netmask_admin_eth0', 0).value.set('255.255.0.0')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == '255.255.0.0'
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == '255.255.0.0'
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_leadership_value_default():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True)
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == None
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == None
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.netmask_admin_eth0', 0).value.set('255.255.255.0')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == '255.255.255.0'
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.netmask_admin_eth0', 0).value.set('255.255.0.0')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == '255.255.0.0'
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).value.get() == '255.255.0.0'
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_leadership_owners():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.owner.set(owners.mix1)
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.isdefault()
|
|
|
|
with pytest.raises(LeadershipError):
|
|
|
|
await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).owner.isdefault()
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() == owners.user
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).owner.isdefault()
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.reset()
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.isdefault()
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() == owners.mix1
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).owner.isdefault()
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.netmask_admin_eth0', 0).value.set('255.255.255.0')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() == owners.mix1
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).owner.get() == owners.mix1
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('ip_admin_eth0.netmask_admin_eth0', 0).value.set('255.255.0.0')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() == owners.mix1
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).owner.get() == owners.mix1
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.1'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() == owners.user
|
|
|
|
assert await newconf1.option('ip_admin_eth0.netmask_admin_eth0', 0).owner.get() == owners.mix1
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_force_default():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
await mix.owner.set('mix1')
|
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
#
|
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.1'])
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.2'])
|
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.2']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.3'])
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.3']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.2']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.3']
|
2018-10-31 18:26:20 +01:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.4'], force_default=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_force_dont_change_value():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
await mix.owner.set('mix1')
|
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.4'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.isdefault()
|
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.4'], force_dont_change_value=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_force_default_if_same():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
await mix.owner.set('mix1')
|
|
|
|
#
|
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
#
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.4'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.isdefault()
|
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.4'], force_default_if_same=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.mix1
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.mix1
|
|
|
|
#
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.3'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.3']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.mix1
|
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.5'], force_default_if_same=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.5']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.3']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.5']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.mix1
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_force_default_if_same_and_dont_change():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
await mix.owner.set('mix1')
|
|
|
|
#
|
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
#
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.4'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.isdefault()
|
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.4'], force_default_if_same=True, force_dont_change_value=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.4']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.mix1
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
#
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.3'])
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.3']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
errors = await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.5'], force_default_if_same=True, force_dont_change_value=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.5']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.3']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').owner.get() is owners.user
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_force_default_and_dont_change():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='rconf1')
|
|
|
|
conf2 = await Config(od, session_id='rconf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
await mix.owner.set('mix1')
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
await mix.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.4'], force_default=True, force_dont_change_value=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_properties_mix():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
2019-10-27 11:09:15 +01:00
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True, validators=[Calculation(valid_network_netmask, Params((ParamOption(ip_admin_eth0), ParamSelfOption())))])
|
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0], properties=('disabled',))
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
assert await newconf1.value.dict() == {}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_exception_mix():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
2019-10-27 11:09:15 +01:00
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", Calculation(raise_exception), multi=True, validators=[Calculation(valid_network_netmask, Params((ParamOption(ip_admin_eth0), ParamSelfOption())))])
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od, session_id='conf1')
|
|
|
|
conf2 = await Config(od, session_id='conf2')
|
|
|
|
mix = await MixConfig(od, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
with pytest.raises(ConfigError):
|
|
|
|
await conf1.value.dict()
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_callback():
|
2018-10-31 18:26:20 +01:00
|
|
|
val1 = StrOption('val1', "", 'val')
|
2019-09-28 16:32:48 +02:00
|
|
|
val2 = StrOption('val2', "", Calculation(return_value, Params(ParamOption(val1))))
|
|
|
|
val3 = StrOption('val3', "", Calculation(return_value, Params(ParamValue('yes'))))
|
|
|
|
val4 = StrOption('val4', "", Calculation(return_value, Params(kwargs={'value': ParamOption(val1)})))
|
|
|
|
val5 = StrOption('val5', "", Calculation(return_value, Params(kwargs={'value': ParamValue('yes')})))
|
2018-10-31 18:26:20 +01:00
|
|
|
maconfig = OptionDescription('rootconfig', '', [val1, val2, val3, val4, val5])
|
2019-12-24 15:24:20 +01:00
|
|
|
cfg = await Config(maconfig, session_id='cfg')
|
|
|
|
mix = await MixConfig(maconfig, [cfg])
|
|
|
|
await mix.property.read_write()
|
|
|
|
newcfg = await mix.config('cfg')
|
|
|
|
assert await newcfg.value.dict() == {'val3': 'yes', 'val2': 'val', 'val1': 'val', 'val5': 'yes', 'val4': 'val'}
|
|
|
|
await newcfg.option('val1').value.set('new')
|
|
|
|
assert await newcfg.value.dict() == {'val3': 'yes', 'val2': 'new', 'val1': 'new', 'val5': 'yes', 'val4': 'new'}
|
|
|
|
await newcfg.option('val1').value.reset()
|
|
|
|
await mix.option('val1').value.set('new')
|
|
|
|
assert await newcfg.value.dict() == {'val3': 'yes', 'val2': 'new', 'val1': 'new', 'val5': 'yes', 'val4': 'new'}
|
|
|
|
await newcfg.option('val4').value.set('new1')
|
|
|
|
assert await newcfg.value.dict() == {'val3': 'yes', 'val2': 'new', 'val1': 'new', 'val5': 'yes', 'val4': 'new1'}
|
|
|
|
await newcfg.option('val4').value.reset()
|
|
|
|
await mix.option('val4').value.set('new1')
|
|
|
|
assert await newcfg.value.dict() == {'val3': 'yes', 'val2': 'new', 'val1': 'new', 'val5': 'yes', 'val4': 'new1'}
|
|
|
|
await mix.option('val4').value.reset()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_callback_follower():
|
2018-10-31 18:26:20 +01:00
|
|
|
val = StrOption('val', "", default='val')
|
2019-09-28 16:32:48 +02:00
|
|
|
val1 = StrOption('val1', "", [Calculation(return_value, Params(ParamOption(val)))], multi=True)
|
|
|
|
val3 = StrOption('val2', "", Calculation(return_value, Params(ParamOption(val1))), multi=True)
|
|
|
|
val4 = StrOption('val3', "", Calculation(return_value, Params(ParamOption(val1))), multi=True)
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('val1', '', [val1, val3, val4])
|
2018-10-31 18:26:20 +01:00
|
|
|
od = OptionDescription('root', '', [interface1])
|
|
|
|
maconfig = OptionDescription('rootconfig', '', [val, interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
cfg = await Config(maconfig, session_id='cfg1')
|
|
|
|
mix = await MixConfig(maconfig, [cfg])
|
|
|
|
await mix.property.read_write()
|
|
|
|
newcfg1 = await mix.config('cfg1')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val'], 'val1.val1': ['val'], 'val1.val3': ['val'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newcfg1.option('val').value.set('val1')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val1'], 'val1.val1': ['val1'], 'val1.val3': ['val1'], 'val': 'val1'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newcfg1.option('val').value.reset()
|
|
|
|
await mix.option('val').value.set('val1')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val1'], 'val1.val1': ['val1'], 'val1.val3': ['val1'], 'val': 'val1'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val').value.reset()
|
|
|
|
await newcfg1.option('val1.val2', 0).value.set('val2')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2'], 'val1.val1': ['val'], 'val1.val3': ['val'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newcfg1.option('val1.val2', 0).value.reset()
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val'], 'val1.val1': ['val'], 'val1.val3': ['val'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val1.val2', 0).value.set('val2')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2'], 'val1.val1': ['val'], 'val1.val3': ['val'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val1.val1').value.set(['val'])
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2'], 'val1.val1': ['val'], 'val1.val3': ['val'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newcfg1.option('val1.val3', 0).value.set('val6')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2'], 'val1.val1': ['val'], 'val1.val3': ['val6'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val1.val2', 0).value.reset()
|
|
|
|
await newcfg1.option('val1.val3', 0).value.reset()
|
|
|
|
await newcfg1.option('val1.val1').value.set(['val3'])
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val3'], 'val1.val1': ['val3'], 'val1.val3': ['val3'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newcfg1.option('val1.val1').value.reset()
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val'], 'val1.val1': ['val'], 'val1.val3': ['val'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val1.val1').value.set(['val3'])
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val3'], 'val1.val1': ['val3'], 'val1.val3': ['val3'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await newcfg1.option('val1.val2', 0).value.set('val2')
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2'], 'val1.val1': ['val3'], 'val1.val3': ['val3'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val1.val1').value.set(['val3', 'rah'])
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2', 'rah'], 'val1.val1': ['val3', 'rah'], 'val1.val3': ['val3', 'rah'], 'val': 'val'}
|
2019-08-05 22:31:56 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.option('val1.val1').value.pop(1)
|
|
|
|
await mix.option('val1.val1').value.set(['val4'])
|
|
|
|
assert await newcfg1.value.dict() == {'val1.val2': ['val2'], 'val1.val1': ['val4'], 'val1.val3': ['val4'], 'val': 'val'}
|
2018-10-31 18:26:20 +01:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_meta_reset():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od0 = OptionDescription('root', '', [interface1])
|
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od1 = OptionDescription('root', '', [interface1])
|
|
|
|
ip_admin_eth0 = StrOption('ip_admin_eth0', "ip", multi=True)
|
|
|
|
netmask_admin_eth0 = StrOption('netmask_admin_eth0', "mask", multi=True, properties=('hidden',))
|
2019-02-23 19:06:23 +01:00
|
|
|
interface1 = Leadership('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2018-10-31 18:26:20 +01:00
|
|
|
od2 = OptionDescription('root', '', [interface1])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(od0, session_id='conf1')
|
|
|
|
conf2 = await Config(od1, session_id='conf2')
|
|
|
|
meta = await MixConfig(od2, [conf1, conf2])
|
|
|
|
await meta.property.read_write()
|
|
|
|
await meta.owner.set('mix1')
|
|
|
|
assert await meta.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
newconf1 = await meta.config('conf1')
|
|
|
|
newconf2 = await meta.config('conf2')
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
errors = await meta.value.set('ip_admin_eth0.ip_admin_eth0', ['192.168.1.1'])
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(errors) == 0
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await meta.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.set(['192.168.1.2'])
|
|
|
|
assert await meta.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.2']
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == ['192.168.1.1']
|
|
|
|
await meta.value.reset('ip_admin_eth0.ip_admin_eth0')
|
|
|
|
assert await meta.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf1.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
assert await newconf2.option('ip_admin_eth0.ip_admin_eth0').value.get() == []
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_properties_mix_copy():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True, properties=('disabled',))
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True, properties=('disabled',))
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True, properties=('disabled',))
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
conf2 = await Config(interface1, session_id='conf2')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(interface2, [conf1, conf2], session_id='mix1')
|
|
|
|
await mix.property.read_write()
|
|
|
|
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
conf3 = await newconf1.config.copy(session_id='conf3')
|
|
|
|
newconf3 = await mix.config('conf3')
|
2019-08-05 22:31:56 +02:00
|
|
|
# old fashion
|
2019-12-24 15:24:20 +01:00
|
|
|
mix2 = await conf3.config.metaconfig()
|
|
|
|
assert await mix.config.name() == await mix2.config.name()
|
2019-08-05 22:31:56 +02:00
|
|
|
# new method
|
2019-12-24 15:24:20 +01:00
|
|
|
mix2 = list(await conf3.config.parents())
|
2019-08-05 22:31:56 +02:00
|
|
|
assert len(mix2) == 1
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.config.name() == await mix2[0].config.name()
|
|
|
|
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
assert await conf2.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
assert await newconf3.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
await mix.option('ip_admin_eth0').value.set(['192.168.1.2'])
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.2']}
|
|
|
|
assert await conf2.value.dict() == {'ip_admin_eth0': ['192.168.1.2']}
|
|
|
|
assert await newconf3.value.dict() == {'ip_admin_eth0': ['192.168.1.2']}
|
|
|
|
ret = await mix.value.set('ip_admin_eth0', ['192.168.1.3'], force_default_if_same=True)
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.3']}
|
|
|
|
assert await conf2.value.dict() == {'ip_admin_eth0': ['192.168.1.3']}
|
|
|
|
assert await newconf3.value.dict() == {'ip_admin_eth0': ['192.168.1.3']}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_properties_mix_deepcopy():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True,
|
|
|
|
properties=('disabled',))
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True,
|
|
|
|
properties=('disabled',))
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True,
|
|
|
|
properties=('disabled',))
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
conf2 = await Config(interface1, session_id='conf2')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(interface2, [conf1, conf2])
|
|
|
|
await mix.permissive.add('hidden')
|
|
|
|
await mix.property.read_write()
|
|
|
|
|
|
|
|
newconf1 = await mix.config('conf1')
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
mix2 = await newconf1.config.deepcopy(session_id='conf3')
|
|
|
|
newconf3 = await mix2.config('conf3')
|
2018-10-31 18:26:20 +01:00
|
|
|
assert mix != mix2
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await mix.permissive.get() == await mix2.permissive.get()
|
|
|
|
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
assert await newconf3.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
await mix.option('ip_admin_eth0').value.set(['192.168.1.2'])
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.2']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth0': ['192.168.1.2']}
|
|
|
|
assert await newconf3.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
await mix.value.set('ip_admin_eth0', ['192.168.1.3'], force_default_if_same=True)
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth0': ['192.168.1.3']}
|
|
|
|
assert await newconf3.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_properties_submix_deepcopy():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True,
|
|
|
|
properties=('disabled',))
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True,
|
|
|
|
properties=('disabled',))
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True,
|
|
|
|
properties=('disabled',))
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
mix1 = await MixConfig(interface1, [conf1], session_id='mix1')
|
|
|
|
mix2 = await MixConfig(interface2, [mix1], session_id='mix2')
|
|
|
|
mix_copy = await conf1.config.deepcopy(session_id='conf2',
|
|
|
|
metaconfig_prefix='copy_')
|
|
|
|
assert await mix_copy.config.name() == 'copy_mix2'
|
|
|
|
ret = await mix_copy.config('copy_mix1')
|
|
|
|
assert await ret.config.name() == 'copy_mix1'
|
|
|
|
ret = await mix_copy.config('copy_mix1.conf2')
|
|
|
|
assert await ret.config.name() == 'conf2'
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_properties_submix_deepcopy_owner():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip")
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth1', "mask")
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth1', "ip")
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask")
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip")
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask")
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
await conf1.owner.set('conf1_user')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
mix1 = await MixConfig(interface1, [conf1], session_id='mix1')
|
|
|
|
await mix1.owner.set('mix1_user')
|
|
|
|
mix2 = await MixConfig(interface2, [mix1], session_id='mix2')
|
|
|
|
await mix2.owner.set('mix2_user')
|
|
|
|
#
|
|
|
|
await conf1.option('ip_admin_eth0').value.set('192.168.0.1')
|
|
|
|
assert await conf1.option('ip_admin_eth0').owner.get() == 'conf1_user'
|
|
|
|
await mix2.option('ip_admin_eth0').value.set('192.168.0.3')
|
|
|
|
assert await mix2.option('ip_admin_eth0').owner.get() == 'mix2_user'
|
|
|
|
#
|
|
|
|
mix2_copy = await conf1.config.deepcopy(session_id='conf2',
|
|
|
|
metaconfig_prefix='copy_')
|
|
|
|
await mix2_copy.option('netmask_admin_eth0').value.set('255.255.255.255')
|
|
|
|
assert await mix2_copy.option('ip_admin_eth0').value.get() == '192.168.0.3'
|
|
|
|
assert await mix2_copy.option('ip_admin_eth0').owner.get() == 'mix2_user'
|
|
|
|
assert await mix2_copy.option('netmask_admin_eth0').owner.get() == 'mix2_user'
|
|
|
|
#
|
|
|
|
mix1_copy = await mix2_copy.config('copy_mix1')
|
|
|
|
await mix1_copy.option('netmask_admin_eth0').value.set('255.255.255.255')
|
|
|
|
#
|
|
|
|
conf2 = await mix1_copy.config('conf2')
|
|
|
|
await conf2.owner.set('conf2_user')
|
|
|
|
await conf2.option('netmask_admin_eth1').value.set('255.255.255.255')
|
|
|
|
assert await conf2.option('netmask_admin_eth1').owner.get() == 'conf2_user'
|
|
|
|
assert await conf2.option('ip_admin_eth0').value.get() == '192.168.0.1'
|
|
|
|
assert await conf2.option('ip_admin_eth0').owner.get() == 'conf1_user'
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_properties_mix_set_value():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True, properties=('disabled',))
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth1', "mask", multi=True, properties=('disabled',))
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
netmask_admin_eth0 = NetmaskOption('netmask_admin_eth0', "mask", multi=True, properties=('disabled',))
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, netmask_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
conf2 = await Config(interface1, session_id='conf2')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(interface2, [conf1, conf2])
|
|
|
|
await mix.property.read_write()
|
|
|
|
newconf2 = await mix.config('conf2')
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
ret = await mix.value.set('netmask_admin_eth0', ['255.255.255.255'], only_config=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], PropertiesOptionError)
|
|
|
|
assert isinstance(ret[1], AttributeError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('netmask_admin_eth0', ['255.255.255.255'], force_default=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], AttributeError)
|
|
|
|
assert isinstance(ret[1], PropertiesOptionError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('netmask_admin_eth0', ['255.255.255.255'], force_dont_change_value=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 3
|
|
|
|
assert isinstance(ret[0], PropertiesOptionError)
|
|
|
|
assert isinstance(ret[1], AttributeError)
|
|
|
|
assert isinstance(ret[2], PropertiesOptionError)
|
|
|
|
del ret[2]
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('netmask_admin_eth0', ['255.255.255.255'], force_default_if_same=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], AttributeError)
|
|
|
|
assert isinstance(ret[1], PropertiesOptionError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('ip_admin_eth0', '255.255.255.255', only_config=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], AttributeError)
|
|
|
|
assert isinstance(ret[1], ValueError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('ip_admin_eth0', '255.255.255.255', force_default=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], AttributeError)
|
|
|
|
assert isinstance(ret[1], ValueError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('ip_admin_eth0', '255.255.255.255', force_dont_change_value=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], AttributeError)
|
|
|
|
assert isinstance(ret[1], ValueError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
2019-12-24 15:24:20 +01:00
|
|
|
ret = await mix.value.set('ip_admin_eth0', '255.255.255.255', force_default_if_same=True)
|
2018-10-31 18:26:20 +01:00
|
|
|
assert len(ret) == 2
|
|
|
|
assert isinstance(ret[0], AttributeError)
|
|
|
|
assert isinstance(ret[1], ValueError)
|
|
|
|
del ret[1]
|
|
|
|
del ret[0]
|
|
|
|
del ret
|
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_different_default():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.2'])
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.3'])
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.4'])
|
|
|
|
ip_admin_eth1 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.5'])
|
|
|
|
interface3 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, ip_admin_eth1])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.6'])
|
|
|
|
interface4 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
conf2 = await Config(interface1, session_id='conf2')
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(interface2, [conf1, conf2], session_id='submix1')
|
|
|
|
mix = await MixConfig(interface3, [mix], session_id='submix2')
|
|
|
|
mix = await MixConfig(interface4, [mix])
|
|
|
|
await mix.property.read_write()
|
|
|
|
#
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.6']}
|
|
|
|
newsubmix2 = await mix.config('submix2')
|
|
|
|
newsubmix1 = await mix.config('submix2.submix1')
|
|
|
|
newconf1 = await mix.config('submix2.submix1.conf1')
|
|
|
|
newconf2 = await mix.config('submix2.submix1.conf2')
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.4'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
#
|
|
|
|
await mix.option('ip_admin_eth0').value.set(['192.168.1.7'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.7'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
#
|
|
|
|
await newsubmix2.option('ip_admin_eth0').value.set(['192.168.1.8'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.8']}
|
|
|
|
#
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await newsubmix1.option('ip_admin_eth0').value.set(['192.168.1.9'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.8']}
|
|
|
|
#
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await newconf2.option('ip_admin_eth0').value.set(['192.168.1.9'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.8']}
|
|
|
|
#
|
|
|
|
await newconf1.option('ip_admin_eth0').value.set(['192.168.1.9'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
#
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await mix.option('ip_admin_eth1').value.set(['192.168.1.10'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
#
|
|
|
|
await newsubmix2.option('ip_admin_eth1').value.set(['192.168.1.10'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
#
|
|
|
|
await newsubmix1.option('ip_admin_eth1').value.set(['192.168.1.11'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.11']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.11']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
#
|
|
|
|
await newconf2.option('ip_admin_eth1').value.set(['192.168.1.12'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.11']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.12']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
#
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
await newconf1.option('ip_admin_eth1').value.set(['192.168.1.13'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await newsubmix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await newsubmix1.value.dict() == {'ip_admin_eth1': ['192.168.1.11']}
|
|
|
|
assert await newconf2.value.dict() == {'ip_admin_eth1': ['192.168.1.12']}
|
|
|
|
assert await newconf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_different_default_reset():
|
2018-10-31 18:26:20 +01:00
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.1'])
|
|
|
|
interface0 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.2'])
|
|
|
|
interface1 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.3'])
|
|
|
|
interface2 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.4'])
|
|
|
|
ip_admin_eth1 = NetworkOption('ip_admin_eth1', "ip", multi=True, default=['192.168.1.5'])
|
|
|
|
interface3 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0, ip_admin_eth1])
|
|
|
|
ip_admin_eth0 = NetworkOption('ip_admin_eth0', "ip", multi=True, default=['192.168.1.6'])
|
|
|
|
interface4 = OptionDescription('ip_admin_eth0', '', [ip_admin_eth0])
|
2019-12-24 15:24:20 +01:00
|
|
|
conf1 = await Config(interface0, session_id='conf1')
|
|
|
|
await conf1.property.read_write()
|
|
|
|
conf2 = await Config(interface1, session_id='conf2')
|
|
|
|
await conf2.property.read_write()
|
|
|
|
mix = await MixConfig(interface2, [conf1, conf2], session_id='submix1')
|
|
|
|
mix = await MixConfig(interface3, [mix], session_id='submix2')
|
|
|
|
mix = await MixConfig(interface4, [mix])
|
|
|
|
await mix.property.read_write()
|
|
|
|
#
|
|
|
|
await mix.option('ip_admin_eth0').value.set(['192.168.1.7'])
|
|
|
|
submix2 = await mix.config('submix2')
|
|
|
|
submix1 = await mix.config('submix2.submix1')
|
|
|
|
conf1 = await mix.config('submix2.submix1.conf1')
|
|
|
|
conf2 = await mix.config('submix2.submix1.conf2')
|
|
|
|
await submix2.option('ip_admin_eth0').value.set(['192.168.1.8'])
|
|
|
|
await submix2.option('ip_admin_eth1').value.set(['192.168.1.10'])
|
|
|
|
await submix1.option('ip_admin_eth1').value.set(['192.168.1.11'])
|
|
|
|
await conf2.option('ip_admin_eth1').value.set(['192.168.1.12'])
|
|
|
|
await conf1.option('ip_admin_eth0').value.set(['192.168.1.9'])
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.7']}
|
|
|
|
assert await submix2.value.dict() == {'ip_admin_eth0': ['192.168.1.8'], 'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await submix1.value.dict() == {'ip_admin_eth1': ['192.168.1.11']}
|
|
|
|
assert await conf2.value.dict() == {'ip_admin_eth1': ['192.168.1.12']}
|
|
|
|
assert await conf1.value.dict() == {'ip_admin_eth0': ['192.168.1.9']}
|
|
|
|
#
|
|
|
|
await mix.value.reset('ip_admin_eth0')
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.6']}
|
|
|
|
assert await submix2.value.dict() == {'ip_admin_eth0': ['192.168.1.4'], 'ip_admin_eth1': ['192.168.1.10']}
|
|
|
|
assert await submix1.value.dict() == {'ip_admin_eth1': ['192.168.1.11']}
|
|
|
|
assert await conf2.value.dict() == {'ip_admin_eth1': ['192.168.1.12']}
|
|
|
|
assert await conf1.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
#
|
|
|
|
await mix.value.reset('ip_admin_eth1')
|
|
|
|
assert await mix.value.dict() == {'ip_admin_eth0': ['192.168.1.6']}
|
|
|
|
assert await submix2.value.dict() == {'ip_admin_eth0': ['192.168.1.4'], 'ip_admin_eth1': ['192.168.1.5']}
|
|
|
|
assert await submix1.value.dict() == {'ip_admin_eth1': ['192.168.1.3']}
|
|
|
|
assert await conf2.value.dict() == {'ip_admin_eth1': ['192.168.1.2']}
|
|
|
|
assert await conf1.value.dict() == {'ip_admin_eth0': ['192.168.1.1']}
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_pop_config():
|
2019-04-05 21:00:25 +02:00
|
|
|
od = make_description()
|
2019-12-24 15:24:20 +01:00
|
|
|
config1 = await Config(od, session_id='config1')
|
|
|
|
config2 = await Config(od, session_id='config2')
|
|
|
|
mix = await MixConfig(od, [config1, config2])
|
|
|
|
await mix.option('od1.i1').value.set(2)
|
|
|
|
#
|
|
|
|
assert len(list(await mix.config.list())) == 2
|
|
|
|
newconfig1 = await mix.config('config1')
|
|
|
|
assert await newconfig1.value.dict() == {'od1.i1': 2, 'od1.i2': 1, 'od1.i3': None, 'od1.i4': 2, 'od1.i5': [2], 'od1.i6': None}
|
|
|
|
newconf1 = await mix.config.pop('config1')
|
2019-04-05 21:00:25 +02:00
|
|
|
try:
|
2019-12-24 15:24:20 +01:00
|
|
|
await mix.config('config1')
|
2019-04-05 21:00:25 +02:00
|
|
|
except ConfigError:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
raise Exception('must raise')
|
2019-12-24 15:24:20 +01:00
|
|
|
assert await newconf1.value.dict() == {'od1.i1': None, 'od1.i2': 1, 'od1.i3': None, 'od1.i4': 2, 'od1.i5': [2], 'od1.i6': None}
|
2019-04-05 21:00:25 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
assert len(list(await mix.config.list())) == 1
|
|
|
|
with pytest.raises(ConfigError):
|
|
|
|
await mix.config.pop('newconf1')
|
2019-04-05 21:00:25 +02:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_add_config():
|
2019-04-05 21:00:25 +02:00
|
|
|
od = make_description()
|
2019-12-24 15:24:20 +01:00
|
|
|
config1 = await Config(od, session_id='config1')
|
|
|
|
config2 = await Config(od, session_id='config2')
|
|
|
|
mix = await MixConfig(od, [config1, config2])
|
|
|
|
await mix.option('od1.i1').value.set(2)
|
2019-04-05 21:00:25 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
assert len(list(await mix.config.list())) == 2
|
|
|
|
config = await Config(od, session_id='new')
|
|
|
|
assert await config.value.dict() == {'od1.i1': None, 'od1.i2': 1, 'od1.i3': None, 'od1.i4': 2, 'od1.i5': [2], 'od1.i6': None}
|
|
|
|
await mix.config.add(config)
|
2019-04-05 21:00:25 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
assert len(list(await mix.config.list())) == 3
|
|
|
|
assert await config.value.dict() == {'od1.i1': 2, 'od1.i2': 1, 'od1.i3': None, 'od1.i4': 2, 'od1.i5': [2], 'od1.i6': None}
|
2019-04-05 21:00:25 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
with pytest.raises(ConflictError):
|
|
|
|
await mix.config.add(config)
|
2019-04-05 21:00:25 +02:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_mix_add_config_readd():
|
2019-04-05 21:00:25 +02:00
|
|
|
od = make_description()
|
2019-12-24 15:24:20 +01:00
|
|
|
mix = await MixConfig(od, [])
|
|
|
|
mix2 = await MixConfig(od, [])
|
2019-04-05 21:00:25 +02:00
|
|
|
#
|
2019-12-24 15:24:20 +01:00
|
|
|
config = await Config(od, session_id='new')
|
|
|
|
await mix.config.add(config)
|
|
|
|
await mix2.config.add(config)
|
|
|
|
assert len(list(await config.config.parents())) == 2
|
2019-06-05 12:33:00 +02:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_meta_new_mixconfig():
|
2019-06-05 12:33:00 +02:00
|
|
|
od = make_description()
|
2019-12-24 15:24:20 +01:00
|
|
|
cfg = await Config(od, session_id='cfg1')
|
|
|
|
meta = await MetaConfig([cfg])
|
|
|
|
assert isinstance(await meta.config.new('mixconfig', type="mixconfig"), MixConfig)
|
2019-06-05 14:37:58 +02:00
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_meta_get_mixconfig():
|
2019-06-05 14:37:58 +02:00
|
|
|
od = make_description()
|
2019-12-24 15:24:20 +01:00
|
|
|
cfg = await Config(od, session_id='conf1')
|
|
|
|
meta = await MetaConfig([cfg])
|
|
|
|
await meta.config.new('mixconfig', type="mixconfig")
|
|
|
|
assert isinstance(await meta.config.get('mixconfig'), MixConfig)
|
|
|
|
with pytest.raises(ConfigError):
|
|
|
|
await meta.config.get('unknown')
|
|
|
|
newmix = await meta.config.get('mixconfig')
|
|
|
|
await newmix.config.add(await MixConfig(od, [], session_id='mixconfig2'))
|
|
|
|
assert isinstance(await newmix.config.get('mixconfig2'), MixConfig)
|