Merge "Adding v2 namespaced event to zone manager"
This commit is contained in:
commit
40ec27f98a
@ -165,9 +165,14 @@ class PeriodicExistsTest(TaskTest):
|
||||
data = dict(zone)
|
||||
data.update(self.period_data)
|
||||
|
||||
self.mock_notifier.info.assert_called_with(
|
||||
# Ensure both the old (domain) and new (zone) events are fired
|
||||
# until the old is fully deprecated.
|
||||
self.mock_notifier.info.assert_any_call(
|
||||
self.ctxt, "dns.domain.exists", data)
|
||||
|
||||
self.mock_notifier.info.assert_any_call(
|
||||
self.ctxt, "dns.zone.exists", data)
|
||||
|
||||
def test_emit_exists_no_zones(self):
|
||||
with mock.patch.object(self.task, '_iter_zones') as iter_:
|
||||
iter_.return_value = []
|
||||
@ -184,9 +189,15 @@ class PeriodicExistsTest(TaskTest):
|
||||
for z in zones:
|
||||
data = dict(z)
|
||||
data.update(self.period_data)
|
||||
self.mock_notifier.info.assert_called_with(
|
||||
|
||||
# Ensure both the old (domain) and new (zone) events are fired
|
||||
# until the old is fully deprecated.
|
||||
self.mock_notifier.info.assert_any_call(
|
||||
self.ctxt, "dns.domain.exists", data)
|
||||
|
||||
self.mock_notifier.info.assert_any_call(
|
||||
self.ctxt, "dns.zone.exists", data)
|
||||
|
||||
|
||||
class PeriodicSecondaryRefreshTest(TaskTest):
|
||||
def setUp(self):
|
||||
|
@ -192,6 +192,7 @@ class PeriodicExistsTask(PeriodicTask):
|
||||
zone_data.update(extra_data)
|
||||
|
||||
self.notifier.info(ctxt, 'dns.domain.exists', zone_data)
|
||||
self.notifier.info(ctxt, 'dns.zone.exists', zone_data)
|
||||
|
||||
LOG.info(_LI("Finished emitting %(counter)d events for shards "
|
||||
"%(start)s to %(end)s"),
|
||||
|
Loading…
Reference in New Issue
Block a user