add space parameter
This commit is contained in:
19
tests/dictionaries/40space_param/00_base.xml
Normal file
19
tests/dictionaries/40space_param/00_base.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.10">
|
||||
<services/>
|
||||
<variables>
|
||||
<family name="proxy_authentifie" description="proxy authentifié">
|
||||
<variable name="toto1" type="port" description="Port d'écoute du proxy" mode="expert">
|
||||
</variable>
|
||||
<variable name="toto2" type="port" description="Port d'écoute du proxy NTLM" mode="expert">
|
||||
<value>3127</value>
|
||||
</variable>
|
||||
</family>
|
||||
</variables>
|
||||
<constraints>
|
||||
<fill name="calc_multi_condition">
|
||||
<param type="space"/>
|
||||
<target>toto1</target>
|
||||
</fill>
|
||||
</constraints>
|
||||
</rougail>
|
0
tests/dictionaries/40space_param/__init__.py
Normal file
0
tests/dictionaries/40space_param/__init__.py
Normal file
10
tests/dictionaries/40space_param/makedict/after.json
Normal file
10
tests/dictionaries/40space_param/makedict/after.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"rougail.proxy_authentifie.toto1": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.proxy_authentifie.toto2": {
|
||||
"owner": "default",
|
||||
"value": "3127"
|
||||
}
|
||||
}
|
4
tests/dictionaries/40space_param/makedict/base.json
Normal file
4
tests/dictionaries/40space_param/makedict/base.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"rougail.proxy_authentifie.toto1": null,
|
||||
"rougail.proxy_authentifie.toto2": "3127"
|
||||
}
|
10
tests/dictionaries/40space_param/makedict/before.json
Normal file
10
tests/dictionaries/40space_param/makedict/before.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"rougail.proxy_authentifie.toto1": {
|
||||
"owner": "default",
|
||||
"value": null
|
||||
},
|
||||
"rougail.proxy_authentifie.toto2": {
|
||||
"owner": "default",
|
||||
"value": "3127"
|
||||
}
|
||||
}
|
21
tests/dictionaries/40space_param/tiramisu/base.py
Normal file
21
tests/dictionaries/40space_param/tiramisu/base.py
Normal file
@ -0,0 +1,21 @@
|
||||
from importlib.machinery import SourceFileLoader as _SourceFileLoader
|
||||
from importlib.util import spec_from_loader as _spec_from_loader, module_from_spec as _module_from_spec
|
||||
class func:
|
||||
pass
|
||||
_loader = _SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py')
|
||||
_spec = _spec_from_loader(_loader.name, _loader)
|
||||
_func = _module_from_spec(_spec)
|
||||
_loader.exec_module(_func)
|
||||
for function in dir(_func):
|
||||
if function.startswith('_'):
|
||||
continue
|
||||
setattr(func, function, getattr(_func, function))
|
||||
try:
|
||||
from tiramisu3 import *
|
||||
except:
|
||||
from tiramisu import *
|
||||
option_3 = PortOption(name="toto1", doc="Port d'écoute du proxy", default=Calculation(func.calc_multi_condition, Params((ParamValue(" ")))), allow_private=True, properties=frozenset({"expert"}))
|
||||
option_4 = PortOption(name="toto2", doc="Port d'écoute du proxy NTLM", default="3127", allow_private=True, properties=frozenset({"expert", "mandatory"}))
|
||||
option_2 = OptionDescription(name="proxy_authentifie", doc="proxy authentifié", children=[option_3, option_4], properties=frozenset({"expert"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2])
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1])
|
@ -70,7 +70,7 @@ async def launch_flattener(test_dir):
|
||||
if not isfile(makedict_file):
|
||||
raise Exception('dict is not empty')
|
||||
with open(makedict_file, 'r') as fh:
|
||||
assert load(fh) == loads(dumps(config_dict))
|
||||
assert load(fh) == loads(dumps(config_dict)), f"error in file {makedict_file}"
|
||||
#
|
||||
await value_owner(makedict_before, config)
|
||||
# deploy
|
||||
@ -110,7 +110,8 @@ async def value_owner(makedict_value_owner, config):
|
||||
dump(ret, fh, indent=4)
|
||||
fh.write('\n')
|
||||
with open(makedict_value_owner, 'r') as fh:
|
||||
assert load(fh) == loads(dumps(ret))
|
||||
assert load(fh) == loads(dumps(ret)), f"error in file {makedict_value_owner}"
|
||||
|
||||
|
||||
|
||||
@mark.asyncio
|
||||
|
Reference in New Issue
Block a user