Add unit tests for "server suspend" command.
Change-Id: Idfdd98fd27d97e1216abe9b14d3dea7c8f2a5a68 Implements: blueprint osc-unit-test-framework-improvement
This commit is contained in:
parent
4062d59965
commit
c176987063
@ -779,6 +779,26 @@ class TestServerResize(TestServer):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class TestServerSuspend(TestServer):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TestServerSuspend, self).setUp()
|
||||||
|
|
||||||
|
# Get the command object to test
|
||||||
|
self.cmd = server.SuspendServer(self.app, None)
|
||||||
|
|
||||||
|
# Set methods to be tested.
|
||||||
|
self.methods = {
|
||||||
|
'suspend': None,
|
||||||
|
}
|
||||||
|
|
||||||
|
def test_server_suspend_one_server(self):
|
||||||
|
self.run_method_with_servers('suspend', 1)
|
||||||
|
|
||||||
|
def test_server_suspend_multi_servers(self):
|
||||||
|
self.run_method_with_servers('suspend', 3)
|
||||||
|
|
||||||
|
|
||||||
class TestServerUnlock(TestServer):
|
class TestServerUnlock(TestServer):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user