¡@

Home 

OpenStack Study: test_n1kv_plugin.py

OpenStack Index

**** CubicPower OpenStack Study ****

# vim: tabstop=4 shiftwidth=4 softtabstop=4

# Copyright 2013 Cisco Systems, Inc.

#

# Licensed under the Apache License, Version 2.0 (the "License"); you may

# not use this file except in compliance with the License. You may obtain

# a copy of the License at

#

# http://www.apache.org/licenses/LICENSE-2.0

#

# Unless required by applicable law or agreed to in writing, software

# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT

# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the

# License for the specific language governing permissions and limitations

# under the License.

#

# @author: Juergen Brendel, Cisco Systems Inc.

# @author: Abhishek Raut, Cisco Systems Inc.

# @author: Sourabh Patwardhan, Cisco Systems Inc.

from mock import patch

from neutron.api import extensions as neutron_extensions

from neutron.api.v2 import attributes

from neutron import context

import neutron.db.api as db

from neutron.extensions import portbindings

from neutron.plugins.cisco.common import cisco_exceptions as c_exc

from neutron.plugins.cisco.db import n1kv_db_v2

from neutron.plugins.cisco.db import network_db_v2 as cdb

from neutron.plugins.cisco import extensions

from neutron.plugins.cisco.extensions import n1kv

from neutron.plugins.cisco.extensions import network_profile

from neutron.plugins.cisco.n1kv import n1kv_client

from neutron.plugins.cisco.n1kv import n1kv_neutron_plugin

from neutron.tests.unit import _test_extension_portbindings as test_bindings

from neutron.tests.unit.cisco.n1kv import fake_client

from neutron.tests.unit import test_api_v2

from neutron.tests.unit import test_db_plugin as test_plugin

PHYS_NET = 'some-phys-net'

VLAN_MIN = 100

VLAN_MAX = 110

**** CubicPower OpenStack Study ****

class FakeResponse(object):

"""

This object is returned by mocked httplib instead of a normal response.

Initialize it with the status code, content type and buffer contents

you wish to return.

"""

**** CubicPower OpenStack Study ****

    def __init__(self, status, response_text, content_type):

        self.buffer = response_text

        self.status = status

**** CubicPower OpenStack Study ****

    def __getitem__(cls, val):

        return "application/xml"

**** CubicPower OpenStack Study ****

    def read(self, *args, **kwargs):

        return self.buffer

def _fake_setup_vsm(self):

    """Fake establish Communication with Cisco Nexus1000V VSM."""

    self.agent_vsm = True

    self._poll_policies(event_type="port_profile")

**** CubicPower OpenStack Study ****

def _fake_setup_vsm(self):

    """Fake establish Communication with Cisco Nexus1000V VSM."""

    self.agent_vsm = True

    self._poll_policies(event_type="port_profile")

**** CubicPower OpenStack Study ****

class NetworkProfileTestExtensionManager(object):

**** CubicPower OpenStack Study ****

    def get_resources(self):

        # Add the resources to the global attribute map

        # This is done here as the setup process won't

        # initialize the main API router which extends

        # the global attribute map

        attributes.RESOURCE_ATTRIBUTE_MAP.update(

            network_profile.RESOURCE_ATTRIBUTE_MAP)

        return network_profile.Network_profile.get_resources()

**** CubicPower OpenStack Study ****

    def get_actions(self):

        return []

**** CubicPower OpenStack Study ****

    def get_request_extensions(self):

        return []

**** CubicPower OpenStack Study ****

class N1kvPluginTestCase(test_plugin.NeutronDbPluginV2TestCase):

_plugin_name = ('neutron.plugins.cisco.n1kv.'

'n1kv_neutron_plugin.N1kvNeutronPluginV2')

tenant_id = "some_tenant"

DEFAULT_RESP_BODY = ""

DEFAULT_RESP_CODE = 200

DEFAULT_CONTENT_TYPE = ""

fmt = "json"

**** CubicPower OpenStack Study ****

    def _make_test_policy_profile(self, name='service_profile'):

        """

        Create a policy profile record for testing purpose.

        :param name: string representing the name of the policy profile to

                     create. Default argument value chosen to correspond to the

                     default name specified in config.py file.

        """

        uuid = test_api_v2._uuid()

        profile = {'id': uuid,

                   'name': name}

        return n1kv_db_v2.create_policy_profile(profile)

