2025-02-10 10:09:34 +01: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 ( ' ../rougail-tests/funcs/test.py ' )
try :
groups . namespace
except :
groups . addgroup ( ' namespace ' )
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
dict_env [ ' default_rougail.calculate ' ] = " {{ _.leader.follower1[-1] }} "
2025-04-27 16:35:13 +02:00
option_3 = StrOption ( name = " leader " , doc = " a leader " , multi = True , default = [ " value1 " , " value2 " ] , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-follower-last/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
option_4 = StrOption ( name = " follower1 " , doc = " a follower " , multi = True , default_multi = " val11 " , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-follower-last/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
option_5 = StrOption ( name = " follower2 " , doc = " an other follower " , multi = True , default_multi = " val21 " , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-follower-last/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
optiondescription_2 = Leadership ( name = " leader " , doc = " a leadership " , children = [ option_3 , option_4 , option_5 ] , properties = frozenset ( { " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-follower-last/rougail/00-base.yml ' ] } )
option_6 = StrOption ( name = " calculate " , doc = " a calculated variable " , multi = True , default = Calculation ( func [ ' jinja_to_function ' ] , Params ( ( ) , kwargs = { ' __internal_jinja ' : ParamValue ( " default_rougail.calculate " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( True ) , ' __internal_files ' : ParamValue ( [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-follower-last/rougail/00-base.yml ' ] ) , ' __internal_attribute ' : ParamValue ( " default " ) , ' __internal_variable ' : ParamValue ( " rougail.calculate " ) , ' _.leader.follower1 ' : ParamOption ( option_4 , notraisepropertyerror = True ) } ) ) , properties = frozenset ( { " mandatory " , " notunique " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-follower-last/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ optiondescription_2 , option_6 ] , properties = frozenset ( { " standard " } ) , informations = { ' ymlfiles ' : [ ' ' ] } )
2025-02-10 10:09:34 +01:00
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )