remove group constrainte, it's now a normal group
This commit is contained in:
22
tests/dictionaries_old/70services_ip_iplist2/00-base.xml
Normal file
22
tests/dictionaries_old/70services_ip_iplist2/00-base.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<services>
|
||||
<service name="nut">
|
||||
<ip iplist="example">nut_monitor_host</ip>
|
||||
</service>
|
||||
</services>
|
||||
<variables>
|
||||
<variable name="condition">
|
||||
<value>yes</value>
|
||||
</variable>
|
||||
<variable name="nut_monitor_host" type="network_cidr" mandatory="True">
|
||||
<value>192.168.0.0/24</value>
|
||||
</variable>
|
||||
</variables>
|
||||
<constraints>
|
||||
<condition name="disabled_if_in" source="condition">
|
||||
<param>yes</param>
|
||||
<target type="iplist">example</target>
|
||||
</condition>
|
||||
</constraints>
|
||||
</rougail>
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"rougail.condition": {
|
||||
"owner": "default",
|
||||
"value": "yes"
|
||||
},
|
||||
"rougail.nut_monitor_host": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0/24"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0/24"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.activate": {
|
||||
"owner": "default",
|
||||
"value": false
|
||||
},
|
||||
"services.nut.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
{
|
||||
"rougail.condition": "yes",
|
||||
"rougail.nut_monitor_host": "192.168.0.0/24",
|
||||
"services.nut.ip.nut_monitor_host.name": "192.168.0.0/24",
|
||||
"services.nut.ip.nut_monitor_host.activate": false,
|
||||
"services.nut.activate": true,
|
||||
"services.nut.manage": true
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"rougail.condition": {
|
||||
"owner": "default",
|
||||
"value": "yes"
|
||||
},
|
||||
"rougail.nut_monitor_host": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0/24"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0/24"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.activate": {
|
||||
"owner": "default",
|
||||
"value": false
|
||||
},
|
||||
"services.nut.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
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_2 = StrOption(name="condition", doc="condition", default="yes", properties=frozenset({"mandatory", "normal"}))
|
||||
option_3 = NetworkOption(name="nut_monitor_host", doc="nut_monitor_host", default="192.168.0.0/24", cidr=True, properties=frozenset({"mandatory", "normal"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2, option_3])
|
||||
option_8 = SymLinkOption(name="name", opt=option_3)
|
||||
option_9 = BoolOption(name="activate", doc="activate", default=Calculation(func.calc_value, Params((ParamValue(False)), kwargs={'default': ParamValue(True), 'condition_0': ParamOption(option_2, notraisepropertyerror=True), 'expected_0': ParamValue("yes")})))
|
||||
option_7 = OptionDescription(name="nut_monitor_host", doc="nut_monitor_host", children=[option_8, option_9])
|
||||
option_6 = OptionDescription(name="ip", doc="ip", 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="nut", doc="nut", 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])
|
Reference in New Issue
Block a user