**** CubicPower OpenStack Study ****

    def _make_test_profile(self,

                           name='default_network_profile',

                           segment_range='386-400'):

        """

        Create a profile record for testing purposes.

        :param name: string representing the name of the network profile to

                     create. Default argument value chosen to correspond to the

                     default name specified in config.py file.

        :param segment_range: string representing the segment range for network

                              profile.

        """

        db_session = db.get_session()

        profile = {'name': name,

                   'segment_type': 'vlan',

                   'physical_network': PHYS_NET,

                   'tenant_id': self.tenant_id,

                   'segment_range': segment_range}

        net_p = n1kv_db_v2.create_network_profile(db_session, profile)

        n1kv_db_v2.sync_vlan_allocations(db_session, net_p)

        return net_p

**** CubicPower OpenStack Study ****

    def setUp(self):

        """

        Setup method for n1kv plugin tests.

        First step is to define an acceptable response from the VSM to

        our requests. This needs to be done BEFORE the setUp() function

        of the super-class is called.

        This default here works for many cases. If you need something

        extra, please define your own setUp() function in your test class,

        and set your DEFAULT_RESPONSE value also BEFORE calling the

        setUp() of the super-function (this one here). If you have set

        a value already, it will not be overwritten by this code.

        """

        if not self.DEFAULT_RESP_BODY:

            self.DEFAULT_RESP_BODY = (

                """

                

                

                

                configure terminal ; port-profile type vethernet grizzlyPP

                    (SUCCESS)

                

                42227269-e348-72ed-bdb7-7ce91cd1423c

                

                grizzlyPP

                

                

                

                

                configure terminal ; port-profile type vethernet havanaPP

                    (SUCCESS)

                

                3fc83608-ae36-70e7-9d22-dec745623d06

                

                havanaPP

                

                

                

                """)

        # Creating a mock HTTP connection object for httplib. The N1KV client

        # interacts with the VSM via HTTP. Since we don't have a VSM running

        # in the unit tests, we need to 'fake' it by patching the HTTP library

        # itself. We install a patch for a fake HTTP connection class.

        # Using __name__ to avoid having to enter the full module path.

        http_patcher = patch(n1kv_client.httplib2.__name__ + ".Http")

        FakeHttpConnection = http_patcher.start()

        # Now define the return values for a few functions that may be called

        # on any instance of the fake HTTP connection class.

        instance = FakeHttpConnection.return_value

        instance.getresponse.return_value = (FakeResponse(

                                             self.DEFAULT_RESP_CODE,

                                             self.DEFAULT_RESP_BODY,

                                             'application/xml'))

        instance.request.return_value = (instance.getresponse.return_value,

                                         self.DEFAULT_RESP_BODY)

        # Patch some internal functions in a few other parts of the system.

        # These help us move along, without having to mock up even more systems

        # in the background.

        # Return a dummy VSM IP address

        get_vsm_hosts_patcher = patch(n1kv_client.__name__ +

                                      ".Client._get_vsm_hosts")

        fake_get_vsm_hosts = get_vsm_hosts_patcher.start()

        fake_get_vsm_hosts.return_value = ["127.0.0.1"]

        # Return dummy user profiles

        get_cred_name_patcher = patch(cdb.__name__ + ".get_credential_name")

        fake_get_cred_name = get_cred_name_patcher.start()

        fake_get_cred_name.return_value = {"user_name": "admin",

                                           "password": "admin_password"}

        n1kv_neutron_plugin.N1kvNeutronPluginV2._setup_vsm = _fake_setup_vsm

        neutron_extensions.append_api_extensions_path(extensions.__path__)

        ext_mgr = NetworkProfileTestExtensionManager()

        # Save the original RESOURCE_ATTRIBUTE_MAP

        self.saved_attr_map = {}

        for resource, attrs in attributes.RESOURCE_ATTRIBUTE_MAP.items():

            self.saved_attr_map[resource] = attrs.copy()

        # Update the RESOURCE_ATTRIBUTE_MAP with n1kv specific extended attrs.

        attributes.RESOURCE_ATTRIBUTE_MAP["networks"].update(

            n1kv.EXTENDED_ATTRIBUTES_2_0["networks"])

        attributes.RESOURCE_ATTRIBUTE_MAP["ports"].update(

            n1kv.EXTENDED_ATTRIBUTES_2_0["ports"])

        self.addCleanup(self.restore_resource_attribute_map)

        self.addCleanup(db.clear_db)

        super(N1kvPluginTestCase, self).setUp(self._plugin_name,

                                              ext_mgr=ext_mgr)

        # Create some of the database entries that we require.

        self._make_test_profile()

        self._make_test_policy_profile()

