blob: d5d2e041df6c24d0dd8128ed6093eeb6e4ae5d20 [file] [log] [blame]
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001# Copyright 2013 OpenStack Foundation
2# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
16import netaddr
Chandan Kumarc125fd12017-11-15 19:41:01 +053017from tempest.common import utils as tutils
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000018from tempest.lib.common.utils import data_utils
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000019from tempest.lib import decorators
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000020
Chandan Kumar667d3d32017-09-22 12:24:06 +053021from neutron_tempest_plugin.api import base
22from neutron_tempest_plugin.api import base_routers
23from neutron_tempest_plugin.common import utils
24from neutron_tempest_plugin import config
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000025
26CONF = config.CONF
27
28
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +020029class RoutersTest(base_routers.BaseRouterTest):
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000030
Jakub Libosvar1982aa12017-05-30 11:15:33 +000031 required_extensions = ['router']
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000032
33 @classmethod
34 def resource_setup(cls):
35 super(RoutersTest, cls).resource_setup()
36 cls.tenant_cidr = (
37 config.safe_get_config_value('network', 'project_network_cidr')
38 if cls._ip_version == 4 else
39 config.safe_get_config_value('network', 'project_network_v6_cidr'))
40
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000041 @decorators.idempotent_id('c72c1c0c-2193-4aca-eeee-b1442640eeee')
Chandan Kumarc125fd12017-11-15 19:41:01 +053042 @tutils.requires_ext(extension="standard-attr-description",
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000043 service="network")
44 def test_create_update_router_description(self):
45 body = self.create_router(description='d1', router_name='test')
46 self.assertEqual('d1', body['description'])
47 body = self.client.show_router(body['id'])['router']
48 self.assertEqual('d1', body['description'])
49 body = self.client.update_router(body['id'], description='d2')
50 self.assertEqual('d2', body['router']['description'])
51 body = self.client.show_router(body['router']['id'])['router']
52 self.assertEqual('d2', body['description'])
53
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000054 @decorators.idempotent_id('847257cc-6afd-4154-b8fb-af49f5670ce8')
Chandan Kumarc125fd12017-11-15 19:41:01 +053055 @tutils.requires_ext(extension='ext-gw-mode', service='network')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000056 def test_create_router_with_default_snat_value(self):
57 # Create a router with default snat rule
58 name = data_utils.rand_name('router')
59 router = self._create_router(
60 name, external_network_id=CONF.network.public_network_id)
61 self._verify_router_gateway(
62 router['id'], {'network_id': CONF.network.public_network_id,
63 'enable_snat': True})
64
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000065 @decorators.idempotent_id('ea74068d-09e9-4fd7-8995-9b6a1ace920f')
Chandan Kumarc125fd12017-11-15 19:41:01 +053066 @tutils.requires_ext(extension='ext-gw-mode', service='network')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000067 def test_create_router_with_snat_explicit(self):
68 name = data_utils.rand_name('snat-router')
69 # Create a router enabling snat attributes
70 enable_snat_states = [False, True]
71 for enable_snat in enable_snat_states:
72 external_gateway_info = {
73 'network_id': CONF.network.public_network_id,
74 'enable_snat': enable_snat}
75 create_body = self.admin_client.create_router(
76 name, external_gateway_info=external_gateway_info)
77 self.addCleanup(self.admin_client.delete_router,
78 create_body['router']['id'])
79 # Verify snat attributes after router creation
80 self._verify_router_gateway(create_body['router']['id'],
81 exp_ext_gw_info=external_gateway_info)
82
83 def _verify_router_gateway(self, router_id, exp_ext_gw_info=None):
84 show_body = self.admin_client.show_router(router_id)
85 actual_ext_gw_info = show_body['router']['external_gateway_info']
86 if exp_ext_gw_info is None:
87 self.assertIsNone(actual_ext_gw_info)
88 return
89 # Verify only keys passed in exp_ext_gw_info
fpxieaa3bace2017-04-07 17:12:15 +080090 for k, v in exp_ext_gw_info.items():
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000091 self.assertEqual(v, actual_ext_gw_info[k])
92
93 def _verify_gateway_port(self, router_id):
94 list_body = self.admin_client.list_ports(
95 network_id=CONF.network.public_network_id,
96 device_id=router_id)
97 self.assertEqual(len(list_body['ports']), 1)
98 gw_port = list_body['ports'][0]
99 fixed_ips = gw_port['fixed_ips']
100 self.assertGreaterEqual(len(fixed_ips), 1)
101 public_net_body = self.admin_client.show_network(
102 CONF.network.public_network_id)
Chandan Kumarc125fd12017-11-15 19:41:01 +0530103 public_subnet_ids = public_net_body['network']['subnets']
104 for fixed_ip in fixed_ips:
105 self.assertIn(fixed_ip['subnet_id'],
106 public_subnet_ids)
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000107
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000108 @decorators.idempotent_id('b386c111-3b21-466d-880c-5e72b01e1a33')
Chandan Kumarc125fd12017-11-15 19:41:01 +0530109 @tutils.requires_ext(extension='ext-gw-mode', service='network')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000110 def test_update_router_set_gateway_with_snat_explicit(self):
Chandan Kumarc125fd12017-11-15 19:41:01 +0530111 router = self._create_router(data_utils.rand_name('router'))
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000112 self.admin_client.update_router_with_snat_gw_info(
113 router['id'],
114 external_gateway_info={
115 'network_id': CONF.network.public_network_id,
116 'enable_snat': True})
117 self._verify_router_gateway(
118 router['id'],
119 {'network_id': CONF.network.public_network_id,
120 'enable_snat': True})
121 self._verify_gateway_port(router['id'])
122
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000123 @decorators.idempotent_id('96536bc7-8262-4fb2-9967-5c46940fa279')
Chandan Kumarc125fd12017-11-15 19:41:01 +0530124 @tutils.requires_ext(extension='ext-gw-mode', service='network')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000125 def test_update_router_set_gateway_without_snat(self):
Chandan Kumarc125fd12017-11-15 19:41:01 +0530126 router = self._create_router(data_utils.rand_name('router'))
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000127 self.admin_client.update_router_with_snat_gw_info(
128 router['id'],
129 external_gateway_info={
130 'network_id': CONF.network.public_network_id,
131 'enable_snat': False})
132 self._verify_router_gateway(
133 router['id'],
134 {'network_id': CONF.network.public_network_id,
135 'enable_snat': False})
136 self._verify_gateway_port(router['id'])
137
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000138 @decorators.idempotent_id('f2faf994-97f4-410b-a831-9bc977b64374')
Chandan Kumarc125fd12017-11-15 19:41:01 +0530139 @tutils.requires_ext(extension='ext-gw-mode', service='network')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000140 def test_update_router_reset_gateway_without_snat(self):
141 router = self._create_router(
Chandan Kumarc125fd12017-11-15 19:41:01 +0530142 data_utils.rand_name('router'),
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000143 external_network_id=CONF.network.public_network_id)
144 self.admin_client.update_router_with_snat_gw_info(
145 router['id'],
146 external_gateway_info={
147 'network_id': CONF.network.public_network_id,
148 'enable_snat': False})
149 self._verify_router_gateway(
150 router['id'],
151 {'network_id': CONF.network.public_network_id,
152 'enable_snat': False})
153 self._verify_gateway_port(router['id'])
154
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000155 @decorators.idempotent_id('db3093b1-93b6-4893-be83-c4716c251b3e')
Kevin Bentonc66aa802016-07-23 22:36:37 -0700156 def test_router_interface_status(self):
157 network = self.create_network()
158 subnet = self.create_subnet(network)
159 # Add router interface with subnet id
Chandan Kumarc125fd12017-11-15 19:41:01 +0530160 router = self._create_router(data_utils.rand_name('router'), True)
Kevin Bentonc66aa802016-07-23 22:36:37 -0700161 intf = self.create_router_interface(router['id'], subnet['id'])
Brian Haley33ef4602018-04-26 14:37:49 -0400162
163 def _status_active():
164 return self.client.show_port(
165 intf['port_id'])['port']['status'] == 'ACTIVE'
166
167 utils.wait_until_true(_status_active, exception=AssertionError)
Kevin Bentonc66aa802016-07-23 22:36:37 -0700168
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000169 @decorators.idempotent_id('c86ac3a8-50bd-4b00-a6b8-62af84a0765c')
Chandan Kumarc125fd12017-11-15 19:41:01 +0530170 @tutils.requires_ext(extension='extraroute', service='network')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000171 def test_update_extra_route(self):
172 self.network = self.create_network()
173 self.name = self.network['name']
174 self.subnet = self.create_subnet(self.network)
175 # Add router interface with subnet id
176 self.router = self._create_router(
177 data_utils.rand_name('router-'), True)
178 self.create_router_interface(self.router['id'], self.subnet['id'])
179 self.addCleanup(
180 self._delete_extra_routes,
181 self.router['id'])
182 # Update router extra route, second ip of the range is
183 # used as next hop
184 cidr = netaddr.IPNetwork(self.subnet['cidr'])
185 next_hop = str(cidr[2])
186 destination = str(self.subnet['cidr'])
187 extra_route = self.client.update_extra_routes(self.router['id'],
188 next_hop, destination)
189 self.assertEqual(1, len(extra_route['router']['routes']))
190 self.assertEqual(destination,
191 extra_route['router']['routes'][0]['destination'])
192 self.assertEqual(next_hop,
193 extra_route['router']['routes'][0]['nexthop'])
194 show_body = self.client.show_router(self.router['id'])
195 self.assertEqual(destination,
196 show_body['router']['routes'][0]['destination'])
197 self.assertEqual(next_hop,
198 show_body['router']['routes'][0]['nexthop'])
199
200 def _delete_extra_routes(self, router_id):
201 self.client.delete_extra_routes(router_id)
202
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000203 @decorators.idempotent_id('01f185d1-d1a6-4cf9-abf7-e0e1384c169c')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000204 def test_network_attached_with_two_routers(self):
205 network = self.create_network(data_utils.rand_name('network1'))
206 self.create_subnet(network)
207 port1 = self.create_port(network)
208 port2 = self.create_port(network)
209 router1 = self._create_router(data_utils.rand_name('router1'))
210 router2 = self._create_router(data_utils.rand_name('router2'))
211 self.client.add_router_interface_with_port_id(
212 router1['id'], port1['id'])
213 self.client.add_router_interface_with_port_id(
214 router2['id'], port2['id'])
215 self.addCleanup(self.client.remove_router_interface_with_port_id,
216 router1['id'], port1['id'])
217 self.addCleanup(self.client.remove_router_interface_with_port_id,
218 router2['id'], port2['id'])
219 body = self.client.show_port(port1['id'])
220 port_show1 = body['port']
221 body = self.client.show_port(port2['id'])
222 port_show2 = body['port']
223 self.assertEqual(port_show1['network_id'], network['id'])
224 self.assertEqual(port_show2['network_id'], network['id'])
225 self.assertEqual(port_show1['device_id'], router1['id'])
226 self.assertEqual(port_show2['device_id'], router2['id'])
227
228
229class RoutersIpV6Test(RoutersTest):
230 _ip_version = 6
231
232
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200233class DvrRoutersTest(base_routers.BaseRouterTest):
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000234
Jakub Libosvar1982aa12017-05-30 11:15:33 +0000235 required_extensions = ['dvr']
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000236
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000237 @decorators.idempotent_id('141297aa-3424-455d-aa8d-f2d95731e00a')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000238 def test_create_distributed_router(self):
239 name = data_utils.rand_name('router')
240 create_body = self.admin_client.create_router(
241 name, distributed=True)
242 self.addCleanup(self._delete_router,
243 create_body['router']['id'],
244 self.admin_client)
245 self.assertTrue(create_body['router']['distributed'])
246
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000247 @decorators.idempotent_id('644d7a4a-01a1-4b68-bb8d-0c0042cb1729')
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000248 def test_convert_centralized_router(self):
Brian Haley198a2d92017-06-16 16:23:44 -0400249 router_args = {'tenant_id': self.client.tenant_id,
250 'distributed': False, 'ha': False}
251 router = self.admin_client.create_router(
252 data_utils.rand_name('router'), admin_state_up=False,
253 **router_args)['router']
254 self.addCleanup(self.admin_client.delete_router,
255 router['id'])
256 self.assertFalse(router['distributed'])
257 self.assertFalse(router['ha'])
Daniel Mellado3c0aeab2016-01-29 11:30:25 +0000258 update_body = self.admin_client.update_router(router['id'],
259 distributed=True)
260 self.assertTrue(update_body['router']['distributed'])
261 show_body = self.admin_client.show_router(router['id'])
262 self.assertTrue(show_body['router']['distributed'])
263 show_body = self.client.show_router(router['id'])
264 self.assertNotIn('distributed', show_body['router'])
Brian Haley198a2d92017-06-16 16:23:44 -0400265 self.assertNotIn('ha', show_body['router'])
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200266
267
Dongcan Ye6d8ec4a2017-05-03 15:07:36 +0800268class HaRoutersTest(base_routers.BaseRouterTest):
269
Jakub Libosvar1982aa12017-05-30 11:15:33 +0000270 required_extensions = ['l3-ha']
Dongcan Ye6d8ec4a2017-05-03 15:07:36 +0800271
272 @decorators.idempotent_id('77db8eae-3aa3-4e61-bf2a-e739ce042e53')
273 def test_convert_legacy_router(self):
274 router = self._create_router(data_utils.rand_name('router'))
275 self.assertNotIn('ha', router)
276 update_body = self.admin_client.update_router(router['id'],
277 ha=True)
278 self.assertTrue(update_body['router']['ha'])
279 show_body = self.admin_client.show_router(router['id'])
280 self.assertTrue(show_body['router']['ha'])
281 show_body = self.client.show_router(router['id'])
282 self.assertNotIn('ha', show_body['router'])
283
284
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200285class RoutersSearchCriteriaTest(base.BaseSearchCriteriaTest):
286
Jakub Libosvar1982aa12017-05-30 11:15:33 +0000287 required_extensions = ['router']
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200288 resource = 'router'
289
290 @classmethod
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200291 def resource_setup(cls):
292 super(RoutersSearchCriteriaTest, cls).resource_setup()
293 for name in cls.resource_names:
294 cls.create_router(router_name=name)
295
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000296 @decorators.idempotent_id('03a69efb-90a7-435b-bb5c-3add3612085a')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200297 def test_list_sorts_asc(self):
298 self._test_list_sorts_asc()
299
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000300 @decorators.idempotent_id('95913d30-ff41-4b17-9f44-5258c651e78c')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200301 def test_list_sorts_desc(self):
302 self._test_list_sorts_desc()
303
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000304 @decorators.idempotent_id('7f7d40b1-e165-4817-8dc5-02f8e2f0dff3')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200305 def test_list_pagination(self):
306 self._test_list_pagination()
307
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000308 @decorators.idempotent_id('a5b83e83-3d98-45bb-a2c7-0ee179ffd42c')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200309 def test_list_pagination_with_marker(self):
310 self._test_list_pagination_with_marker()
311
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000312 @decorators.idempotent_id('40804af8-c25d-45f8-b8a8-b4c70345215d')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200313 def test_list_pagination_with_href_links(self):
314 self._test_list_pagination_with_href_links()
315
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000316 @decorators.idempotent_id('77b9676c-d3cb-43af-a0e8-a5b8c6099e70')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200317 def test_list_pagination_page_reverse_asc(self):
318 self._test_list_pagination_page_reverse_asc()
319
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000320 @decorators.idempotent_id('3133a2c5-1bb9-4fc7-833e-cf9a1d160255')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200321 def test_list_pagination_page_reverse_desc(self):
322 self._test_list_pagination_page_reverse_desc()
323
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000324 @decorators.idempotent_id('8252e2f0-b3da-4738-8e25-f6f8d878a2da')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200325 def test_list_pagination_page_reverse_with_href_links(self):
326 self._test_list_pagination_page_reverse_with_href_links()
327
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000328 @decorators.idempotent_id('fb102124-20f8-4cb3-8c81-f16f5e41d192')
Ihar Hrachyshka44d1d3f2016-06-14 11:51:37 +0200329 def test_list_no_pagination_limit_0(self):
330 self._test_list_no_pagination_limit_0()