2024-10-06 15:09:52 +02:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
from re import compile as re_compile
from rougail . tiramisu import func , dict_env , load_functions , ConvertDynOptionDescription
load_functions ( ' tests/dictionaries/../eosfunc/test.py ' )
2024-10-22 12:40:41 +02:00
try :
groups . namespace
except :
groups . addgroup ( ' namespace ' )
2024-10-06 15:09:52 +02:00
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
option_3 = StrOption ( name = " var1 " , doc = " the second variable " , multi = True , default = [ " value " , " None " ] , default_multi = " value " , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' string ' } )
2024-10-22 12:40:41 +02:00
optiondescription_2 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_3 ] , properties = frozenset ( { " standard " } ) )
2024-10-06 15:09:52 +02:00
optiondescription_1 = OptionDescription ( name = " 1 " , doc = " 1 " , children = [ optiondescription_2 ] , properties = frozenset ( { " standard " } ) )
option_6 = StrOption ( name = " var1 " , doc = " the second variable " , multi = True , default = [ " value " , " None " ] , default_multi = " value " , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) , informations = { ' type ' : ' string ' } )
2024-10-22 12:40:41 +02:00
optiondescription_5 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_6 ] , properties = frozenset ( { " standard " } ) )
2024-10-06 15:09:52 +02:00
optiondescription_4 = OptionDescription ( name = " 2 " , doc = " 2 " , children = [ optiondescription_5 ] , properties = frozenset ( { " standard " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 , optiondescription_4 ] )