2024-11-25 09:10:44 +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
2024-12-11 20:54:54 +01:00
load_functions ( ' ../rougail-tests/funcs/test.py ' )
2024-11-25 09:10:44 +01:00
try :
groups . namespace
except :
groups . addgroup ( ' namespace ' )
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
dict_env [ ' frozen_rougail.dyn {{ identifier }}.vardyn ' ] = " { % i f _.var2 == \" no \" % } \n var2 is no \n { % e ndif % } \n "
dict_env [ ' hidden_rougail.dyn {{ identifier }} ' ] = " { % i f _.var2 == \" no \" % } \n var2 is no \n { % e ndif % } \n "
2025-04-27 16:35:13 +02:00
option_2 = StrOption ( name = " var " , doc = " A suffix variable " , multi = True , properties = frozenset ( { " standard " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/60_5family_dynamic_calc2_empty/rougail/00-base.yml ' ] , ' type ' : ' string ' , ' test ' : ( ' val1 ' , ' val2 ' ) } )
option_3 = StrOption ( name = " var2 " , doc = " a second variable " , properties = frozenset ( { " basic " , " mandatory " } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/60_5family_dynamic_calc2_empty/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
option_5 = StrOption ( name = " vardyn " , doc = " a dynamic variable " , default = " val " , properties = frozenset ( { " force_default_on_freeze " , " mandatory " , " standard " , Calculation ( func [ ' jinja_to_property ' ] , Params ( ( ParamValue ( " frozen " ) ) , kwargs = { ' __internal_jinja ' : ParamValue ( " frozen_rougail.dyn {{ identifier }}.vardyn " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' __internal_files ' : ParamValue ( [ ' ../rougail-tests/structures/60_5family_dynamic_calc2_empty/rougail/00-base.yml ' ] ) , ' __internal_attribute ' : ParamValue ( " frozen " ) , ' __internal_variable ' : ParamValue ( " rougail.dyn {{ identifier }}.vardyn " ) , ' when ' : ParamValue ( True ) , ' inverse ' : ParamValue ( False ) , ' _.var2 ' : ParamOption ( option_3 , notraisepropertyerror = True ) } ) , help_function = func [ ' jinja_to_property_help ' ] ) } ) , informations = { ' ymlfiles ' : [ ' ../rougail-tests/structures/60_5family_dynamic_calc2_empty/rougail/00-base.yml ' ] , ' type ' : ' string ' } )
optiondescription_4 = ConvertDynOptionDescription ( name = " dyn {{ identifier }} " , doc = " A dynamic family " , identifiers = Calculation ( func [ ' calc_value ' ] , Params ( ( ParamOption ( option_2 ) ) ) ) , children = [ option_5 ] , properties = frozenset ( { " standard " , Calculation ( func [ ' jinja_to_property ' ] , Params ( ( ParamValue ( " hidden " ) ) , kwargs = { ' __internal_jinja ' : ParamValue ( " hidden_rougail.dyn {{ identifier }} " ) , ' __internal_type ' : ParamValue ( " string " ) , ' __internal_multi ' : ParamValue ( False ) , ' __internal_files ' : ParamValue ( [ ' ../rougail-tests/structures/60_5family_dynamic_calc2_empty/rougail/00-base.yml ' ] ) , ' __internal_attribute ' : ParamValue ( " hidden " ) , ' __internal_variable ' : ParamValue ( " rougail.dyn {{ identifier }} " ) , ' when ' : ParamValue ( True ) , ' inverse ' : ParamValue ( False ) , ' _.var2 ' : ParamOption ( option_3 , notraisepropertyerror = True ) } ) , help_function = func [ ' jinja_to_property_help ' ] ) } ) , informations = { ' dynamic_variable ' : ' rougail.var ' , ' ymlfiles ' : [ ' ../rougail-tests/structures/60_5family_dynamic_calc2_empty/rougail/00-base.yml ' ] } )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " Rougail " , group_type = groups . namespace , children = [ option_2 , option_3 , optiondescription_4 ] , properties = frozenset ( { " basic " } ) , informations = { ' ymlfiles ' : [ ' ' ] } )
2024-11-25 09:10:44 +01:00
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )