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 ' )
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
2025-04-27 16:35:13 +02:00
option_2 = StrOption ( name = " leader " , doc = " a leader " , multi = True , default = [ " value1 " , " value2 " ] , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-leader/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
option_3 = StrOption ( name = " follower1 " , doc = " a follower " , multi = True , default_multi = " val11 " , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-leader/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
option_4 = 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-leader/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
optiondescription_1 = Leadership ( name = " leader " , doc = " a leadership " , children = [ option_2 , option_3 , option_4 ] , properties = frozenset ( { " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-leader/rougail/00-base.yml ' ] } )
option_5 = StrOption ( name = " calculate " , doc = " a calculated variable " , multi = True , default = Calculation ( func [ ' calc_value ' ] , Params ( ( ParamOption ( option_2 ) ) , kwargs = { ' __internal_multi ' : ParamValue ( True ) } ) ) , properties = frozenset ( { " mandatory " , " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/40_9leadership-calculation-outside-leader/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
2025-02-10 10:09:34 +01:00
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 , option_5 ] )