コード例 #1
0
 def test_update_security_group_conflict(self):
     with mock.patch.object(registry, "notify") as mock_notify:
         mock_notify.side_effect = exceptions.CallbackFailure(Exception())
         secgroup = {'security_group': mock.ANY}
         with testtools.ExpectedException(
                 securitygroup.SecurityGroupConflict):
             self.mixin.update_security_group(self.ctx, 'foo_id', secgroup)
コード例 #2
0
 def test_delete_security_group_in_use(self):
     with mock.patch.object(self.mixin,
                            '_get_port_security_group_bindings'),\
             mock.patch.object(self.mixin, '_get_security_group'),\
             mock.patch.object(registry, "notify") as mock_notify:
         mock_notify.side_effect = exceptions.CallbackFailure(Exception())
         with testtools.ExpectedException(securitygroup.SecurityGroupInUse):
             self.mixin.delete_security_group(self.ctx, mock.ANY)
コード例 #3
0
 def test_create_security_group_rule_conflict(self):
     with mock.patch.object(self.mixin, '_validate_security_group_rule'),\
             mock.patch.object(self.mixin,
                               '_check_for_duplicate_rules_in_db'),\
             mock.patch.object(registry, "notify") as mock_notify:
         mock_notify.side_effect = exceptions.CallbackFailure(Exception())
         with testtools.ExpectedException(
                 securitygroup.SecurityGroupConflict):
             self.mixin.create_security_group_rule(self.ctx,
                                                   mock.MagicMock())
コード例 #4
0
ファイル: manager.py プロジェクト: nanjekyejoannah-zz/neutron
    def notify(self, resource, event, trigger, **kwargs):
        """Notify all subscribed callback(s).

        Dispatch the resource's event to the subscribed callbacks.

        :param resource: the resource.
        :param event: the event.
        :param trigger: the trigger. A reference to the sender of the event.
        """
        errors = self._notify_loop(resource, event, trigger, **kwargs)
        if errors:
            if event.startswith(events.BEFORE):
                abort_event = event.replace(events.BEFORE, events.ABORT)
                self._notify_loop(resource, abort_event, trigger, **kwargs)

                raise exceptions.CallbackFailure(errors=errors)

            if event.startswith(events.PRECOMMIT):
                raise exceptions.CallbackFailure(errors=errors)
コード例 #5
0
 def test_create_security_group_rule_conflict(self):
     with mock.patch.object(registry, "notify") as mock_notify:
         mock_notify.side_effect = exceptions.CallbackFailure(Exception())
         with testtools.ExpectedException(
                 securitygroup.SecurityGroupConflict):
             self.mixin.create_security_group_rule(self.ctx, mock.ANY)