
The well known service type constants are in neutron_lib.plugins.constants, but for legacy reasons a few still exist and are referenced from neutron_lib.constants that we'd like to remove. This patch switches references over to neutron_lib's plugin constants. Change-Id: I1861448cec303725b30cef8f42029f467f9e03a3
73 lines
2.7 KiB
Python
73 lines
2.7 KiB
Python
# Copyright (c) 2016 Midokura SARL
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
import mock
|
|
from neutron_lib import context
|
|
from neutron_lib.plugins import constants
|
|
from neutron_lib.plugins import directory
|
|
|
|
from neutron.db import common_db_mixin
|
|
from neutron.db import extraroute_db
|
|
from neutron.tests.unit import testlib_api
|
|
|
|
|
|
class _Plugin(common_db_mixin.CommonDbMixin,
|
|
extraroute_db.ExtraRoute_dbonly_mixin):
|
|
pass
|
|
|
|
|
|
class TestExtraRouteDb(testlib_api.SqlTestCase):
|
|
def setUp(self):
|
|
super(TestExtraRouteDb, self).setUp()
|
|
self._plugin = _Plugin()
|
|
directory.add_plugin(constants.CORE, self._plugin)
|
|
|
|
def test_update(self):
|
|
ctx = context.get_admin_context()
|
|
create_request = {
|
|
'router': {
|
|
'name': 'my router',
|
|
'tenant_id': 'my tenant',
|
|
'admin_state_up': True,
|
|
}
|
|
}
|
|
router = self._plugin.create_router(ctx, create_request)
|
|
self.assertItemsEqual(router['routes'], [])
|
|
router_id = router['id']
|
|
routes = [
|
|
{'destination': '10.0.0.0/24', 'nexthop': '1.1.1.4'},
|
|
{'destination': '10.1.0.0/24', 'nexthop': '1.1.1.3'},
|
|
{'destination': '10.2.0.0/24', 'nexthop': '1.1.1.2'},
|
|
]
|
|
self._test_update_routes(ctx, router_id, router, routes)
|
|
routes = [
|
|
{'destination': '10.0.0.0/24', 'nexthop': '1.1.1.4'},
|
|
{'destination': '10.2.0.0/24', 'nexthop': '1.1.1.2'},
|
|
{'destination': '10.3.0.0/24', 'nexthop': '1.1.1.1'},
|
|
]
|
|
self._test_update_routes(ctx, router_id, router, routes)
|
|
|
|
def _test_update_routes(self, ctx, router_id, router, routes):
|
|
router['routes'] = routes
|
|
update_request = {
|
|
'router': router,
|
|
}
|
|
with mock.patch.object(self._plugin, '_validate_routes'):
|
|
updated_router = self._plugin.update_router(ctx, router_id,
|
|
update_request)
|
|
self.assertItemsEqual(updated_router['routes'], routes)
|
|
got_router = self._plugin.get_router(ctx, router_id)
|
|
self.assertItemsEqual(got_router['routes'], routes)
|