blob: 29ccb015ddfe3a1272eb12118f828b526608f5c8 [file] [log] [blame]
Chandan Kumarc125fd12017-11-15 19:41:01 +05301# Copyright 2016 Red Hat, Inc.
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.
Chandan Kumarc125fd12017-11-15 19:41:01 +053015
16from neutron_lib.api.definitions import provider_net
Roman Safronov561cf622019-03-04 18:56:49 +020017from oslo_log import log
Yariv Rachmani94970882018-03-04 11:35:17 +020018from oslo_serialization import jsonutils
Chandan Kumarc125fd12017-11-15 19:41:01 +053019from tempest.common import utils
20from tempest.common import waiters
Dongcan Yeee300042018-01-10 05:38:35 +000021from tempest.lib.common.utils import data_utils
Chandan Kumarc125fd12017-11-15 19:41:01 +053022from tempest.lib import decorators
Slawek Kaplonski1cd4fb42018-08-10 15:03:32 +020023import testtools
Chandan Kumarc125fd12017-11-15 19:41:01 +053024
25from neutron_tempest_plugin.common import ssh
26from neutron_tempest_plugin import config
27from neutron_tempest_plugin.scenario import base
28from neutron_tempest_plugin.scenario import constants
29
30CONF = config.CONF
Roman Safronov561cf622019-03-04 18:56:49 +020031LOG = log.getLogger(__name__)
Chandan Kumarc125fd12017-11-15 19:41:01 +053032
33
34class NetworkMtuBaseTest(base.BaseTempestTestCase):
Chandan Kumarc125fd12017-11-15 19:41:01 +053035
36 @classmethod
Chandan Kumarc125fd12017-11-15 19:41:01 +053037 def resource_setup(cls):
38 super(NetworkMtuBaseTest, cls).resource_setup()
39 # setup basic topology for servers we can log into it
40 cls.router = cls.create_router_by_client()
41 cls.keypair = cls.create_keypair()
42 cls.secgroup = cls.os_primary.network_client.create_security_group(
43 name='secgroup_mtu')
44 cls.security_groups.append(cls.secgroup['security_group'])
45 cls.create_loginable_secgroup_rule(
46 secgroup_id=cls.secgroup['security_group']['id'])
47 cls.create_pingable_secgroup_rule(
48 secgroup_id=cls.secgroup['security_group']['id'])
Yariv Rachmanifa1081a2018-11-21 12:46:57 +020049 if CONF.neutron_plugin_options.default_image_is_advanced:
50 cls.use_advanced_image = False
51 cls.username = CONF.validation.image_ssh_user
52 else:
53 cls.use_advanced_image = True
54 cls.username = CONF.neutron_plugin_options.advanced_image_ssh_user
Chandan Kumarc125fd12017-11-15 19:41:01 +053055
Dongcan Yeee300042018-01-10 05:38:35 +000056 def create_pingable_vm(self, net, keypair, secgroup):
Yariv Rachmanifa1081a2018-11-21 12:46:57 +020057 if self.use_advanced_image:
58 flavor_ref = CONF.neutron_plugin_options.advanced_image_flavor_ref
59 image_ref = CONF.neutron_plugin_options.advanced_image_ref
60 else:
61 flavor_ref = CONF.compute.flavor_ref
62 image_ref = CONF.compute.image_ref
63
Dongcan Yeee300042018-01-10 05:38:35 +000064 server = self.create_server(
Yariv Rachmanifa1081a2018-11-21 12:46:57 +020065 flavor_ref=flavor_ref,
66 image_ref=image_ref,
Dongcan Yeee300042018-01-10 05:38:35 +000067 key_name=keypair['name'],
68 networks=[{'uuid': net['id']}],
69 security_groups=[{'name': secgroup[
70 'security_group']['name']}])
71 waiters.wait_for_server_status(
72 self.os_primary.servers_client, server['server']['id'],
73 constants.SERVER_STATUS_ACTIVE)
74 port = self.client.list_ports(
75 network_id=net['id'], device_id=server['server']['id'])['ports'][0]
Federico Ressi3dfa94c2018-07-06 09:46:39 +020076 fip = self.create_floatingip(port=port)
Dongcan Yeee300042018-01-10 05:38:35 +000077 return server, fip
78
Yariv Rachmani94970882018-03-04 11:35:17 +020079 def _get_network_params(self):
80 return jsonutils.loads(CONF.neutron_plugin_options.test_mtu_networks)
81
Dongcan Yeee300042018-01-10 05:38:35 +000082
83class NetworkMtuTest(NetworkMtuBaseTest):
84 credentials = ['primary', 'admin']
85 servers = []
86 networks = []
87
88 @classmethod
89 def skip_checks(cls):
90 super(NetworkMtuTest, cls).skip_checks()
91 if ("vxlan" not in
Brian Haley33ef4602018-04-26 14:37:49 -040092 config.CONF.neutron_plugin_options.available_type_drivers or
93 "gre" not in
Dongcan Yeee300042018-01-10 05:38:35 +000094 config.CONF.neutron_plugin_options.available_type_drivers):
95 raise cls.skipException("GRE or VXLAN type_driver is not enabled")
96
97 @classmethod
98 @utils.requires_ext(extension=provider_net.ALIAS, service="network")
99 def resource_setup(cls):
100 super(NetworkMtuTest, cls).resource_setup()
101
Chandan Kumarc125fd12017-11-15 19:41:01 +0530102 def _create_setup(self):
103 self.admin_client = self.os_admin.network_client
Takashi Kajinamida451772023-03-22 00:19:39 +0900104 net_kwargs = {'tenant_id': self.client.project_id}
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200105 for net_type in ['vxlan', 'gre']:
Chandan Kumarc125fd12017-11-15 19:41:01 +0530106 net_kwargs['name'] = '-'.join([net_type, 'net'])
107 net_kwargs['provider:network_type'] = net_type
108 network = self.admin_client.create_network(**net_kwargs)[
109 'network']
110 self.networks.append(network)
111 self.addCleanup(self.admin_client.delete_network, network['id'])
Federico Ressi0ddc93b2018-04-09 12:01:48 +0200112 subnet = self.create_subnet(network)
Chandan Kumarc125fd12017-11-15 19:41:01 +0530113 self.create_router_interface(self.router['id'], subnet['id'])
114 self.addCleanup(self.client.remove_router_interface_with_subnet_id,
115 self.router['id'], subnet['id'])
116 # check that MTUs are different for 2 networks
117 self.assertNotEqual(self.networks[0]['mtu'], self.networks[1]['mtu'])
118 self.networks.sort(key=lambda net: net['mtu'])
Dongcan Yeee300042018-01-10 05:38:35 +0000119 server1, fip1 = self.create_pingable_vm(self.networks[0],
Yariv Rachmani94970882018-03-04 11:35:17 +0200120 self.keypair, self.secgroup)
Chandan Kumarc125fd12017-11-15 19:41:01 +0530121 server_ssh_client1 = ssh.Client(
122 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200123 self.username, pkey=self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000124 server2, fip2 = self.create_pingable_vm(self.networks[1],
Yariv Rachmani94970882018-03-04 11:35:17 +0200125 self.keypair, self.secgroup)
Chandan Kumarc125fd12017-11-15 19:41:01 +0530126 server_ssh_client2 = ssh.Client(
127 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200128 self.username, pkey=self.keypair['private_key'])
Chandan Kumarc125fd12017-11-15 19:41:01 +0530129 for fip in (fip1, fip2):
Slawek Kaplonskida17f002018-10-11 18:35:23 +0200130 self.check_connectivity(
131 fip['floating_ip_address'],
Slawek Kaplonskie58219b2019-12-09 12:10:55 +0100132 self.username, self.keypair['private_key'],
133 servers=[server1, server2])
Chandan Kumarc125fd12017-11-15 19:41:01 +0530134 return server_ssh_client1, fip1, server_ssh_client2, fip2
135
Slawek Kaplonski1cd4fb42018-08-10 15:03:32 +0200136 @testtools.skipUnless(
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200137 (CONF.neutron_plugin_options.advanced_image_ref or
138 CONF.neutron_plugin_options.default_image_is_advanced),
139 "Advanced image is required to run this test.")
Chandan Kumarc125fd12017-11-15 19:41:01 +0530140 @decorators.idempotent_id('3d73ec1a-2ec6-45a9-b0f8-04a273d9d344')
141 def test_connectivity_min_max_mtu(self):
142 server_ssh_client, _, _, fip2 = self._create_setup()
143 # ping with min mtu of 2 networks succeeds even when
144 # fragmentation is disabled
145 self.check_remote_connectivity(
146 server_ssh_client, fip2['fixed_ip_address'],
147 mtu=self.networks[0]['mtu'], fragmentation=False)
148
149 # ping with the size above min mtu of 2 networks
150 # fails when fragmentation is disabled
151 self.check_remote_connectivity(
152 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
153 mtu=self.networks[0]['mtu'] + 1, fragmentation=False)
154
155 # ping with max mtu of 2 networks succeeds when
156 # fragmentation is enabled
157 self.check_remote_connectivity(
158 server_ssh_client, fip2['fixed_ip_address'],
159 mtu=self.networks[1]['mtu'])
160
161 # ping with max mtu of 2 networks fails when fragmentation is disabled
162 self.check_remote_connectivity(
163 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
164 mtu=self.networks[1]['mtu'], fragmentation=False)
Dongcan Yeee300042018-01-10 05:38:35 +0000165
166
167class NetworkWritableMtuTest(NetworkMtuBaseTest):
168 credentials = ['primary', 'admin']
169 servers = []
170 networks = []
171
172 @classmethod
Dongcan Yeee300042018-01-10 05:38:35 +0000173 @utils.requires_ext(extension="net-mtu-writable", service="network")
174 def resource_setup(cls):
175 super(NetworkWritableMtuTest, cls).resource_setup()
Roman Safronov9be93752024-09-17 14:57:48 +0300176 if cls.is_driver_ovn:
177 raise cls.skipException("East/west icmp fragmentation is not "
178 "supported with ML2/OVN")
Dongcan Yeee300042018-01-10 05:38:35 +0000179
180 def _create_setup(self):
181 self.admin_client = self.os_admin.network_client
Yariv Rachmani94970882018-03-04 11:35:17 +0200182 for test_net in self._get_network_params():
Takashi Kajinamida451772023-03-22 00:19:39 +0900183 test_net['tenant_id'] = self.client.project_id
Yariv Rachmani94970882018-03-04 11:35:17 +0200184 test_net['name'] = data_utils.rand_name('net')
185 cidr = None if 'cidr' not in test_net else test_net.pop('cidr')
186 network = self.admin_client.create_network(**test_net)[
Dongcan Yeee300042018-01-10 05:38:35 +0000187 'network']
188 self.networks.append(network)
189 self.addCleanup(self.admin_client.delete_network, network['id'])
Yariv Rachmani94970882018-03-04 11:35:17 +0200190 subnet = self.create_subnet(network, cidr=cidr)
Dongcan Yeee300042018-01-10 05:38:35 +0000191 self.create_router_interface(self.router['id'], subnet['id'])
192 self.addCleanup(self.client.remove_router_interface_with_subnet_id,
193 self.router['id'], subnet['id'])
194
Yariv Rachmani94970882018-03-04 11:35:17 +0200195 # update network mtu
Dongcan Yeee300042018-01-10 05:38:35 +0000196 net_mtu = self.admin_client.show_network(
197 self.networks[0]['id'])['network']['mtu']
198 self.admin_client.update_network(self.networks[0]['id'],
Yariv Rachmani94970882018-03-04 11:35:17 +0200199 mtu=(net_mtu - 1))
Dongcan Yeee300042018-01-10 05:38:35 +0000200 self.networks[0]['mtu'] = (
201 self.admin_client.show_network(
202 self.networks[0]['id'])['network']['mtu'])
203
204 # check that MTUs are different for 2 networks
205 self.assertNotEqual(self.networks[0]['mtu'], self.networks[1]['mtu'])
206 self.networks.sort(key=lambda net: net['mtu'])
207 server1, fip1 = self.create_pingable_vm(self.networks[0],
Yariv Rachmani94970882018-03-04 11:35:17 +0200208 self.keypair, self.secgroup)
Dongcan Yeee300042018-01-10 05:38:35 +0000209 server_ssh_client1 = ssh.Client(
210 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200211 self.username, pkey=self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000212 server2, fip2 = self.create_pingable_vm(self.networks[1],
Yariv Rachmani94970882018-03-04 11:35:17 +0200213 self.keypair, self.secgroup)
Dongcan Yeee300042018-01-10 05:38:35 +0000214 server_ssh_client2 = ssh.Client(
215 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200216 self.username, pkey=self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000217 for fip in (fip1, fip2):
Slawek Kaplonskida17f002018-10-11 18:35:23 +0200218 self.check_connectivity(
219 fip['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200220 self.username, self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000221 return server_ssh_client1, fip1, server_ssh_client2, fip2
222
Slawek Kaplonski1cd4fb42018-08-10 15:03:32 +0200223 @testtools.skipUnless(
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200224 (CONF.neutron_plugin_options.advanced_image_ref or
225 CONF.neutron_plugin_options.default_image_is_advanced),
226 "Advanced image is required to run this test.")
Dongcan Yeee300042018-01-10 05:38:35 +0000227 @decorators.idempotent_id('bc470200-d8f4-4f07-b294-1b4cbaaa35b9')
228 def test_connectivity_min_max_mtu(self):
229 server_ssh_client, _, _, fip2 = self._create_setup()
Takashi Kajinami435ff6f2024-11-16 15:33:27 +0900230 log_msg = ("Ping with %(mtu_size)s MTU of 2 networks. "
231 "Fragmentation is %(fragmentation_state)s. "
232 "Expected result: ping %(ping_status)s")
Roman Safronov561cf622019-03-04 18:56:49 +0200233
Dongcan Yeee300042018-01-10 05:38:35 +0000234 # ping with min mtu of 2 networks succeeds even when
235 # fragmentation is disabled
Takashi Kajinami435ff6f2024-11-16 15:33:27 +0900236 LOG.debug(log_msg, mtu_size='minimal',
237 fragmentation_state='disabled', ping_status='succeeded')
Dongcan Yeee300042018-01-10 05:38:35 +0000238 self.check_remote_connectivity(
239 server_ssh_client, fip2['fixed_ip_address'],
240 mtu=self.networks[0]['mtu'], fragmentation=False)
241
242 # ping with the size above min mtu of 2 networks
243 # fails when fragmentation is disabled
Takashi Kajinami435ff6f2024-11-16 15:33:27 +0900244 LOG.debug(log_msg, mtu_size='size above minimal',
245 fragmentation_state='disabled', ping_status='failed')
Dongcan Yeee300042018-01-10 05:38:35 +0000246 self.check_remote_connectivity(
247 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
248 mtu=self.networks[0]['mtu'] + 2, fragmentation=False)
249
250 # ping with max mtu of 2 networks succeeds when
251 # fragmentation is enabled
Takashi Kajinami435ff6f2024-11-16 15:33:27 +0900252 LOG.debug(log_msg, mtu_size='maximal',
253 fragmentation_state='enabled', ping_status='succeeded')
Dongcan Yeee300042018-01-10 05:38:35 +0000254 self.check_remote_connectivity(
255 server_ssh_client, fip2['fixed_ip_address'],
256 mtu=self.networks[1]['mtu'])
257
258 # ping with max mtu of 2 networks fails when fragmentation is disabled
Takashi Kajinami435ff6f2024-11-16 15:33:27 +0900259 LOG.debug(log_msg, mtu_size='maximal',
260 fragmentation_state='disabled', ping_status='failed')
Dongcan Yeee300042018-01-10 05:38:35 +0000261 self.check_remote_connectivity(
262 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
263 mtu=self.networks[1]['mtu'], fragmentation=False)