**** CubicPower OpenStack Study ****

    def restore_resource_attribute_map(self):

        # Restore the original RESOURCE_ATTRIBUTE_MAP

        attributes.RESOURCE_ATTRIBUTE_MAP = self.saved_attr_map

**** CubicPower OpenStack Study ****

    def test_plugin(self):

        self._make_network('json',

                           'some_net',

                           True,

                           tenant_id=self.tenant_id,

                           set_context=True)

        req = self.new_list_request('networks', params="fields=tenant_id")

        req.environ['neutron.context'] = context.Context('', self.tenant_id)

        res = req.get_response(self.api)

        self.assertEqual(res.status_int, 200)

        body = self.deserialize('json', res)

        self.assertIn('tenant_id', body['networks'][0])

**** CubicPower OpenStack Study ****

class TestN1kvNetworkProfiles(N1kvPluginTestCase):

**** CubicPower OpenStack Study ****

    def _prepare_net_profile_data(self, segment_type):

        netp = {'network_profile': {'name': 'netp1',

                                    'segment_type': segment_type,

                                    'tenant_id': self.tenant_id}}

        if segment_type == 'vlan':

            netp['network_profile']['segment_range'] = '100-110'

            netp['network_profile']['physical_network'] = PHYS_NET

        elif segment_type == 'overlay':

            netp['network_profile']['segment_range'] = '10000-10010'

            netp['network_profile']['sub_type'] = 'enhanced' or 'native_vxlan'

            netp['network_profile']['multicast_ip_range'] = ("224.1.1.1-"

                                                             "224.1.1.10")

        return netp

**** CubicPower OpenStack Study ****

    def test_create_network_profile_vlan(self):

        data = self._prepare_net_profile_data('vlan')

        net_p_req = self.new_create_request('network_profiles', data)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 201)

**** CubicPower OpenStack Study ****

    def test_create_network_profile_overlay(self):

        data = self._prepare_net_profile_data('overlay')

        net_p_req = self.new_create_request('network_profiles', data)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 201)

