Add missing unit test for a recent commit

In commit bd52d08efa, unit test code
has only added in tests/ directory. However, as the recent namespace
changing, the working directory should be oslo_messaging/tests.

This patch adds the missing unit test.

Change-Id: Iba5369dbed1d602ade59dcdde3d1706524b82a0b
This commit is contained in:
Li Ma 2015-02-04 19:06:25 -08:00
parent bd52d08efa
commit 4e182b22d9

View File

@ -46,6 +46,7 @@ class RedisMatchMakerTest(test_utils.BaseTestCase):
"network": ["controller1", "node1", "node2", "node3"],
"cert": ["controller1"],
"console": ["controller1"],
"l3_agent.node1": ["node1"],
"consoleauth": ["controller1"]}
self.matcher = matchmaker_redis.MatchMakerRedis()
self.populate()
@ -70,6 +71,10 @@ class RedisMatchMakerTest(test_utils.BaseTestCase):
self.assertEqual(
sorted(self.matcher.redis.smembers('cert')),
['cert.controller1', 'cert.keymaster'])
self.matcher.register('l3_agent.node1', 'node1')
self.assertEqual(
sorted(self.matcher.redis.smembers('l3_agent.node1')),
['l3_agent.node1.node1'])
def test_unregister(self):
self.matcher.unregister('conductor', 'controller1')