remove group constrainte, it's now a normal group
This commit is contained in:
15
tests/dictionaries_old/20notemplating/00-base.xml
Normal file
15
tests/dictionaries_old/20notemplating/00-base.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<services>
|
||||
<service name="test">
|
||||
<file engine="none">/etc/file</file>
|
||||
</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/20notemplating/__init__.py
Normal file
0
tests/dictionaries_old/20notemplating/__init__.py
Normal file
22
tests/dictionaries_old/20notemplating/makedict/after.json
Normal file
22
tests/dictionaries_old/20notemplating/makedict/after.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "non"
|
||||
},
|
||||
"services.test.files.file.name": {
|
||||
"owner": "default",
|
||||
"value": "/etc/file"
|
||||
},
|
||||
"services.test.files.file.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
7
tests/dictionaries_old/20notemplating/makedict/base.json
Normal file
7
tests/dictionaries_old/20notemplating/makedict/base.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": "non",
|
||||
"services.test.files.file.name": "/etc/file",
|
||||
"services.test.files.file.activate": true,
|
||||
"services.test.activate": true,
|
||||
"services.test.manage": true
|
||||
}
|
22
tests/dictionaries_old/20notemplating/makedict/before.json
Normal file
22
tests/dictionaries_old/20notemplating/makedict/before.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"rougail.general.mode_conteneur_actif": {
|
||||
"owner": "default",
|
||||
"value": "non"
|
||||
},
|
||||
"services.test.files.file.name": {
|
||||
"owner": "default",
|
||||
"value": "/etc/file"
|
||||
},
|
||||
"services.test.files.file.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.test.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
1
tests/dictionaries_old/20notemplating/result/etc/file
Normal file
1
tests/dictionaries_old/20notemplating/result/etc/file
Normal file
@ -0,0 +1 @@
|
||||
%%condition
|
@ -0,0 +1,2 @@
|
||||
C /etc/file 0644 root root - /usr/local/lib/etc/file
|
||||
z /etc/file - - - - -
|
27
tests/dictionaries_old/20notemplating/tiramisu/base.py
Normal file
27
tests/dictionaries_old/20notemplating/tiramisu/base.py
Normal file
@ -0,0 +1,27 @@
|
||||
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 = FilenameOption(name="name", doc="name", default="/etc/file")
|
||||
option_9 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_7 = OptionDescription(name="file", doc="file", children=[option_8, option_9])
|
||||
option_7.impl_set_information('engine', "none")
|
||||
option_7.impl_set_information('source', "file")
|
||||
option_6 = OptionDescription(name="files", doc="files", children=[option_7])
|
||||
option_10 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_11 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_5 = OptionDescription(name="test", doc="test", children=[option_6, option_10, option_11])
|
||||
option_4 = OptionDescription(name="services", doc="services", children=[option_5], properties=frozenset({"hidden"}))
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1, option_4])
|
1
tests/dictionaries_old/20notemplating/tmpl/file
Normal file
1
tests/dictionaries_old/20notemplating/tmpl/file
Normal file
@ -0,0 +1 @@
|
||||
%%condition
|
Reference in New Issue
Block a user