2012-07-13 09:42:14 +02:00
# coding: utf-8
2017-07-09 09:49:03 +02:00
from . autopath import do_autopath
2015-07-24 17:54:10 +02:00
do_autopath ( )
2019-06-21 23:04:04 +02:00
from . config import config_type , get_config , value_list , global_owner
2018-10-31 08:00:19 +01:00
from py . test import raises
2015-07-24 17:54:10 +02:00
2013-02-25 11:33:20 +01:00
from tiramisu . setting import groups , owners
2019-07-16 08:03:33 +02:00
from tiramisu import ChoiceOption , BoolOption , IntOption , IPOption , NetworkOption , NetmaskOption , \
2019-02-23 19:06:23 +01:00
StrOption , OptionDescription , Leadership , Config
from tiramisu . error import LeadershipError , PropertiesOptionError , APIError , ConfigError
2018-10-31 08:00:19 +01:00
from tiramisu . storage import list_sessions
2012-07-13 09:42:14 +02:00
2018-10-31 08:00:19 +01:00
2019-10-16 07:31:52 +02:00
groups . family = groups . GroupType ( ' family ' )
2018-10-31 08:00:19 +01:00
def teardown_function ( function ) :
assert list_sessions ( ) == [ ] , ' session list is not empty when leaving " {} " ' . format ( function . __name__ )
2012-12-06 15:19:43 +01:00
2013-04-18 20:26:40 +02:00
2018-06-09 18:59:40 +02:00
def compare ( calculated , expected ) :
def convert_list ( val ) :
if isinstance ( val , list ) :
val = tuple ( val )
return val
# convert to tuple
for idx in range ( len ( calculated [ 0 ] ) ) :
right_idx = expected [ 0 ] . index ( calculated [ 0 ] [ idx ] )
for typ in range ( 4 ) :
assert convert_list ( calculated [ typ ] [ idx ] ) == expected [ typ ] [ right_idx ]
2012-07-13 09:42:14 +02:00
def make_description ( ) :
numero_etab = StrOption ( ' numero_etab ' , " identifiant de l ' établissement " )
nom_machine = StrOption ( ' nom_machine ' , " nom de la machine " , default = " eoleng " )
nombre_interfaces = IntOption ( ' nombre_interfaces ' , " nombre d ' interfaces à activer " ,
2013-04-18 20:26:40 +02:00
default = 1 )
2012-07-13 09:42:14 +02:00
activer_proxy_client = BoolOption ( ' activer_proxy_client ' , " utiliser un proxy " ,
2012-11-06 15:19:36 +01:00
default = False )
2012-07-13 09:42:14 +02:00
mode_conteneur_actif = BoolOption ( ' mode_conteneur_actif ' , " le serveur est en mode conteneur " ,
default = False )
2014-10-26 10:26:23 +01:00
mode_conteneur_actif2 = BoolOption ( ' mode_conteneur_actif2 ' , " le serveur est en mode conteneur2 " ,
default = False , properties = ( ' hidden ' , ) )
2012-07-13 09:42:14 +02:00
adresse_serveur_ntp = StrOption ( ' serveur_ntp ' , " adresse serveur ntp " , multi = True )
time_zone = ChoiceOption ( ' time_zone ' , ' fuseau horaire du serveur ' ,
2013-04-18 20:26:40 +02:00
( ' Paris ' , ' Londres ' ) , ' Paris ' )
2012-07-13 09:42:14 +02:00
2014-10-26 16:19:06 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " )
2012-07-13 09:42:14 +02:00
2019-02-23 19:06:23 +01:00
leader = OptionDescription ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
interface1 = OptionDescription ( ' interface1 ' , ' ' , [ leader ] )
2013-05-08 18:14:42 +02:00
interface1 . impl_set_group_type ( groups . family )
2012-07-13 09:42:14 +02:00
2012-11-06 15:19:36 +01:00
general = OptionDescription ( ' general ' , ' ' , [ numero_etab , nom_machine ,
2013-04-18 20:26:40 +02:00
nombre_interfaces , activer_proxy_client ,
2014-10-26 10:26:23 +01:00
mode_conteneur_actif , mode_conteneur_actif2 ,
adresse_serveur_ntp , time_zone ] )
2013-05-08 18:14:42 +02:00
general . impl_set_group_type ( groups . family )
2014-03-31 22:34:57 +02:00
new = OptionDescription ( ' new ' , ' ' , [ ] , properties = ( ' hidden ' , ) )
new . impl_set_group_type ( groups . family )
creole = OptionDescription ( ' creole ' , ' first tiramisu configuration ' , [ general , interface1 , new ] )
2013-04-18 20:26:40 +02:00
descr = OptionDescription ( ' baseconfig ' , ' baseconifgdescr ' , [ creole ] )
2012-07-13 09:42:14 +02:00
return descr
2013-04-18 20:26:40 +02:00
2019-06-21 23:04:04 +02:00
def test_base_config ( config_type ) :
2012-07-13 09:42:14 +02:00
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
assert cfg . option ( ' creole.general.activer_proxy_client ' ) . value . get ( ) is False
assert cfg . option ( ' creole.general.nom_machine ' ) . value . get ( ) == " eoleng "
if config_type != ' tiramisu-api ' :
assert cfg . option . find ( ' nom_machine ' , first = True ) . value . get ( ) == " eoleng "
2012-07-13 09:42:14 +02:00
result = { ' general.numero_etab ' : None , ' general.nombre_interfaces ' : 1 ,
2013-04-18 20:26:40 +02:00
' general.serveur_ntp ' : [ ] , ' interface1.ip_admin_eth0.ip_admin_eth0 ' : None ,
' general.mode_conteneur_actif ' : False , ' general.time_zone ' : ' Paris ' ,
' interface1.ip_admin_eth0.netmask_admin_eth0 ' : None , ' general.nom_machine ' :
' eoleng ' , ' general.activer_proxy_client ' : False }
2019-06-21 23:04:04 +02:00
assert cfg . option ( ' creole ' ) . value . dict ( ) == result
2012-07-13 09:42:14 +02:00
result = { ' serveur_ntp ' : [ ] , ' mode_conteneur_actif ' : False ,
2013-04-18 20:26:40 +02:00
' ip_admin_eth0 ' : None , ' time_zone ' : ' Paris ' , ' numero_etab ' : None ,
' netmask_admin_eth0 ' : None , ' nom_machine ' : ' eoleng ' , ' activer_proxy_client ' :
False , ' nombre_interfaces ' : 1 }
2019-06-21 23:04:04 +02:00
assert cfg . option ( ' creole ' ) . value . dict ( flatten = True ) == result
if config_type == ' tiramisu-api ' :
cfg . send ( )
2012-07-13 09:42:14 +02:00
2013-04-18 20:26:40 +02:00
2013-04-22 09:19:05 +02:00
def test_make_dict_filter ( ) :
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
2013-08-24 22:32:54 +02:00
subresult = { ' numero_etab ' : None , ' nombre_interfaces ' : 1 ,
2013-09-19 23:02:15 +02:00
' serveur_ntp ' : [ ] , ' mode_conteneur_actif ' : False ,
' time_zone ' : ' Paris ' , ' nom_machine ' : ' eoleng ' ,
' activer_proxy_client ' : False }
2013-08-24 22:32:54 +02:00
result = { }
for key , value in subresult . items ( ) :
result [ ' general. ' + key ] = value
2019-06-21 23:04:04 +02:00
assert cfg . option ( ' creole ' ) . value . dict ( withoption = ' numero_etab ' ) == result
raises ( AttributeError , " cfg.option( ' creole ' ).value.dict(withoption= ' numero_etab ' , withvalue= ' toto ' ) " )
assert cfg . option ( ' creole ' ) . value . dict ( withoption = ' numero_etab ' , withvalue = None ) == result
assert cfg . option ( ' creole.general ' ) . value . dict ( withoption = ' numero_etab ' ) == subresult
2013-04-22 09:19:05 +02:00
2012-07-13 09:42:14 +02:00
def test_get_group_type ( ) :
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
grp = cfg . option ( ' creole.general ' )
2018-03-19 08:33:53 +01:00
assert grp . group_type ( ) == groups . family
assert grp . group_type ( ) == ' family '
assert isinstance ( grp . group_type ( ) , groups . GroupType )
2012-07-13 09:42:14 +02:00
2013-04-18 20:26:40 +02:00
2012-07-13 09:42:14 +02:00
def test_iter_on_groups ( ) :
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
result = cfg . option ( ' creole ' ) . list ( ' optiondescription ' ,
2018-09-10 21:59:54 +02:00
group_type = groups . family )
2018-08-01 08:37:58 +02:00
group_names = [ res . option . name ( ) for res in result ]
2012-07-13 09:42:14 +02:00
assert group_names == [ ' general ' , ' interface1 ' ]
2019-06-21 23:04:04 +02:00
for i in cfg . option ( ' creole ' ) . list ( ' optiondescription ' ,
2018-09-10 21:59:54 +02:00
group_type = groups . family ) :
2014-02-02 22:47:46 +01:00
#test StopIteration
break
2019-06-21 23:04:04 +02:00
result = cfg . option ( ' creole ' ) . list ( ' option ' ,
2018-09-29 18:52:13 +02:00
group_type = groups . family )
assert list ( result ) == [ ]
2019-06-21 23:04:04 +02:00
result = cfg . option ( ' creole.general ' ) . list ( ' optiondescription ' ,
2018-09-29 18:52:13 +02:00
group_type = groups . family )
assert list ( result ) == [ ]
2014-02-02 22:47:46 +01:00
2018-09-10 21:59:54 +02:00
def test_list_recursive ( ) :
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
result = cfg . option ( ' creole ' ) . list ( ' all ' )
2018-09-10 21:59:54 +02:00
group_names = [ res . option . name ( ) for res in result ]
assert group_names == [ ' general ' , ' interface1 ' ]
#
2019-06-21 23:04:04 +02:00
result = cfg . option . list ( recursive = True )
2018-09-10 21:59:54 +02:00
group_names = [ res . option . name ( ) for res in result ]
2018-10-31 08:00:19 +01:00
assert group_names == [ ' numero_etab ' , ' nom_machine ' , ' nombre_interfaces ' ,
' activer_proxy_client ' , ' mode_conteneur_actif ' ,
' serveur_ntp ' , ' time_zone ' , ' ip_admin_eth0 ' ,
' netmask_admin_eth0 ' ]
2019-06-21 23:04:04 +02:00
result = list ( cfg . option . list ( recursive = True , type = ' optiondescription ' ) )
2018-09-29 18:52:13 +02:00
group_names = [ res . option . name ( ) for res in result ]
assert group_names == [ ' general ' , ' ip_admin_eth0 ' , ' interface1 ' , ' creole ' ]
2018-09-10 21:59:54 +02:00
2014-02-02 22:47:46 +01:00
2014-03-31 22:34:57 +02:00
def test_iter_on_groups_force_permissive ( ) :
2014-10-26 10:26:23 +01:00
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
2019-12-08 09:09:48 +01:00
cfg . permissive . add ( ' hidden ' )
2019-06-21 23:04:04 +02:00
result = cfg . forcepermissive . option ( ' creole.general ' ) . list ( )
2018-08-01 08:37:58 +02:00
group_names = [ res . option . name ( ) for res in result ]
2014-10-26 10:26:23 +01:00
ass = [ ' numero_etab ' , ' nom_machine ' , ' nombre_interfaces ' ,
' activer_proxy_client ' , ' mode_conteneur_actif ' ,
' mode_conteneur_actif2 ' , ' serveur_ntp ' , ' time_zone ' ]
assert group_names == ass
2018-08-01 08:37:58 +02:00
# mode_conteneur_actif2 is not visible is not forcepermissive
2019-06-21 23:04:04 +02:00
result = cfg . option ( ' creole.general ' ) . list ( )
2018-08-01 08:37:58 +02:00
group_names = [ res . option . name ( ) for res in result ]
2014-10-26 10:26:23 +01:00
ass . remove ( ' mode_conteneur_actif2 ' )
assert group_names == ass
def test_iter_group_on_groups_force_permissive ( ) :
2014-03-31 22:34:57 +02:00
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
2019-12-08 09:09:48 +01:00
cfg . permissive . add ( ' hidden ' )
2019-06-21 23:04:04 +02:00
result = cfg . forcepermissive . option ( ' creole ' ) . list ( type = ' optiondescription ' ,
2018-09-10 21:59:54 +02:00
group_type = groups . family )
2018-08-01 08:37:58 +02:00
group_names = [ res . option . name ( ) for res in result ]
2014-03-31 22:34:57 +02:00
assert group_names == [ ' general ' , ' interface1 ' , ' new ' ]
2014-02-02 22:47:46 +01:00
def test_iter_on_groups_props ( ) :
descr = make_description ( )
2019-06-21 23:04:04 +02:00
cfg = Config ( descr )
cfg . property . read_write ( )
cfg . option ( ' creole.interface1 ' ) . property . add ( ' disabled ' )
result = cfg . option ( ' creole ' ) . list ( type = ' optiondescription ' ,
2018-09-10 21:59:54 +02:00
group_type = groups . family )
2018-08-01 08:37:58 +02:00
group_names = [ res . option . name ( ) for res in result ]
2014-02-02 22:47:46 +01:00
assert group_names == [ ' general ' ]
2012-11-06 15:19:36 +01:00
2013-04-18 20:26:40 +02:00
2012-11-06 15:19:36 +01:00
def test_iter_on_empty_group ( ) :
2019-06-21 23:04:04 +02:00
cfg = Config ( OptionDescription ( " name " , " descr " , [ ] ) )
cfg . property . read_write ( )
result = list ( cfg . option . list ( type = ' optiondescription ' ) )
2012-11-06 15:19:36 +01:00
assert result == [ ]
2012-12-06 15:19:43 +01:00
2013-04-18 20:26:40 +02:00
2013-08-24 21:26:10 +02:00
def test_iter_not_group ( ) :
2019-06-21 23:04:04 +02:00
cfg = Config ( OptionDescription ( " name " , " descr " , [ ] ) )
cfg . property . read_write ( )
2018-10-31 08:00:19 +01:00
try :
2019-06-21 23:04:04 +02:00
list ( cfg . option . list ( type = ' optiondescription ' , group_type = ' family ' ) )
2018-10-31 08:00:19 +01:00
except AssertionError :
pass
else :
raise Exception ( ' must raise ' )
2013-08-24 21:26:10 +02:00
2019-02-23 19:06:23 +01:00
def test_groups_with_leader ( ) :
2013-02-06 17:19:56 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
assert interface1 . impl_get_group_type ( ) == groups . leadership
2013-02-06 17:19:56 +01:00
2013-04-18 20:26:40 +02:00
2019-06-21 23:04:04 +02:00
def test_groups_is_leader ( config_type ) :
2018-04-11 16:36:15 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True , default_multi = ' value ' )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' leadership ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-04-11 16:36:15 +02:00
var = StrOption ( ' var ' , " ip réseau autorisé " , multi = True )
od2 = OptionDescription ( ' od2 ' , ' ' , [ var ] )
od1 = OptionDescription ( ' od ' , ' ' , [ interface1 , od2 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od1 )
cfg = get_config ( cfg , config_type )
assert not cfg . option ( ' od2 ' ) . option . isleadership ( )
assert cfg . option ( ' leadership ' ) . option . isleadership ( )
assert not cfg . option ( ' od2.var ' ) . option . isleader ( )
assert not cfg . option ( ' od2.var ' ) . option . isfollower ( )
assert cfg . option ( ' leadership.ip_admin_eth0 ' ) . option . ismulti ( )
assert cfg . option ( ' leadership.netmask_admin_eth0 ' ) . option . ismulti ( )
assert not cfg . option ( ' leadership.ip_admin_eth0 ' ) . option . issubmulti ( )
assert not cfg . option ( ' leadership.netmask_admin_eth0 ' ) . option . issubmulti ( )
assert cfg . option ( ' leadership.ip_admin_eth0 ' ) . option . isleader ( )
assert not cfg . option ( ' leadership.ip_admin_eth0 ' ) . option . isfollower ( )
assert not cfg . option ( ' leadership.netmask_admin_eth0 ' ) . option . isleader ( )
assert cfg . option ( ' leadership.netmask_admin_eth0 ' ) . option . isfollower ( )
assert cfg . option ( ' leadership.netmask_admin_eth0 ' ) . option . path ( ) == ' leadership.netmask_admin_eth0 '
assert cfg . option ( ' leadership.netmask_admin_eth0 ' ) . option . defaultmulti ( ) == ' value '
if config_type == ' tiramisu-api ' :
cfg . send ( )
2018-04-11 16:36:15 +02:00
2019-02-25 08:46:58 +01:00
def test_groups_with_leader_in_root ( ) :
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
interface1
raises ( ConfigError , " Config(interface1) " )
2018-03-19 08:33:53 +01:00
2019-02-23 19:06:23 +01:00
def test_groups_with_leader_in_config ( ) :
2013-02-21 17:07:00 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-03-19 08:33:53 +01:00
od = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
Config ( od )
2019-02-23 19:06:23 +01:00
assert interface1 . impl_get_group_type ( ) == groups . leadership
2013-02-21 17:07:00 +01:00
2013-04-18 20:26:40 +02:00
2019-06-21 23:04:04 +02:00
def test_groups_with_leader_make_dict ( config_type ) :
2018-04-19 08:19:03 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-04-19 08:19:03 +02:00
od = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od )
cfg = get_config ( cfg , config_type )
assert cfg . value . dict ( ) == { ' ip_admin_eth0.ip_admin_eth0 ' : [ ] , ' ip_admin_eth0.netmask_admin_eth0 ' : [ ] }
if config_type != ' tiramisu-api ' :
# FIXME useful? already in leadership
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . len ( ) == 0
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . value . len ( ) == 0
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' ip1 ' , ' ip2 ' ] )
if config_type != ' tiramisu-api ' :
# FIXME
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . len ( ) == 2
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . value . len ( ) == 2
assert cfg . value . dict ( ) == { ' ip_admin_eth0.ip_admin_eth0 ' : [ ' ip1 ' , ' ip2 ' ] , ' ip_admin_eth0.netmask_admin_eth0 ' : [ None , None ] }
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_groups_with_leader_default_value ( config_type ) :
2019-02-25 08:46:58 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
od = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od )
cfg = get_config ( cfg , config_type )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . default ( ) == [ ]
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' ip1 ' , ' ip2 ' ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' ip1 ' , ' ip2 ' ]
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . default ( ) == [ ]
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_groups_with_leader_default_value_2 ( config_type ) :
2019-02-25 08:46:58 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , [ ' ip1 ' , ' ip2 ' ] , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , default_multi = ' netmask1 ' , multi = True )
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
od = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od )
cfg = get_config ( cfg , config_type )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' ip1 ' , ' ip2 ' ]
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . default ( ) == [ ' ip1 ' , ' ip2 ' ]
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' ip3 ' , ' ip4 ' ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' ip3 ' , ' ip4 ' ]
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . default ( ) == [ ' ip1 ' , ' ip2 ' ]
2019-02-25 08:46:58 +01:00
#
2019-06-21 23:04:04 +02:00
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . default ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . default ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . value . default ( ) == [ ' netmask1 ' , ' netmask1 ' ]
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . set ( ' netmask2 ' )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) == ' netmask2 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . default ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . default ( ) == ' netmask1 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . value . default ( ) == [ ' netmask1 ' , ' netmask1 ' ]
if config_type == ' tiramisu-api ' :
cfg . send ( )
2019-02-25 08:46:58 +01:00
2019-02-23 19:06:23 +01:00
def test_groups_with_leader_hidden_in_config ( ) :
2019-10-27 11:09:15 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
2014-10-26 16:19:06 +01:00
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True , properties = ( ' hidden ' , ) )
2019-10-27 11:09:15 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] , properties = ( ' hidden ' , ) )
2018-03-19 08:33:53 +01:00
od = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od )
cfg . property . read_write ( )
2019-12-08 09:09:48 +01:00
cfg . permissive . add ( ' hidden ' )
2019-06-21 23:04:04 +02:00
assert cfg . forcepermissive . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
cfg . forcepermissive . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
assert cfg . forcepermissive . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) is None
raises ( PropertiesOptionError , " cfg.option( ' ip_admin_eth0.ip_admin_eth0 ' ).value.get() " )
raises ( PropertiesOptionError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 0).value.get() " )
2014-10-26 16:19:06 +01:00
2019-02-23 19:06:23 +01:00
def test_groups_with_leader_hidden_in_config2 ( ) :
2014-10-26 16:19:06 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True , properties = ( ' hidden ' , ) )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-03-19 08:33:53 +01:00
od = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od )
cfg . property . read_write ( )
2019-12-08 09:09:48 +01:00
cfg . permissive . add ( ' hidden ' )
2019-06-21 23:04:04 +02:00
assert cfg . forcepermissive . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
cfg . forcepermissive . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
raises ( PropertiesOptionError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 0).value.get() " )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . forcepermissive . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
2014-12-01 23:08:56 +01:00
#del
2019-06-21 23:04:04 +02:00
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
cfg . property . pop ( ' hidden ' )
assert cfg . forcepermissive . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) is None
cfg . forcepermissive . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
assert cfg . forcepermissive . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.255.0 '
cfg . property . add ( ' hidden ' )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
cfg . property . pop ( ' hidden ' )
assert cfg . forcepermissive . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) is None
def test_groups_with_leader_reset_empty ( config_type ) :
2018-03-24 22:37:48 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-03-24 22:37:48 +01:00
od_ = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( od_ )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
if config_type != ' tiramisu-api ' :
raises ( LeadershipError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 0).value.reset() " )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == None
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == None
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_groups_with_leader_reset_out_of_range ( config_type ) :
2018-03-24 22:37:48 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-03-24 22:37:48 +01:00
od_ = OptionDescription ( ' root ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg_ori = Config ( od_ )
cfg_ori . property . read_write ( )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
if config_type == ' tiramisu-api ' :
cfg . send ( )
cfg_ori . forcepermissive . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . reset ( )
if config_type != ' tiramisu-api ' :
# FIXME
raises ( LeadershipError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 1).value.reset() " )
raises ( IndexError , " cfg.option( ' ip_admin_eth0.ip_admin_eth0 ' ).value.pop(1) " )
if config_type == ' tiramisu-api ' :
cfg . send ( )
2018-03-24 22:37:48 +01:00
2013-02-06 16:21:30 +01:00
def test_allowed_groups ( ) :
2013-02-06 17:19:56 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2013-02-06 16:21:30 +01:00
interface1 = OptionDescription ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2015-11-29 23:03:08 +01:00
interface1
2013-05-08 18:14:42 +02:00
raises ( ValueError , " interface1.impl_set_group_type( ' toto ' ) " )
2012-12-06 15:19:43 +01:00
2013-04-18 20:26:40 +02:00
2019-06-21 23:04:04 +02:00
def test_values_with_leader_disabled_leader ( config_type ) :
2014-10-26 16:19:06 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2014-10-26 16:19:06 +01:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg_ori = Config ( maconfig )
cfg_ori . property . read_write ( )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' ] )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( " 192.168.230.145 " )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . reset ( )
2019-10-27 11:09:15 +01:00
raises ( LeadershipError , " cfg_ori.option( ' ip_admin_eth0.ip_admin_eth0 ' ).property.add( ' disabled ' ) " )
cfg_ori . option ( ' ip_admin_eth0 ' ) . property . add ( ' disabled ' )
2019-06-21 23:04:04 +02:00
cfg = get_config ( cfg_ori , config_type )
if config_type != ' tiramisu-api ' :
# FIXME
raises ( PropertiesOptionError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 0).value.set( ' 192.168.230.145 ' ) " )
if config_type == ' tiramisu-api ' :
cfg . send ( )
2017-05-17 22:13:05 +02:00
2019-02-23 19:06:23 +01:00
def test_sub_group_in_leader_group ( ) :
2013-02-06 17:19:56 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2013-02-06 16:21:30 +01:00
subgroup = OptionDescription ( " subgroup " , ' ' , [ ] )
2019-02-23 19:06:23 +01:00
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , [subgroup, ip_admin_eth0, netmask_admin_eth0]) " )
2013-02-06 17:19:56 +01:00
2013-04-18 20:26:40 +02:00
2013-02-21 17:07:00 +01:00
def test_group_always_has_multis ( ) :
2013-02-06 17:19:56 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " )
2019-02-23 19:06:23 +01:00
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , [ip_admin_eth0, netmask_admin_eth0]) " )
2013-02-25 11:33:20 +01:00
2013-04-18 20:26:40 +02:00
#____________________________________________________________
2019-06-21 23:04:04 +02:00
def test_values_with_leader_and_followers ( config_type ) :
2013-02-25 11:33:20 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2013-02-25 11:33:20 +01:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
owner = global_owner ( cfg , config_type )
cfg = get_config ( cfg , config_type )
2019-02-23 19:06:23 +01:00
assert interface1 . impl_get_group_type ( ) == groups . leadership
2019-06-21 23:04:04 +02:00
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
2018-03-19 08:33:53 +01:00
#
2019-06-21 23:04:04 +02:00
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ " 192.168.230.145 " ]
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) is None
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == owner
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " , " 192.168.230.147 " ] )
if config_type != ' tiramisu-api ' :
# FIXME
raises ( APIError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' ).value.set([None]) " )
raises ( APIError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' ).value.pop(0) " )
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_reset_values_with_leader_and_followers ( config_type ) :
2013-02-25 11:33:20 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2013-02-25 11:33:20 +01:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
owner = global_owner ( cfg , config_type )
cfg = Config ( maconfig )
2019-02-23 19:06:23 +01:00
assert interface1 . impl_get_group_type ( ) == groups . leadership
2019-06-21 23:04:04 +02:00
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == owner
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
2014-12-01 23:08:56 +01:00
#reset
2019-06-21 23:04:04 +02:00
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
2013-04-18 23:06:14 +02:00
2019-02-23 19:06:23 +01:00
def test_reset_values_with_leader_and_followers_default_value ( ) :
2017-02-04 14:34:56 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 192.168.230.145 ' ] )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True , default = [ ' 255.255.255.0 ' ] )
2019-02-23 19:06:23 +01:00
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , [ip_admin_eth0, netmask_admin_eth0]) " )
2017-02-04 14:34:56 +01:00
2019-06-21 23:04:04 +02:00
def test_reset_values_with_leader_and_followers_default ( config_type ) :
2015-04-19 09:37:46 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 192.168.230.145 ' ] )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2015-04-19 09:37:46 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
owner = global_owner ( cfg , config_type )
cfg = get_config ( cfg , config_type )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.146 ' ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == owner
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.230.145 ' ]
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( None )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.146 ' ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == owner
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . get ( ) == owner
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . get ( ) == owners . default
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.230.145 ' ]
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( None )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . get ( ) == owner
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.230.145 ' ]
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( None )
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_values_with_leader_and_followers_follower ( config_type ) :
2019-12-08 09:09:48 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , properties = ( ' notunique ' , ) )
2013-04-18 23:06:14 +02:00
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2013-04-18 23:06:14 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
if config_type != ' tiramisu-api ' :
raises ( LeadershipError ,
" cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 0).value.set( ' 255.255.255.0 ' ) " )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . reset ( )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
2018-03-19 08:33:53 +01:00
#
2019-06-21 23:04:04 +02:00
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' , ' 192.168.230.145 ' ] )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.255.0 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) is None
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . set ( ' 255.255.255.0 ' )
if config_type != ' tiramisu-api ' :
# FIXME
raises ( APIError , " cfg.option( ' ip_admin_eth0.netmask_admin_eth0 ' , 1).value.pop(1) " )
2014-12-01 23:08:56 +01:00
#reset
2019-06-21 23:04:04 +02:00
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' ,
2018-03-19 08:33:53 +01:00
' 192.168.230.145 ' ,
' 192.168.230.145 ' ] )
2019-06-21 23:04:04 +02:00
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
if config_type == ' tiramisu-api ' :
cfg . send ( )
2013-04-18 23:06:14 +02:00
2019-06-21 23:04:04 +02:00
def test_values_with_leader_and_followers_pop ( config_type ) :
2017-07-24 18:27:24 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2017-07-24 18:27:24 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.145 ' , ' 192.168.230.146 ' ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . set ( ' 255.255.0.0 ' )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.230.145 ' , ' 192.168.230.146 ' ]
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.255.0 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) == ' 255.255.0.0 '
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.230.146 ' ]
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.0.0 '
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_values_with_leader_and_followers_leader ( config_type ) :
2019-12-08 09:09:48 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , properties = ( ' notunique ' , ) )
2013-04-18 23:06:14 +02:00
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2013-04-18 23:06:14 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " , " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.0 ' )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . set ( ' 255.255.255.0 ' )
if config_type != ' tiramisu-api ' :
raises ( LeadershipError , " cfg.option( ' ip_admin_eth0.ip_admin_eth0 ' ).value.set([ ' 192.168.230.145 ' ]) " )
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.255.0 '
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) == ' 255.255.255.0 '
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 1 )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ " 192.168.230.145 " ]
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.255.0 '
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . reset ( )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
if config_type == ' tiramisu-api ' :
cfg . send ( )
2013-05-17 18:11:14 +02:00
2019-02-23 19:06:23 +01:00
def test_values_with_leader_and_followers_leader_pop ( ) :
2019-12-08 09:09:48 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , properties = ( ' notunique ' , ) )
2017-10-22 15:10:50 +02:00
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2017-10-22 15:10:50 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " , " 192.168.230.146 " ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . set ( ' 255.255.0.0 ' )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ " 192.168.230.145 " , " 192.168.230.146 " ]
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == None
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) == ' 255.255.0.0 '
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 1 , ) ) , ( ( ' 192.168.230.145 ' , ' 192.168.230.146 ' ) , ( ' 255.255.0.0 ' , ) ) , ( ' user ' , ( ' user ' , ) ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 0 , ) ) , ( ( ' 192.168.230.146 ' , ) , ( ' 255.255.0.0 ' , ) ) , ( ' user ' , ( ' user ' , ) ) ) )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ " 192.168.230.146 " ]
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.0.0 '
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.230.146 ' , " 192.168.230.145 " , " 192.168.230.146 " , " 192.168.230.147 " , " 192.168.230.148 " , " 192.168.230.149 " ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 3 ) . value . set ( ' 255.255.0.0 ' )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 4 ) . value . set ( ' 255.255.0.0 ' )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 0 , 3 , 4 ) ) , ( ( ' 192.168.230.146 ' , " 192.168.230.145 " , " 192.168.230.146 " , " 192.168.230.147 " , " 192.168.230.148 " , " 192.168.230.149 " ) , ( ' 255.255.0.0 ' , ' 255.255.0.0 ' , ' 255.255.0.0 ' ) ) , ( ' user ' , ( ' user ' , ' user ' , ' user ' ) ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 5 )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 0 , 3 , 4 ) ) , ( ( ' 192.168.230.146 ' , " 192.168.230.145 " , " 192.168.230.146 " , " 192.168.230.147 " , " 192.168.230.148 " ) , ( ' 255.255.0.0 ' , ' 255.255.0.0 ' , ' 255.255.0.0 ' ) ) , ( ' user ' , ( ' user ' , ' user ' , ' user ' ) ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 2 )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 0 , 2 , 3 ) ) , ( ( ' 192.168.230.146 ' , " 192.168.230.145 " , " 192.168.230.147 " , " 192.168.230.148 " ) , ( ' 255.255.0.0 ' , ' 255.255.0.0 ' , ' 255.255.0.0 ' ) ) , ( ' user ' , ( ' user ' , ' user ' , ' user ' ) ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 2 )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 0 , 2 ) ) , ( ( ' 192.168.230.146 ' , " 192.168.230.145 " , " 192.168.230.148 " ) , ( ' 255.255.0.0 ' , ' 255.255.0.0 ' ) ) , ( ' user ' , ( ' user ' , ' user ' ) ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 2 )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ) , ( None , ( 0 , ) ) , ( ( ' 192.168.230.146 ' , " 192.168.230.145 " ) , ( ' 255.255.0.0 ' , ) ) , ( ' user ' , ( ' user ' , ) ) ) )
def test_values_with_leader_owner ( config_type ) :
2013-05-17 18:11:14 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2013-05-17 18:11:14 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
owner = cfg . owner . get ( )
cfg = get_config ( cfg , config_type )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == owner
assert cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == owner
def test_values_with_leader_disabled ( config_type ) :
2013-05-17 18:11:14 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2013-05-17 18:11:14 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg_ori = Config ( maconfig )
cfg_ori . property . read_write ( )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( " 192.168.230.145 " )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
if config_type == ' tiramisu-api ' :
cfg . send ( )
cfg_ori . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . property . add ( ' disabled ' )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
if config_type == ' tiramisu-api ' :
cfg . send ( )
2013-05-17 18:11:14 +02:00
#delete with value in disabled var
2019-06-21 23:04:04 +02:00
cfg_ori . unrestraint . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . property . pop ( ' disabled ' )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( " 192.168.230.145 " )
if config_type == ' tiramisu-api ' :
cfg . send ( )
cfg_ori . unrestraint . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . property . add ( ' disabled ' )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . pop ( 0 )
##append with value in disabled var
if config_type == ' tiramisu-api ' :
cfg . send ( )
cfg_ori . unrestraint . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . property . pop ( ' disabled ' )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( " 192.168.230.145 " )
if config_type == ' tiramisu-api ' :
cfg . send ( )
cfg_ori . unrestraint . option ( ' ip_admin_eth0.netmask_admin_eth0 ' ) . property . add ( ' disabled ' )
cfg = get_config ( cfg_ori , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ " 192.168.230.145 " , ' 192.168.230.43 ' ] )
if config_type == ' tiramisu-api ' :
cfg . send ( )
def test_multi_non_valid_value ( config_type ) :
2013-08-25 18:06:07 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
maconfig = OptionDescription ( ' toto ' , ' ' , [ ip_admin_eth0 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
cfg . option ( ' ip_admin_eth0 ' ) . value . set ( [ ' a ' ] )
raises ( ValueError , " cfg.option( ' ip_admin_eth0 ' ).value.set([1]) " )
if config_type == ' tiramisu-api ' :
cfg . send ( )
2015-04-19 09:37:46 +02:00
2019-06-21 23:04:04 +02:00
def test_multi_leader_default_follower ( config_type ) :
2015-04-19 09:37:46 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , default_multi = " 255.255.255.0 " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2015-04-19 09:37:46 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg = get_config ( cfg , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
assert cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.1.1 ' ]
if config_type == ' tiramisu-api ' :
cfg . send ( )
2017-02-03 23:39:24 +01:00
2019-02-23 19:06:23 +01:00
def test_groups_with_leader_get_modified_value ( ) :
2019-12-08 09:09:48 +01:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , properties = ( ' notunique ' , ) )
2017-02-03 23:39:24 +01:00
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2017-02-03 23:39:24 +01:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
compare ( cfg . value . exportation ( ) , ( ( ) , ( ) , ( ) , ( ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' ] )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ) , ( None , ) , ( ( ' 192.168.1.1 ' , ) , ) , ( ' user ' , ) ) )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . set ( ' 255.255.255.255 ' )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' , ) , ( None , ( 0 , ) ) , ( ( ' 192.168.1.1 ' , ) , ( ' 255.255.255.255 ' , ) ) , ( ' user ' , ( ' user ' , ) ) ) )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . set ( [ ' 192.168.1.1 ' , ' 192.168.1.1 ' ] )
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . set ( ' 255.255.255.255 ' )
compare ( cfg . value . exportation ( ) , ( ( ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' , ) , ( None , ( 0 , 1 ) ) , ( ( ' 192.168.1.1 ' , ' 192.168.1.1 ' ) , ( ' 255.255.255.255 ' , ' 255.255.255.255 ' ) ) , ( ' user ' , ( ' user ' , ' user ' ) ) ) )
def test_groups_with_leader_importation ( config_type ) :
2018-06-09 18:59:40 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-06-09 18:59:40 +02:00
maconfig = OptionDescription ( ' toto ' , ' ' , [ interface1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
cfg . value . importation ( [ [ ' ip_admin_eth0.ip_admin_eth0 ' , ' ip_admin_eth0.netmask_admin_eth0 ' ] , [ None , [ 0 , 1 ] ] , [ [ ' 192.168.1.1 ' , ' 192.168.1.0 ' ] , [ ' 255.255.255.255 ' , ' 255.255.255.0 ' ] ] , [ ' user ' , [ ' user ' , ' user ' ] ] ] )
cfg = get_config ( cfg , config_type )
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . value . get ( ) == [ ' 192.168.1.1 ' , ' 192.168.1.0 ' ]
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . value . get ( ) == ' 255.255.255.255 '
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . value . get ( ) == ' 255.255.255.0 '
cfg . option ( ' ip_admin_eth0.ip_admin_eth0 ' ) . owner . get ( ) == ' user '
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . owner . get ( ) == ' user '
cfg . option ( ' ip_admin_eth0.netmask_admin_eth0 ' , 1 ) . owner . get ( ) == ' user '
if config_type == ' tiramisu-api ' :
cfg . send ( )
2018-04-06 23:51:25 +02:00
def test_wrong_index ( ) :
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 1.1.1.1 ' ] )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
interface1 = Leadership ( ' ip_admin_eth0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-04-06 23:51:25 +02:00
od1 = OptionDescription ( ' od ' , ' ' , [ interface1 ] )
maconfig = OptionDescription ( ' toto ' , ' ' , [ od1 ] )
2019-06-21 23:04:04 +02:00
cfg = Config ( maconfig )
cfg . property . read_write ( )
assert cfg . option ( ' od.ip_admin_eth0.ip_admin_eth0 ' ) . option . get ( )
raises ( APIError , " cfg.option( ' od.ip_admin_eth0.ip_admin_eth0 ' , 0).option.get() " )
assert cfg . option ( ' od.ip_admin_eth0.netmask_admin_eth0 ' , 0 ) . option . get ( )
assert cfg . option ( ' od.ip_admin_eth0 ' ) . option . get ( )
raises ( APIError , " cfg.option( ' od.ip_admin_eth0 ' , 0).option.get() " )
assert cfg . option ( ' od ' ) . option . get ( )
raises ( APIError , " cfg.option( ' od ' , 0).option.get() " )
2018-04-09 21:37:49 +02:00
2019-02-23 19:06:23 +01:00
def test_without_leader_or_follower ( ) :
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , []) " )
2018-04-09 21:37:49 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 1.1.1.1 ' ] )
2019-02-23 19:06:23 +01:00
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , [ip_admin_eth0]) " )
2018-04-09 21:37:49 +02:00
#empty optiondescription is allowed
OptionDescription ( ' ip_admin_eth0 ' , ' ' , [ ] )
2019-02-23 19:06:23 +01:00
def test_leader_not_multi ( ) :
2018-04-09 21:37:49 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , multi = True )
2019-02-23 19:06:23 +01:00
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , [ip_admin_eth0, netmask_admin_eth0]) " )
2018-04-09 21:37:49 +02:00
2019-02-23 19:06:23 +01:00
def test_follower_not_multi ( ) :
2018-04-09 21:37:49 +02:00
ip_admin_eth0 = StrOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True )
netmask_admin_eth0 = StrOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " )
2019-02-23 19:06:23 +01:00
raises ( ValueError , " Leadership( ' ip_admin_eth0 ' , ' ' , [ip_admin_eth0, netmask_admin_eth0]) " )
2019-07-14 10:35:46 +02:00
2019-02-23 19:06:23 +01:00
def test_follower_force_store_value ( ) :
2018-04-12 23:04:33 +02:00
ip_admin_eth0 = IPOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 1.1.1.1 ' ] )
2019-12-08 09:09:48 +01:00
netmask_admin_eth0 = NetmaskOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , default_multi = ' 255.255.255.0 ' , multi = True , properties = ( ' force_store_value ' , ) )
2019-02-23 19:06:23 +01:00
interface0 = Leadership ( ' interface0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
2018-04-12 23:04:33 +02:00
od1 = OptionDescription ( ' od ' , ' ' , [ interface0 ] )
2019-12-08 09:09:48 +01:00
od2 = OptionDescription ( ' toto ' , ' ' , [ od1 ] )
cfg = Config ( od2 )
cfg . property . read_write ( )
assert not cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
def test_follower_force_store_value_read_only ( ) :
ip_admin_eth0 = IPOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 1.1.1.1 ' ] )
netmask_admin_eth0 = NetmaskOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , default_multi = ' 255.255.255.0 ' , multi = True , properties = ( ' force_store_value ' , ) )
interface0 = Leadership ( ' interface0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
od1 = OptionDescription ( ' od ' , ' ' , [ interface0 ] )
od2 = OptionDescription ( ' toto ' , ' ' , [ od1 ] )
cfg = Config ( od2 )
cfg . property . read_only ( )
assert not cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
def test_follower_force_store_value_reset ( ) :
ip_admin_eth0 = IPOption ( ' ip_admin_eth0 ' , " ip réseau autorisé " , multi = True , default = [ ' 1.1.1.1 ' ] )
netmask_admin_eth0 = NetmaskOption ( ' netmask_admin_eth0 ' , " masque du sous-réseau " , default_multi = ' 255.255.255.0 ' , multi = True , properties = ( ' force_store_value ' , ) )
interface0 = Leadership ( ' interface0 ' , ' ' , [ ip_admin_eth0 , netmask_admin_eth0 ] )
od1 = OptionDescription ( ' od ' , ' ' , [ interface0 ] )
od2 = OptionDescription ( ' toto ' , ' ' , [ od1 ] )
cfg = Config ( od2 )
cfg . property . read_write ( )
cfg . option ( ' od.interface0.ip_admin_eth0 ' ) . value . set ( [ ' 1.1.1.1 ' , ' 192.168.0.0 ' ] )
assert not cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )
assert not cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 1 ) . owner . isdefault ( )
#
cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 1 ) . value . reset ( )
assert not cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 1 ) . owner . isdefault ( )
#
cfg . option ( ' od.interface0.ip_admin_eth0 ' ) . value . pop ( 0 )
cfg . option ( ' od.interface0.ip_admin_eth0 ' ) . value . pop ( 0 )
assert cfg . option ( ' od.interface0.ip_admin_eth0 ' ) . value . get ( ) == [ ]
cfg . option ( ' od.interface0.ip_admin_eth0 ' ) . value . reset ( )
assert not cfg . option ( ' od.interface0.netmask_admin_eth0 ' , 0 ) . owner . isdefault ( )