remove group constrainte, it's now a normal group
This commit is contained in:
10
tests/dictionaries_old/60action_external/00-base.xml
Normal file
10
tests/dictionaries_old/60action_external/00-base.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<variables>
|
||||
<family name="general" description="général">
|
||||
<variable name="mode_conteneur_actif" type="string" description="No change" hidden="True">
|
||||
<value>non</value>
|
||||
</variable>
|
||||
</family>
|
||||
</variables>
|
||||
</rougail>
|
@ -0,0 +1,19 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<variables>
|
||||
<family name="test">
|
||||
<variable name="delay" type="number" description="délai en minutes avant lancement">
|
||||
<value>0</value>
|
||||
</variable>
|
||||
<variable name="calc_url" type="web_address" description="domain" hidden="True">
|
||||
<value>0</value>
|
||||
</variable>
|
||||
</family>
|
||||
</variables>
|
||||
<constraints>
|
||||
<fill name="calc_val">
|
||||
<param>http://localhost/</param>
|
||||
<target>extra.test.calc_url</target>
|
||||
</fill>
|
||||
</constraints>
|
||||
</rougail>
|
14
tests/dictionaries_old/60action_external/makedict/after.json
Normal file
14
tests/dictionaries_old/60action_external/makedict/after.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "non"
|
||||
},
|
||||
"extra.test.delay": {
|
||||
"owner": "default",
|
||||
"value": 0
|
||||
},
|
||||
"extra.test.calc_url": {
|
||||
"owner": "default",
|
||||
"value": "http://localhost/"
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": "non",
|
||||
"extra.test.delay": 0,
|
||||
"extra.test.calc_url": "http://localhost/"
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "non"
|
||||
},
|
||||
"extra.test.delay": {
|
||||
"owner": "default",
|
||||
"value": 0
|
||||
},
|
||||
"extra.test.calc_url": {
|
||||
"owner": "default",
|
||||
"value": "http://localhost/"
|
||||
}
|
||||
}
|
21
tests/dictionaries_old/60action_external/tiramisu/base.py
Normal file
21
tests/dictionaries_old/60action_external/tiramisu/base.py
Normal file
@ -0,0 +1,21 @@
|
||||
from importlib.machinery import SourceFileLoader
|
||||
from importlib.util import spec_from_loader, module_from_spec
|
||||
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 key, value in dict(locals()).items():
|
||||
if key != ['SourceFileLoader', 'func']:
|
||||
setattr(func, key, value)
|
||||
try:
|
||||
from tiramisu3 import *
|
||||
except:
|
||||
from tiramisu import *
|
||||
option_3 = StrOption(name="mode_conteneur_actif", doc="No change", default="non", properties=frozenset({"force_default_on_freeze", "frozen", "hidden", "mandatory", "normal"}))
|
||||
option_2 = OptionDescription(name="general", doc="général", children=[option_3], properties=frozenset({"normal"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2])
|
||||
option_6 = IntOption(name="delay", doc="délai en minutes avant lancement", default=0, properties=frozenset({"mandatory", "normal"}))
|
||||
option_7 = URLOption(name="calc_url", doc="domain", default=Calculation(func.calc_val, Params((ParamValue("http://localhost/")))), allow_ip=True, allow_without_dot=True, properties=frozenset({"force_default_on_freeze", "frozen", "hidden", "normal"}))
|
||||
option_5 = OptionDescription(name="test", doc="test", children=[option_6, option_7], properties=frozenset({"normal"}))
|
||||
option_4 = OptionDescription(name="extra", doc="extra", children=[option_5])
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1, option_4])
|
Reference in New Issue
Block a user