**** CubicPower OpenStack Study ****

    def test_create_network_profile_overlay_unreasonable_seg_range(self):

        data = self._prepare_net_profile_data('overlay')

        data['network_profile']['segment_range'] = '10000-100000000001'

        net_p_req = self.new_create_request('network_profiles', data)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_update_network_profile_plugin(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        net_p_req = self.new_create_request('network_profiles', net_p_dict)

        net_p = self.deserialize(self.fmt,

                                 net_p_req.get_response(self.ext_api))

        data = {'network_profile': {'name': 'netp2'}}

        update_req = self.new_update_request('network_profiles',

                                             data,

                                             net_p['network_profile']['id'])

        update_res = update_req.get_response(self.ext_api)

        self.assertEqual(update_res.status_int, 200)

**** CubicPower OpenStack Study ****

    def test_update_network_profile_physical_network_fail(self):

        net_p = self._make_test_profile(name='netp1')

        data = {'network_profile': {'physical_network': PHYS_NET}}

        net_p_req = self.new_update_request('network_profiles',

                                            data,

                                            net_p['id'])

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_update_network_profile_segment_type_fail(self):

        net_p = self._make_test_profile(name='netp1')

        data = {'network_profile': {'segment_type': 'overlay'}}

        net_p_req = self.new_update_request('network_profiles',

                                            data,

                                            net_p['id'])

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_update_network_profile_sub_type_fail(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        net_p_req = self.new_create_request('network_profiles', net_p_dict)

        net_p = self.deserialize(self.fmt,

                                 net_p_req.get_response(self.ext_api))

        data = {'network_profile': {'sub_type': 'vlan'}}

        update_req = self.new_update_request('network_profiles',

                                             data,

                                             net_p['network_profile']['id'])

        update_res = update_req.get_response(self.ext_api)

        self.assertEqual(update_res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_overlay_network_profile_invalid_multicast_fail(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        data = {'network_profile': {'sub_type': 'native_vxlan',

                                    'multicast_ip_range': '1.1.1.1'}}

        net_p_req = self.new_create_request('network_profiles', data,

                                            net_p_dict)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_overlay_network_profile_no_multicast_fail(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        data = {'network_profile': {'sub_type': 'native_vxlan',

                                    'multicast_ip_range': ''}}

        net_p_req = self.new_create_request('network_profiles', data,

                                            net_p_dict)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_overlay_network_profile_wrong_split_multicast_fail(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        data = {'network_profile': {

                'sub_type': 'native_vxlan',

                'multicast_ip_range': '224.1.1.1.224.1.1.3'}}

        net_p_req = self.new_create_request('network_profiles', data,

                                            net_p_dict)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_overlay_network_profile_invalid_minip_multicast_fail(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        data = {'network_profile': {

                'sub_type': 'native_vxlan',

                'multicast_ip_range': '10.0.0.1-224.1.1.3'}}

        net_p_req = self.new_create_request('network_profiles', data,

                                            net_p_dict)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_overlay_network_profile_invalid_maxip_multicast_fail(self):

        net_p_dict = self._prepare_net_profile_data('overlay')

        data = {'network_profile': {

                'sub_type': 'native_vxlan',

                'multicast_ip_range': '224.1.1.1-20.0.0.1'}}

        net_p_req = self.new_create_request('network_profiles', data,

                                            net_p_dict)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_overlay_network_profile_correct_multicast_pass(self):

        data = self._prepare_net_profile_data('overlay')

        net_p_req = self.new_create_request('network_profiles', data)

        res = net_p_req.get_response(self.ext_api)

        self.assertEqual(res.status_int, 201)

**** CubicPower OpenStack Study ****

    def test_create_network_profile_populate_vlan_segment_pool(self):

        db_session = db.get_session()

        net_p_dict = self._prepare_net_profile_data('vlan')

        net_p_req = self.new_create_request('network_profiles', net_p_dict)

        self.deserialize(self.fmt,

                         net_p_req.get_response(self.ext_api))

        for vlan in range(VLAN_MIN, VLAN_MAX + 1):

            self.assertIsNotNone(n1kv_db_v2.get_vlan_allocation(db_session,

                                                                PHYS_NET,

                                                                vlan))

            self.assertFalse(n1kv_db_v2.get_vlan_allocation(db_session,

                                                            PHYS_NET,

                                                            vlan).allocated)

        self.assertRaises(c_exc.VlanIDNotFound,

                          n1kv_db_v2.get_vlan_allocation,

                          db_session,

                          PHYS_NET,

                          VLAN_MIN - 1)

        self.assertRaises(c_exc.VlanIDNotFound,

                          n1kv_db_v2.get_vlan_allocation,

                          db_session,

                          PHYS_NET,

                          VLAN_MAX + 1)

**** CubicPower OpenStack Study ****

    def test_delete_network_profile_deallocate_vlan_segment_pool(self):

        db_session = db.get_session()

        net_p_dict = self._prepare_net_profile_data('vlan')

        net_p_req = self.new_create_request('network_profiles', net_p_dict)

        net_p = self.deserialize(self.fmt,

                                 net_p_req.get_response(self.ext_api))

        self.assertIsNotNone(n1kv_db_v2.get_vlan_allocation(db_session,

                                                            PHYS_NET,

                                                            VLAN_MIN))

        self._delete('network_profiles', net_p['network_profile']['id'])

        for vlan in range(VLAN_MIN, VLAN_MAX + 1):

            self.assertRaises(c_exc.VlanIDNotFound,

                              n1kv_db_v2.get_vlan_allocation,

                              db_session,

                              PHYS_NET,

                              vlan)

**** CubicPower OpenStack Study ****

class TestN1kvBasicGet(test_plugin.TestBasicGet, N1kvPluginTestCase):

pass

**** CubicPower OpenStack Study ****

class TestN1kvHTTPResponse(test_plugin.TestV2HTTPResponse, N1kvPluginTestCase):

pass

**** CubicPower OpenStack Study ****

class TestN1kvPorts(test_plugin.TestPortsV2, N1kvPluginTestCase, test_bindings.PortBindingsTestCase):

VIF_TYPE = portbindings.VIF_TYPE_OVS

HAS_PORT_FILTER = False

**** CubicPower OpenStack Study ****

    def test_create_port_with_default_n1kv_policy_profile_id(self):

        """Test port create without passing policy profile id."""

        with self.port() as port:

            db_session = db.get_session()

            pp = n1kv_db_v2.get_policy_profile(

                db_session, port['port'][n1kv.PROFILE_ID])

            self.assertEqual(pp['name'], 'service_profile')

**** CubicPower OpenStack Study ****

    def test_create_port_with_n1kv_policy_profile_id(self):

        """Test port create with policy profile id."""

        profile_obj = self._make_test_policy_profile(name='test_profile')

        with self.network() as network:

            data = {'port': {n1kv.PROFILE_ID: profile_obj.id,

                             'tenant_id': self.tenant_id,

                             'network_id': network['network']['id']}}

            port_req = self.new_create_request('ports', data)

            port = self.deserialize(self.fmt,

                                    port_req.get_response(self.api))

            self.assertEqual(port['port'][n1kv.PROFILE_ID],

                             profile_obj.id)

            self._delete('ports', port['port']['id'])

**** CubicPower OpenStack Study ****

    def test_update_port_with_n1kv_policy_profile_id(self):

        """Test port update failure while updating policy profile id."""

        with self.port() as port:

            data = {'port': {n1kv.PROFILE_ID: 'some-profile-uuid'}}

            port_req = self.new_update_request('ports',

                                               data,

                                               port['port']['id'])

            res = port_req.get_response(self.api)

            # Port update should fail to update policy profile id.

            self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

    def test_create_first_port_invalid_parameters_fail(self):

        """Test parameters for first port create sent to the VSM."""

        profile_obj = self._make_test_policy_profile(name='test_profile')

        with self.network() as network:

            client_patch = patch(n1kv_client.__name__ + ".Client",

                                 new=fake_client.TestClientInvalidRequest)

            client_patch.start()

            data = {'port': {n1kv.PROFILE_ID: profile_obj.id,

                             'tenant_id': self.tenant_id,

                             'network_id': network['network']['id'],

                             }}

            port_req = self.new_create_request('ports', data)

            res = port_req.get_response(self.api)

            self.assertEqual(res.status_int, 500)

            client_patch.stop()

**** CubicPower OpenStack Study ****

    def test_create_next_port_invalid_parameters_fail(self):

        """Test parameters for subsequent port create sent to the VSM."""

        with self.port() as port:

            client_patch = patch(n1kv_client.__name__ + ".Client",

                                 new=fake_client.TestClientInvalidRequest)

            client_patch.start()

            data = {'port': {n1kv.PROFILE_ID: port['port']['n1kv:profile_id'],

                             'tenant_id': port['port']['tenant_id'],

                             'network_id': port['port']['network_id']}}

            port_req = self.new_create_request('ports', data)

            res = port_req.get_response(self.api)

            self.assertEqual(res.status_int, 500)

            client_patch.stop()

**** CubicPower OpenStack Study ****

class TestN1kvNetworks(test_plugin.TestNetworksV2, N1kvPluginTestCase):

**** CubicPower OpenStack Study ****

    def _prepare_net_data(self, net_profile_id):

        return {'network': {'name': 'net1',

                            n1kv.PROFILE_ID: net_profile_id,

                            'tenant_id': self.tenant_id}}

**** CubicPower OpenStack Study ****

    def test_create_network_with_default_n1kv_network_profile_id(self):

        """Test network create without passing network profile id."""

        with self.network() as network:

            db_session = db.get_session()

            np = n1kv_db_v2.get_network_profile(

                db_session, network['network'][n1kv.PROFILE_ID])

            self.assertEqual(np['name'], 'default_network_profile')

**** CubicPower OpenStack Study ****

    def test_create_network_with_n1kv_network_profile_id(self):

        """Test network create with network profile id."""

        profile_obj = self._make_test_profile(name='test_profile')

        data = self._prepare_net_data(profile_obj.id)

        network_req = self.new_create_request('networks', data)

        network = self.deserialize(self.fmt,

                                   network_req.get_response(self.api))

        self.assertEqual(network['network'][n1kv.PROFILE_ID],

                         profile_obj.id)

**** CubicPower OpenStack Study ****

    def test_update_network_with_n1kv_network_profile_id(self):

        """Test network update failure while updating network profile id."""

        with self.network() as network:

            data = {'network': {n1kv.PROFILE_ID: 'some-profile-uuid'}}

            network_req = self.new_update_request('networks',

                                                  data,

                                                  network['network']['id'])

            res = network_req.get_response(self.api)

            # Network update should fail to update network profile id.

            self.assertEqual(res.status_int, 400)

**** CubicPower OpenStack Study ****

class TestN1kvSubnets(test_plugin.TestSubnetsV2, N1kvPluginTestCase):

pass