Merge "Don't mock internal implementation details of oslo"

This commit is contained in:
Zuul 2018-10-10 01:37:39 +00:00 committed by Gerrit Code Review
commit 618a0fb028
1 changed files with 6 additions and 7 deletions

View File

@ -141,12 +141,11 @@ class NotificationsTestCase(unit.BaseTestCase):
expected_args = [
{}, # empty context
'identity.%s.created' % resource_type, # event_type
{'resource_info': resource}, # payload
'INFO', # priority is always INFO...
{'resource_info': resource} # payload
]
with mock.patch.object(notifications._get_notifier(),
'_notify') as mocked:
'info') as mocked:
notifications._send_notification(operation, resource_type,
resource)
mocked.assert_called_once_with(*expected_args)
@ -170,7 +169,7 @@ class NotificationsTestCase(unit.BaseTestCase):
conf.config(notification_opt_out=[event_type])
with mock.patch.object(notifications._get_notifier(),
'_notify') as mocked:
'info') as mocked:
notifications._send_notification(operation, resource_type,
resource)
@ -194,7 +193,7 @@ class NotificationsTestCase(unit.BaseTestCase):
conf.config(notification_opt_out=[event_type])
with mock.patch.object(notifications._get_notifier(),
'_notify') as mocked:
'info') as mocked:
notifications._send_audit_notification(action,
initiator,
@ -218,7 +217,7 @@ class NotificationsTestCase(unit.BaseTestCase):
conf.config(notification_opt_out=[meter_name])
with mock.patch.object(notifications._get_notifier(),
'_notify') as mocked:
'info') as mocked:
notifications._send_audit_notification(action,
initiator,
@ -1341,7 +1340,7 @@ class CADFNotificationsDataTestCase(test_v3.RestfulTestCase):
event_type = 'identity.authenticate.created'
with mock.patch.object(notifications._get_notifier(),
'_notify') as mocked:
'info') as mocked:
notifications._send_audit_notification(action,
initiator,