2023-10-12 08:17:30 +02:00
from importlib . machinery import SourceFileLoader as _SourceFileLoader
from importlib . util import spec_from_loader as _spec_from_loader , module_from_spec as _module_from_spec
class func :
pass
def _load_functions ( path ) :
global _SourceFileLoader , _spec_from_loader , _module_from_spec , func
loader = _SourceFileLoader ( ' func ' , path )
spec = _spec_from_loader ( loader . name , loader )
func_ = _module_from_spec ( spec )
loader . exec_module ( func_ )
for function in dir ( func_ ) :
if function . startswith ( ' _ ' ) :
continue
setattr ( func , function , getattr ( func_ , function ) )
_load_functions ( ' tests/dictionaries_old/../eosfunc/test.py ' )
2021-04-13 19:05:01 +02:00
try :
2023-06-19 17:41:38 +02:00
from tiramisu4 import *
2023-10-12 08:17:30 +02:00
from tiramisu4 . setting import ALLOWED_LEADER_PROPERTIES
2021-04-13 19:05:01 +02:00
except :
from tiramisu import *
2023-10-12 08:17:30 +02:00
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " normal " )
ALLOWED_LEADER_PROPERTIES . add ( " expert " )
2021-04-13 19:05:01 +02:00
option_3 = StrOption ( name = " mode_conteneur_actif " , doc = " No change " , default = " oui " , properties = frozenset ( { " mandatory " , " normal " } ) )
option_4 = IPOption ( name = " adresse_ip_eth0 " , doc = " Adresse IP de la carte " , private_only = True , warnings_only = True , properties = frozenset ( { " basic " , " mandatory " } ) )
2023-10-12 08:17:30 +02:00
option_5 = NetmaskOption ( name = " adresse_netmask_eth0 " , doc = " Masque de sous réseau de la carte " , properties = frozenset ( { " basic " , " mandatory " } ) )
optiondescription_2 = OptionDescription ( name = " general " , doc = " general " , children = [ option_3 , option_4 , option_5 ] , properties = frozenset ( { " basic " } ) )
optiondescription_1 = OptionDescription ( name = " rougail " , doc = " rougail " , children = [ optiondescription_2 ] , properties = frozenset ( { " basic " } ) )
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 ] )