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-15 18:23:57 +01:00
|
|
|
try:
|
|
|
|
from tiramisu3 import *
|
|
|
|
except:
|
|
|
|
from tiramisu import *
|
2022-10-01 22:27:22 +02:00
|
|
|
option_1 = BoolOption(name="condition", doc="condition", default=True, properties=frozenset({"mandatory", "normal"}))
|
|
|
|
option_3 = StrOption(name="my_variable", doc="my_variable", properties=frozenset({"normal"}))
|
2023-05-19 12:56:13 +02:00
|
|
|
optiondescription_2 = OptionDescription(name="general", doc="general", children=[option_3], properties=frozenset({"normal", Calculation(func.calc_value, Params(ParamValue('disabled'), kwargs={'condition': ParamOption(option_1, notraisepropertyerror=True), 'expected': ParamValue(True)}), func.calc_value_property_help)}))
|
2022-10-01 22:27:22 +02:00
|
|
|
optiondescription_4 = OptionDescription(name="rougail", doc="Rougail", children=[option_1, optiondescription_2])
|
|
|
|
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[optiondescription_4])
|