Commit faa67596 authored by Vincent Pelletier's avatar Vincent Pelletier

Remove 2 XXX by using real node states.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@334 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent e5fb619d
...@@ -642,9 +642,8 @@ class ClientEventHandlerTest(unittest.TestCase): ...@@ -642,9 +642,8 @@ class ClientEventHandlerTest(unittest.TestCase):
raise NotImplementedError raise NotImplementedError
def test_unknownStorageNotifyNodeInformation(self): def test_unknownStorageNotifyNodeInformation(self):
# TODO: use realistic value for node state
test_node = (STORAGE_NODE_TYPE, '127.0.0.1', 10010, self.getUUID(), test_node = (STORAGE_NODE_TYPE, '127.0.0.1', 10010, self.getUUID(),
0) RUNNING_STATE)
nm = self._testNotifyNodeInformation(test_node, getNodeByUUID=None) nm = self._testNotifyNodeInformation(test_node, getNodeByUUID=None)
# Check that node got added # Check that node got added
add_call_list = nm.mockGetNamedCalls('add') add_call_list = nm.mockGetNamedCalls('add')
...@@ -657,10 +656,9 @@ class ClientEventHandlerTest(unittest.TestCase): ...@@ -657,10 +656,9 @@ class ClientEventHandlerTest(unittest.TestCase):
# Likewise for server address and node uuid. # Likewise for server address and node uuid.
def test_knownStorageNotifyNodeInformation(self): def test_knownStorageNotifyNodeInformation(self):
# TODO: use realistic value for node state
node = Mock({'setState': None, 'setServer': None}) node = Mock({'setState': None, 'setServer': None})
test_node = (STORAGE_NODE_TYPE, '127.0.0.1', 10010, self.getUUID(), test_node = (STORAGE_NODE_TYPE, '127.0.0.1', 10010, self.getUUID(),
0) RUNNING_STATE)
nm = self._testNotifyNodeInformation(test_node, getNodeByUUID=node) nm = self._testNotifyNodeInformation(test_node, getNodeByUUID=node)
# Check that no node got added # Check that no node got added
self.assertEqual(len(nm.mockGetNamedCalls('add')), 0) self.assertEqual(len(nm.mockGetNamedCalls('add')), 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment