add systemd timer + a service and a timer can have same name
This commit is contained in:
7
tests/dictionaries/70service_timer/00-base.xml
Normal file
7
tests/dictionaries/70service_timer/00-base.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.10">
|
||||
<services>
|
||||
<service name="testsrv" engine="none"/>
|
||||
<service name="testsrv" type="timer" engine="none"/>
|
||||
</services>
|
||||
</rougail>
|
0
tests/dictionaries/70service_timer/__init__.py
Normal file
0
tests/dictionaries/70service_timer/__init__.py
Normal file
18
tests/dictionaries/70service_timer/makedict/after.json
Normal file
18
tests/dictionaries/70service_timer/makedict/after.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"services.testsrv_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.testsrv_service.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.testsrv_timer.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.testsrv_timer.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
6
tests/dictionaries/70service_timer/makedict/base.json
Normal file
6
tests/dictionaries/70service_timer/makedict/base.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"services.testsrv_service.activate": true,
|
||||
"services.testsrv_service.manage": true,
|
||||
"services.testsrv_timer.activate": true,
|
||||
"services.testsrv_timer.manage": true
|
||||
}
|
18
tests/dictionaries/70service_timer/makedict/before.json
Normal file
18
tests/dictionaries/70service_timer/makedict/before.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"services.testsrv_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.testsrv_service.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.testsrv_timer.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.testsrv_timer.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
service
|
@ -0,0 +1 @@
|
||||
timer
|
27
tests/dictionaries/70service_timer/tiramisu/base.py
Normal file
27
tests/dictionaries/70service_timer/tiramisu/base.py
Normal file
@ -0,0 +1,27 @@
|
||||
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 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_4 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_2 = OptionDescription(name="testsrv_service", doc="testsrv.service", children=[option_3, option_4])
|
||||
option_2.impl_set_information('engine', "none")
|
||||
option_6 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_7 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_5 = OptionDescription(name="testsrv_timer", doc="testsrv.timer", children=[option_6, option_7])
|
||||
option_5.impl_set_information('type', "timer")
|
||||
option_5.impl_set_information('engine', "none")
|
||||
option_1 = OptionDescription(name="services", doc="services", children=[option_2, option_5], properties=frozenset({"hidden"}))
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1])
|
1
tests/dictionaries/70service_timer/tmpl/testsrv.service
Normal file
1
tests/dictionaries/70service_timer/tmpl/testsrv.service
Normal file
@ -0,0 +1 @@
|
||||
service
|
1
tests/dictionaries/70service_timer/tmpl/testsrv.timer
Normal file
1
tests/dictionaries/70service_timer/tmpl/testsrv.timer
Normal file
@ -0,0 +1 @@
|
||||
timer
|
Reference in New Issue
Block a user