Skip to content
Snippets Groups Projects
Commit a19d8cd5 authored by Iustin Pop's avatar Iustin Pop
Browse files

Fix cfgupgrade unittests


Sorry, I broke the cfgupgrade unittests via 904910c4, since that
commit added the requirement for the "instances" dict in the
configuration.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent 904910c4
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,7 @@ class TestCfgupgrade(unittest.TestCase):
utils.WriteFile(self.config_path, data=serializer.DumpJson({
"version": constants.CONFIG_VERSION,
"cluster": {},
"instances": {},
}))
hostname = netutils.GetHostname().name
......@@ -105,6 +106,7 @@ class TestCfgupgrade(unittest.TestCase):
utils.WriteFile(self.config_path, data=serializer.DumpJson({
"version": constants.CONFIG_VERSION,
"cluster": {},
"instances": {},
}))
utils.WriteFile(self.ss_master_node_path,
......@@ -120,6 +122,7 @@ class TestCfgupgrade(unittest.TestCase):
"cluster": {
"config_version": 0,
},
"instances": {},
}
utils.WriteFile(self.config_path, data=serializer.DumpJson(cfg))
self.assertRaises(Exception, _RunUpgrade, self.tmpdir, False, True)
......@@ -134,6 +137,7 @@ class TestCfgupgrade(unittest.TestCase):
cfg = {
"version": from_version,
"cluster": {},
"instances": {},
}
self._CreateValidConfigDir()
utils.WriteFile(self.config_path, data=serializer.DumpJson(cfg))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment