remove group constrainte, it's now a normal group
This commit is contained in:
18
tests/dictionaries_old/20override/00-base.xml
Normal file
18
tests/dictionaries_old/20override/00-base.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<services>
|
||||
<service name="test">
|
||||
<override/>
|
||||
</service>
|
||||
<service name="test2">
|
||||
<override engine="jinja2"/>
|
||||
</service>
|
||||
</services>
|
||||
<variables>
|
||||
<family name="general">
|
||||
<variable name="mode_conteneur_actif" type="string" description="No change">
|
||||
<value>non</value>
|
||||
</variable>
|
||||
</family>
|
||||
</variables>
|
||||
</rougail>
|
0
tests/dictionaries_old/20override/__init__.py
Normal file
0
tests/dictionaries_old/20override/__init__.py
Normal file
30
tests/dictionaries_old/20override/makedict/after.json
Normal file
30
tests/dictionaries_old/20override/makedict/after.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "non"
|
||||
},
|
||||
"services.test.overrides.test_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test2.overrides.test2_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test2.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test2.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
9
tests/dictionaries_old/20override/makedict/base.json
Normal file
9
tests/dictionaries_old/20override/makedict/base.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": "non",
|
||||
"services.test.overrides.test_service.activate": true,
|
||||
"services.test.activate": true,
|
||||
"services.test.manage": true,
|
||||
"services.test2.overrides.test2_service.activate": true,
|
||||
"services.test2.activate": true,
|
||||
"services.test2.manage": true
|
||||
}
|
30
tests/dictionaries_old/20override/makedict/before.json
Normal file
30
tests/dictionaries_old/20override/makedict/before.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "non"
|
||||
},
|
||||
"services.test.overrides.test_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test2.overrides.test2_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test2.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test2.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
non
|
@ -0,0 +1 @@
|
||||
non
|
35
tests/dictionaries_old/20override/tiramisu/base.py
Normal file
35
tests/dictionaries_old/20override/tiramisu/base.py
Normal file
@ -0,0 +1,35 @@
|
||||
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({"mandatory", "normal"}))
|
||||
option_2 = OptionDescription(name="general", doc="general", children=[option_3], properties=frozenset({"normal"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2])
|
||||
option_8 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_7 = OptionDescription(name="test_service", doc="test.service", children=[option_8])
|
||||
option_7.impl_set_information('name', "test")
|
||||
option_7.impl_set_information('source', "test.service")
|
||||
option_6 = OptionDescription(name="overrides", doc="overrides", children=[option_7])
|
||||
option_9 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_10 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_5 = OptionDescription(name="test", doc="test", children=[option_6, option_9, option_10])
|
||||
option_14 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_13 = OptionDescription(name="test2_service", doc="test2.service", children=[option_14])
|
||||
option_13.impl_set_information('engine', "jinja2")
|
||||
option_13.impl_set_information('name', "test2")
|
||||
option_13.impl_set_information('source', "test2.service")
|
||||
option_12 = OptionDescription(name="overrides", doc="overrides", children=[option_13])
|
||||
option_15 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_16 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_11 = OptionDescription(name="test2", doc="test2", children=[option_12, option_15, option_16])
|
||||
option_4 = OptionDescription(name="services", doc="services", children=[option_5, option_11], properties=frozenset({"hidden"}))
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1, option_4])
|
1
tests/dictionaries_old/20override/tmpl/test.service
Normal file
1
tests/dictionaries_old/20override/tmpl/test.service
Normal file
@ -0,0 +1 @@
|
||||
%%mode_conteneur_actif
|
1
tests/dictionaries_old/20override/tmpl/test2.service
Normal file
1
tests/dictionaries_old/20override/tmpl/test2.service
Normal file
@ -0,0 +1 @@
|
||||
{{ mode_conteneur_actif }}
|
Reference in New Issue
Block a user