Skip to content
Snippets Groups Projects
Commit bd5f214b authored by Apollon Oikonomopoulos's avatar Apollon Oikonomopoulos Committed by Iustin Pop
Browse files

_CheckIAllocatorOrNode unit tests


Add unit tests to check the function of _CheckIAllocatorOrNode

Signed-off-by: default avatarApollon Oikonomopoulos <apollon@noc.grnet.gr>
Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent b6dd40f5
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ from ganeti import errors ...@@ -35,6 +35,7 @@ from ganeti import errors
from ganeti import utils from ganeti import utils
import testutils import testutils
import mocks
class TestCertVerification(testutils.GanetiTestCase): class TestCertVerification(testutils.GanetiTestCase):
...@@ -94,5 +95,57 @@ class TestOpcodeParams(testutils.GanetiTestCase): ...@@ -94,5 +95,57 @@ class TestOpcodeParams(testutils.GanetiTestCase):
(lu_name, utils.CommaJoin(extra))) (lu_name, utils.CommaJoin(extra)))
class TestIAllocatorChecks(testutils.GanetiTestCase):
def testFunction(self):
class TestLU(object):
def __init__(self, opcode):
self.cfg = mocks.FakeConfig()
self.op = opcode
class TestOpcode(opcodes.OpCode):
OP_ID = "OP_TEST"
__slots__ = ["iallocator", "node"]
default_iallocator = mocks.FakeConfig().GetDefaultIAllocator()
other_iallocator = default_iallocator + "_not"
op = TestOpcode()
lu = TestLU(op)
c_i = lambda: cmdlib._CheckIAllocatorOrNode(lu, "iallocator", "node")
# Neither node nor iallocator given
op.iallocator = None
op.node = None
c_i()
self.assertEqual(lu.op.iallocator, default_iallocator)
self.assertEqual(lu.op.node, None)
# Both, iallocator and node given
op.iallocator = "test"
op.node = "test"
self.assertRaises(errors.OpPrereqError, c_i)
# Only iallocator given
op.iallocator = other_iallocator
op.node = None
c_i()
self.assertEqual(lu.op.iallocator, other_iallocator)
self.assertEqual(lu.op.node, None)
# Only node given
op.iallocator = None
op.node = "node"
c_i()
self.assertEqual(lu.op.iallocator, None)
self.assertEqual(lu.op.node, "node")
# No node, iallocator or default iallocator
op.iallocator = None
op.node = None
lu.cfg.GetDefaultIAllocator = lambda: None
self.assertRaises(errors.OpPrereqError, c_i)
if __name__ == "__main__": if __name__ == "__main__":
testutils.GanetiTestProgram() testutils.GanetiTestProgram()
...@@ -51,6 +51,9 @@ class FakeConfig: ...@@ -51,6 +51,9 @@ class FakeConfig:
def GetMasterNode(self): def GetMasterNode(self):
return utils.HostInfo().name return utils.HostInfo().name
def GetDefaultIAllocator(Self):
return "testallocator"
class FakeProc: class FakeProc:
"""Fake processor object""" """Fake processor object"""
......
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