Пример #1
0
    def test_create_ports(self):
        m_response = mock.Mock()
        m_response.json.return_value = {'ports': []}
        m_post = mock.Mock()
        m_post.return_value = m_response
        m_osdk = mock.Mock()
        m_osdk.post = m_post

        payload = {'ports': [{'admin_state_up': True,
                              'allowed_address_pairs': [{}],
                              'binding_host_id': 'binding-host-id-1',
                              'binding_profile': {},
                              'binding_vif_details': {},
                              'binding_vif_type': 'ovs',
                              'binding_vnic_type': 'normal',
                              'device_id': 'device-id-1',
                              'device_owner': 'compute:nova',
                              'dns_assignment': [{}],
                              'dns_name': 'dns-name-1',
                              'extra_dhcp_opts': [{}],
                              'fixed_ips': [{'subnet_id': 'subnet-id-1',
                                             'ip_address': '10.10.10.01'}],
                              'id': 'port-id-1',
                              'mac_address': 'de:ad:be:ef:de:ad',
                              'name': 'port-name-',
                              'network_id': 'network-id-1',
                              'port_security_enabled': True,
                              'security_groups': [],
                              'status': 'ACTIVE',
                              'tenant_id': 'project-id-'}]}

        expected = {'ports': [{'admin_state_up': True,
                               'allowed_address_pairs': [{}],
                               'binding:host_id': 'binding-host-id-1',
                               'binding:profile': {},
                               'binding:vif_details': {},
                               'binding:vif_type': 'ovs',
                               'binding:vnic_type': 'normal',
                               'device_id': 'device-id-1',
                               'device_owner': 'compute:nova',
                               'dns_assignment': [{}],
                               'dns_name': 'dns-name-1',
                               'extra_dhcp_opts': [{}],
                               'fixed_ips': [{'subnet_id': 'subnet-id-1',
                                              'ip_address': '10.10.10.01'}],
                               'id': 'port-id-1',
                               'mac_address': 'de:ad:be:ef:de:ad',
                               'name': 'port-name-',
                               'network_id': 'network-id-1',
                               'port_security_enabled': True,
                               'security_groups': [],
                               'status': 'ACTIVE',
                               'tenant_id': 'project-id-'}]}

        clients._create_ports(m_osdk, payload)
        m_post.assert_called_once_with(os_port.Port.base_path, json=expected)
Пример #2
0
    def test_create_no_ports(self):
        m_response = mock.Mock()
        m_response.json.return_value = {'ports': []}
        m_post = mock.Mock()
        m_post.return_value = m_response
        m_osdk = mock.Mock()
        m_osdk.post = m_post

        payload = {'ports': []}

        clients._create_ports(m_osdk, payload)
        m_post.assert_called_once_with(os_port.Port.base_path, json=payload)
Пример #3
0
    def test_create_ports_out_of_ports(self):
        """Simulate error response from OpenStack SDK"""
        m_response = mock.Mock()
        m_response.text = ('{"NeutronError": {"type": "OverQuota", "message": '
                           '"Quota exceeded for resources: [\'port\'].", '
                           '"detail": ""}}')
        m_response.ok = False
        m_post = mock.Mock()
        m_post.return_value = m_response
        m_osdk = mock.Mock()
        m_osdk.post = m_post

        payload = {'ports': []}

        try:
            clients._create_ports(m_osdk, payload)
        except os_exc.SDKException as ex:
            # no additional params passed to the exception class
            self.assertIsNone(ex.extra_data)
            # no formatting placeholders in message
            self.assertNotIn('%s', ex.message)

        m_post.assert_called_once_with(os_port.Port.base_path, json=payload)