2023-10-12 08:17:30 +02:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
2024-06-19 17:36:18 +02:00
from rougail . tiramisu import func , dict_env , load_functions , ConvertDynOptionDescription
load_functions ( ' tests/dictionaries/../eosfunc/test.py ' )
2023-10-12 08:17:30 +02:00
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
dict_env [ ' default_rougail.general.leader.follower1 ' ] = " {{ calc_val() }} "
dict_env [ ' disabled_rougail.general.leader.follower1 ' ] = " { % i f rougail.general.leader.leader == \" a \" % } \n the value of \" leader \" is \" a \" \n { % e ndif % } \n "
option_3 = StrOption ( name = " mode_conteneur_actif " , doc = " No change " , default = " non " , properties = frozenset ( { " mandatory " , " standard " } ) )
option_4 = StrOption ( name = " condition " , doc = " condition " , default = " oui " , properties = frozenset ( { " mandatory " , " standard " } ) )
option_6 = StrOption ( name = " leader " , doc = " leader " , multi = True , default = [ " a " , " b " ] , properties = frozenset ( { " mandatory " , " notempty " , " standard " } ) )
option_7 = StrOption ( name = " follower1 " , doc = " follower1 " , multi = True , default = Calculation ( func [ ' jinja_to_function ' ] , Params ( ( ) , kwargs = { ' __internal_jinja ' : ParamValue ( " default_rougail.general.leader.follower1 " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) } ) ) , properties = frozenset ( { " standard " , Calculation ( func [ ' jinja_to_property ' ] , Params ( ( ParamValue ( " disabled " ) ) , kwargs = { ' __internal_jinja ' : ParamValue ( " disabled_rougail.general.leader.follower1 " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' rougail.general.leader.leader ' : ParamOption ( option_6 ) } ) , help_function = func [ ' jinja_to_property_help ' ] ) } ) )
option_8 = StrOption ( name = " follower2 " , doc = " follower2 " , multi = True , properties = frozenset ( { " standard " } ) )
optiondescription_5 = Leadership ( name = " leader " , doc = " leader " , children = [ option_6 , option_7 , option_8 ] , properties = frozenset ( { " standard " } ) )
optiondescription_2 = OptionDescription ( name = " general " , doc = " general " , children = [ option_3 , option_4 , optiondescription_5 ] , properties = frozenset ( { " standard " } ) )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " rougail " , children = [ optiondescription_2 ] , properties = frozenset ( { " standard " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )