From: armando-migliaccio Date: Wed, 23 Oct 2013 18:20:01 +0000 (-0700) Subject: fix nvp version validation for distributed router creation X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=9eb06332f0292ed4db7b322e483167cb40740d6e;p=openstack-build%2Fneutron-build.git fix nvp version validation for distributed router creation Fix typo on major version. This was not caught during unit tests so adds a few to ensure this does not regress. Fix bug #1243862 Change-Id: Ie136aaa504939d8ac77dda07e3f955aed8c233f9 --- diff --git a/neutron/plugins/nicira/nvplib.py b/neutron/plugins/nicira/nvplib.py index 37802f1d5..181d35fb2 100644 --- a/neutron/plugins/nicira/nvplib.py +++ b/neutron/plugins/nicira/nvplib.py @@ -383,7 +383,7 @@ def create_explicit_routing_lrouter(cluster, tenant_id, def create_lrouter(cluster, *args, **kwargs): if kwargs.get('distributed', None): v = cluster.api_client.get_nvp_version() - if (v.major < 3) or (v.major >= 3 and v.minor < 1): + if (v.major < 3) or (v.major == 3 and v.minor < 1): raise nvp_exc.NvpInvalidVersion(version=v) return v diff --git a/neutron/tests/unit/nicira/fake_nvpapiclient.py b/neutron/tests/unit/nicira/fake_nvpapiclient.py index b1eb31bfd..577be6c51 100644 --- a/neutron/tests/unit/nicira/fake_nvpapiclient.py +++ b/neutron/tests/unit/nicira/fake_nvpapiclient.py @@ -175,8 +175,11 @@ class FakeClient: fake_lrouter['tenant_id'] = self._get_tag(fake_lrouter, 'os_tid') default_nexthop = fake_lrouter['routing_config'].get( 'default_route_next_hop') - fake_lrouter['default_next_hop'] = default_nexthop.get( - 'gateway_ip_address', '0.0.0.0') + if default_nexthop: + fake_lrouter['default_next_hop'] = default_nexthop.get( + 'gateway_ip_address', '0.0.0.0') + else: + fake_lrouter['default_next_hop'] = '0.0.0.0' # NOTE(salv-orlando): We won't make the Fake NVP API client # aware of NVP version. The long term plan is to replace it # with behavioral mocking of NVP API requests diff --git a/neutron/tests/unit/nicira/test_nicira_plugin.py b/neutron/tests/unit/nicira/test_nicira_plugin.py index dbbbf8f1d..5bb369b43 100644 --- a/neutron/tests/unit/nicira/test_nicira_plugin.py +++ b/neutron/tests/unit/nicira/test_nicira_plugin.py @@ -593,9 +593,15 @@ class TestNiciraL3NatTestCase(NiciraL3NatTest, if res.status_int == 201: self._delete('routers', router['router']['id']) - def test_router_create_distributed(self): + def test_router_create_distributed_with_3_1(self): self._test_router_create_with_distributed(True, True) + def test_router_create_distributed_with_new_nvp_versions(self): + with mock.patch.object(nvplib, 'create_explicit_route_lrouter'): + self._test_router_create_with_distributed(True, True, '3.2') + self._test_router_create_with_distributed(True, True, '4.0') + self._test_router_create_with_distributed(True, True, '4.1') + def test_router_create_not_distributed(self): self._test_router_create_with_distributed(False, False)