2024-07-06 15:26:01 +02:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
2024-08-29 08:32:08 +02:00
from re import compile as re_compile
2024-07-06 15:26:01 +02:00
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-07-06 15:26:01 +02:00
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
option_3 = BoolOption ( name = " var1 " , doc = " the first variable " , default = True , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_4 = BoolOption ( name = " var2 " , doc = " the second variable " , default = True , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_5 = BoolOption ( name = " var3 " , doc = " the third variable " , default = True , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_6 = BoolOption ( name = " var4 " , doc = " the forth variable " , default = False , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_7 = BoolOption ( name = " var5 " , doc = " the fifth variable " , default = False , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_8 = BoolOption ( name = " var6 " , doc = " the sixth variable " , default = False , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
2024-10-22 12:40:41 +02:00
optiondescription_2 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_3 , option_4 , option_5 , option_6 , option_7 , option_8 ] , properties = frozenset ( { " standard " } ) )
2024-07-06 15:26:01 +02:00
optiondescription_1 = OptionDescription ( name = " 1 " , doc = " 1 " , children = [ optiondescription_2 ] , properties = frozenset ( { " standard " } ) )
option_11 = BoolOption ( name = " var1 " , doc = " the first variable " , default = True , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_12 = BoolOption ( name = " var2 " , doc = " the second variable " , default = True , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_13 = BoolOption ( name = " var3 " , doc = " the third variable " , default = True , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_14 = BoolOption ( name = " var4 " , doc = " the forth variable " , default = False , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_15 = BoolOption ( name = " var5 " , doc = " the fifth variable " , default = False , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
option_16 = BoolOption ( name = " var6 " , doc = " the sixth variable " , default = False , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' type ' : ' boolean ' } )
2024-10-22 12:40:41 +02:00
optiondescription_10 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_11 , option_12 , option_13 , option_14 , option_15 , option_16 ] , properties = frozenset ( { " standard " } ) )
2024-07-06 15:26:01 +02:00
optiondescription_9 = OptionDescription ( name = " 2 " , doc = " 2 " , children = [ optiondescription_10 ] , properties = frozenset ( { " standard " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 , optiondescription_9 ] )