blob: df730c68ee83195b8baf5836d1132086defd300a [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
104 net_kwargs = {'tenant_id': self.client.tenant_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'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200132 self.username, self.keypair['private_key'])
Chandan Kumarc125fd12017-11-15 19:41:01 +0530133 return server_ssh_client1, fip1, server_ssh_client2, fip2
134
Slawek Kaplonski1cd4fb42018-08-10 15:03:32 +0200135 @testtools.skipUnless(
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200136 (CONF.neutron_plugin_options.advanced_image_ref or
137 CONF.neutron_plugin_options.default_image_is_advanced),
138 "Advanced image is required to run this test.")
Chandan Kumarc125fd12017-11-15 19:41:01 +0530139 @decorators.idempotent_id('3d73ec1a-2ec6-45a9-b0f8-04a273d9d344')
140 def test_connectivity_min_max_mtu(self):
141 server_ssh_client, _, _, fip2 = self._create_setup()
142 # ping with min mtu of 2 networks succeeds even when
143 # fragmentation is disabled
144 self.check_remote_connectivity(
145 server_ssh_client, fip2['fixed_ip_address'],
146 mtu=self.networks[0]['mtu'], fragmentation=False)
147
148 # ping with the size above min mtu of 2 networks
149 # fails when fragmentation is disabled
150 self.check_remote_connectivity(
151 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
152 mtu=self.networks[0]['mtu'] + 1, fragmentation=False)
153
154 # ping with max mtu of 2 networks succeeds when
155 # fragmentation is enabled
156 self.check_remote_connectivity(
157 server_ssh_client, fip2['fixed_ip_address'],
158 mtu=self.networks[1]['mtu'])
159
160 # ping with max mtu of 2 networks fails when fragmentation is disabled
161 self.check_remote_connectivity(
162 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
163 mtu=self.networks[1]['mtu'], fragmentation=False)
Dongcan Yeee300042018-01-10 05:38:35 +0000164
165
166class NetworkWritableMtuTest(NetworkMtuBaseTest):
167 credentials = ['primary', 'admin']
168 servers = []
169 networks = []
170
171 @classmethod
172 def skip_checks(cls):
173 super(NetworkWritableMtuTest, cls).skip_checks()
Roman Safronova92aa4e2019-02-19 18:51:53 +0200174 supported_type_drivers = ['vxlan', 'geneve']
175 if not any(type_driver in supported_type_drivers for type_driver in
176 config.CONF.neutron_plugin_options.available_type_drivers):
177 raise cls.skipException(
178 "Neither VXLAN nor GENEVE type_driver is enabled")
Dongcan Yeee300042018-01-10 05:38:35 +0000179
180 @classmethod
181 @utils.requires_ext(extension="net-mtu-writable", service="network")
182 def resource_setup(cls):
183 super(NetworkWritableMtuTest, cls).resource_setup()
184
185 def _create_setup(self):
186 self.admin_client = self.os_admin.network_client
Yariv Rachmani94970882018-03-04 11:35:17 +0200187 for test_net in self._get_network_params():
188 test_net['tenant_id'] = self.client.tenant_id
189 test_net['name'] = data_utils.rand_name('net')
190 cidr = None if 'cidr' not in test_net else test_net.pop('cidr')
191 network = self.admin_client.create_network(**test_net)[
Dongcan Yeee300042018-01-10 05:38:35 +0000192 'network']
193 self.networks.append(network)
194 self.addCleanup(self.admin_client.delete_network, network['id'])
Yariv Rachmani94970882018-03-04 11:35:17 +0200195 subnet = self.create_subnet(network, cidr=cidr)
Dongcan Yeee300042018-01-10 05:38:35 +0000196 self.create_router_interface(self.router['id'], subnet['id'])
197 self.addCleanup(self.client.remove_router_interface_with_subnet_id,
198 self.router['id'], subnet['id'])
199
Yariv Rachmani94970882018-03-04 11:35:17 +0200200 # update network mtu
Dongcan Yeee300042018-01-10 05:38:35 +0000201 net_mtu = self.admin_client.show_network(
202 self.networks[0]['id'])['network']['mtu']
203 self.admin_client.update_network(self.networks[0]['id'],
Yariv Rachmani94970882018-03-04 11:35:17 +0200204 mtu=(net_mtu - 1))
Dongcan Yeee300042018-01-10 05:38:35 +0000205 self.networks[0]['mtu'] = (
206 self.admin_client.show_network(
207 self.networks[0]['id'])['network']['mtu'])
208
209 # check that MTUs are different for 2 networks
210 self.assertNotEqual(self.networks[0]['mtu'], self.networks[1]['mtu'])
211 self.networks.sort(key=lambda net: net['mtu'])
212 server1, fip1 = self.create_pingable_vm(self.networks[0],
Yariv Rachmani94970882018-03-04 11:35:17 +0200213 self.keypair, self.secgroup)
Dongcan Yeee300042018-01-10 05:38:35 +0000214 server_ssh_client1 = 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 server2, fip2 = self.create_pingable_vm(self.networks[1],
Yariv Rachmani94970882018-03-04 11:35:17 +0200218 self.keypair, self.secgroup)
Dongcan Yeee300042018-01-10 05:38:35 +0000219 server_ssh_client2 = ssh.Client(
220 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200221 self.username, pkey=self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000222 for fip in (fip1, fip2):
Slawek Kaplonskida17f002018-10-11 18:35:23 +0200223 self.check_connectivity(
224 fip['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200225 self.username, self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000226 return server_ssh_client1, fip1, server_ssh_client2, fip2
227
Slawek Kaplonski1cd4fb42018-08-10 15:03:32 +0200228 @testtools.skipUnless(
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200229 (CONF.neutron_plugin_options.advanced_image_ref or
230 CONF.neutron_plugin_options.default_image_is_advanced),
231 "Advanced image is required to run this test.")
Dongcan Yeee300042018-01-10 05:38:35 +0000232 @decorators.idempotent_id('bc470200-d8f4-4f07-b294-1b4cbaaa35b9')
233 def test_connectivity_min_max_mtu(self):
234 server_ssh_client, _, _, fip2 = self._create_setup()
Roman Safronov561cf622019-03-04 18:56:49 +0200235 log_msg = ("Ping with {mtu_size} MTU of 2 networks. Fragmentation is "
236 "{fragmentation_state}. Expected result: ping "
237 "{ping_status}")
238
Dongcan Yeee300042018-01-10 05:38:35 +0000239 # ping with min mtu of 2 networks succeeds even when
240 # fragmentation is disabled
Roman Safronov561cf622019-03-04 18:56:49 +0200241 LOG.debug(log_msg.format(mtu_size='minimal',
242 fragmentation_state='disabled', ping_status='succeeded'))
Dongcan Yeee300042018-01-10 05:38:35 +0000243 self.check_remote_connectivity(
244 server_ssh_client, fip2['fixed_ip_address'],
245 mtu=self.networks[0]['mtu'], fragmentation=False)
246
247 # ping with the size above min mtu of 2 networks
248 # fails when fragmentation is disabled
Roman Safronov561cf622019-03-04 18:56:49 +0200249 LOG.debug(log_msg.format(mtu_size='size above minimal',
250 fragmentation_state='disabled', ping_status='failed'))
Dongcan Yeee300042018-01-10 05:38:35 +0000251 self.check_remote_connectivity(
252 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
253 mtu=self.networks[0]['mtu'] + 2, fragmentation=False)
254
255 # ping with max mtu of 2 networks succeeds when
256 # fragmentation is enabled
Roman Safronov561cf622019-03-04 18:56:49 +0200257 LOG.debug(log_msg.format(mtu_size='maximal',
258 fragmentation_state='enabled', ping_status='succeeded'))
Dongcan Yeee300042018-01-10 05:38:35 +0000259 self.check_remote_connectivity(
260 server_ssh_client, fip2['fixed_ip_address'],
261 mtu=self.networks[1]['mtu'])
262
263 # ping with max mtu of 2 networks fails when fragmentation is disabled
Roman Safronov561cf622019-03-04 18:56:49 +0200264 LOG.debug(log_msg.format(mtu_size='maximal',
265 fragmentation_state='disabled', ping_status='failed'))
Dongcan Yeee300042018-01-10 05:38:35 +0000266 self.check_remote_connectivity(
267 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
268 mtu=self.networks[1]['mtu'], fragmentation=False)