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')
|
2020-08-12 08:23:38 +02: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({"force_default_on_freeze", "frozen", "hidden", "mandatory", "normal"}))
|
|
|
|
optiondescription_1 = OptionDescription(name="general", doc="général", children=[option_2], properties=frozenset({"normal"}))
|
|
|
|
optiondescription_6 = OptionDescription(name="rougail", doc="Rougail", children=[optiondescription_1])
|
|
|
|
option_4 = IntOption(name="delay", doc="délai en minutes avant lancement", default=0, properties=frozenset({"mandatory", "normal"}))
|
|
|
|
option_5 = URLOption(name="calc_url", doc="domain", default=Calculation(func.calc_val, Params((ParamValue("http://localhost/")))), allow_ip=True, allow_without_dot=True, properties=frozenset({"force_default_on_freeze", "frozen", "hidden", "normal"}))
|
|
|
|
optiondescription_3 = OptionDescription(name="test", doc="test", children=[option_4, option_5], properties=frozenset({"normal"}))
|
|
|
|
optiondescription_7 = OptionDescription(name="extra", doc="extra", children=[optiondescription_3])
|
|
|
|
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[optiondescription_6, optiondescription_7])
|