2021-11-26 21:54:26 +01:00
|
|
|
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
|
2022-10-01 22:27:22 +02:00
|
|
|
|
|
|
|
def _load_functions(path):
|
|
|
|
global _SourceFileLoader, _spec_from_loader, _module_from_spec, func
|
|
|
|
loader = _SourceFileLoader('func', path)
|
|
|
|
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))
|
|
|
|
_load_functions('tests/dictionaries/../eosfunc/test.py')
|
2021-02-12 18:08:28 +01:00
|
|
|
try:
|
|
|
|
from tiramisu3 import *
|
|
|
|
except:
|
|
|
|
from tiramisu import *
|
2022-10-01 22:27:22 +02:00
|
|
|
option_2 = StrOption(name="mode_conteneur_actif", doc="No change", default="non", properties=frozenset({"mandatory", "normal"}))
|
|
|
|
optiondescription_1 = OptionDescription(name="general", doc="general", children=[option_2], properties=frozenset({"normal"}))
|
|
|
|
optiondescription_8 = OptionDescription(name="rougail", doc="Rougail", children=[optiondescription_1])
|
|
|
|
option_6 = BoolOption(name="activate", doc="activate", default=True)
|
|
|
|
optiondescription_5 = OptionDescription(name="test2_service", doc="test2.service", children=[option_6])
|
|
|
|
optiondescription_5.impl_set_information('name', "test.service")
|
|
|
|
optiondescription_5.impl_set_information('source', "test2.service")
|
|
|
|
optiondescription_4 = OptionDescription(name="overrides", doc="overrides", children=[optiondescription_5])
|
|
|
|
option_3 = BoolOption(name="activate", doc="activate", default=True)
|
|
|
|
option_7 = BoolOption(name="manage", doc="manage", default=True)
|
|
|
|
optiondescription_10 = OptionDescription(name="test_service", doc="test.service", children=[optiondescription_4, option_3, option_7])
|
|
|
|
optiondescription_10.impl_set_information('type', "service")
|
|
|
|
optiondescription_9 = OptionDescription(name="services", doc="services", children=[optiondescription_10], properties=frozenset({"hidden"}))
|
|
|
|
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[optiondescription_8, optiondescription_9])
|