Example #1
0
 def test_timeout_default(self):
     config = {
         'client.0': {'branch': 'testing'},
     }
     overrides = {}
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'client.0': {'branch': 'testing'},
     }
     assert t == TIMEOUT_DEFAULT
Example #2
0
 def test_timeout(self):
     config = {
         'client.0': {'branch': 'testing'},
         'timeout': 100,
     }
     overrides = {}
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'client.0': {'branch': 'testing'},
     }
     assert t == 100
Example #3
0
 def test_override_different_version_key(self):
     config = {
         'client.0': {'branch': 'testing'},
     }
     overrides = {
         'client.0': {'tag': 'v4.1'},
     }
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'client.0': {'tag': 'v4.1'},
     }
     assert t == TIMEOUT_DEFAULT
Example #4
0
 def test_override_same_version_key(self):
     config = {
         'client.0': {'branch': 'testing'},
     }
     overrides = {
         'client.0': {'branch': 'wip-foobar'},
     }
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'client.0': {'branch': 'wip-foobar'},
     }
     assert t == TIMEOUT_DEFAULT
Example #5
0
 def test_override_top_level(self):
     config = {'branch': 'testing'}
     overrides = {'koji': 1234, 'kdb': True}
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'mon.a': {'koji': 1234, 'kdb': True},
         'osd.0': {'koji': 1234, 'kdb': True},
         'osd.1': {'koji': 1234, 'kdb': True},
         'osd.2': {'koji': 1234, 'kdb': True},
         'client.0': {'koji': 1234, 'kdb': True},
         'client.1': {'koji': 1234, 'kdb': True},
     }
     assert t == TIMEOUT_DEFAULT
Example #6
0
 def test_default(self):
     config = {}
     overrides = {}
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'mon.a': CONFIG_DEFAULT,
         'osd.0': CONFIG_DEFAULT,
         'osd.1': CONFIG_DEFAULT,
         'osd.2': CONFIG_DEFAULT,
         'client.0': CONFIG_DEFAULT,
         'client.1': CONFIG_DEFAULT,
     }
     assert t == TIMEOUT_DEFAULT
Example #7
0
 def test_override_actual(self):
     config = {
         'osd.1': {'tag': 'v4.1'},
         'client.0': {'branch': 'testing'},
     }
     overrides = {
         'osd.1': {'koji': 1234, 'kdb': True},
     }
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'osd.1': {'koji': 1234, 'kdb': True},
         'client.0': {'branch': 'testing'},
     }
     assert t == TIMEOUT_DEFAULT
Example #8
0
 def test_override_generic_with_top_level(self):
     config = {
         'osd': {'tag': 'v4.1'},
         'client': {'branch': 'testing', 'kdb': False},
     }
     overrides = {
         'client': {'koji': 1234},
     }
     config, t = normalize_and_apply_overrides(self.ctx, config, overrides)
     assert config == {
         'osd.0': {'tag': 'v4.1'},
         'osd.1': {'tag': 'v4.1'},
         'osd.2': {'tag': 'v4.1'},
         'client.0': {'koji': 1234, 'kdb': False},
         'client.1': {'koji': 1234, 'kdb': False},
     }
     assert t == TIMEOUT_DEFAULT