blob: 31319ec9b7426e7d919cf9eba97c39f90e84d9c9 [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'],
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
173 def skip_checks(cls):
174 super(NetworkWritableMtuTest, cls).skip_checks()
Roman Safronova92aa4e2019-02-19 18:51:53 +0200175 supported_type_drivers = ['vxlan', 'geneve']
176 if not any(type_driver in supported_type_drivers for type_driver in
177 config.CONF.neutron_plugin_options.available_type_drivers):
178 raise cls.skipException(
179 "Neither VXLAN nor GENEVE type_driver is enabled")
Dongcan Yeee300042018-01-10 05:38:35 +0000180
181 @classmethod
182 @utils.requires_ext(extension="net-mtu-writable", service="network")
183 def resource_setup(cls):
184 super(NetworkWritableMtuTest, cls).resource_setup()
185
186 def _create_setup(self):
187 self.admin_client = self.os_admin.network_client
Yariv Rachmani94970882018-03-04 11:35:17 +0200188 for test_net in self._get_network_params():
189 test_net['tenant_id'] = self.client.tenant_id
190 test_net['name'] = data_utils.rand_name('net')
191 cidr = None if 'cidr' not in test_net else test_net.pop('cidr')
192 network = self.admin_client.create_network(**test_net)[
Dongcan Yeee300042018-01-10 05:38:35 +0000193 'network']
194 self.networks.append(network)
195 self.addCleanup(self.admin_client.delete_network, network['id'])
Yariv Rachmani94970882018-03-04 11:35:17 +0200196 subnet = self.create_subnet(network, cidr=cidr)
Dongcan Yeee300042018-01-10 05:38:35 +0000197 self.create_router_interface(self.router['id'], subnet['id'])
198 self.addCleanup(self.client.remove_router_interface_with_subnet_id,
199 self.router['id'], subnet['id'])
200
Yariv Rachmani94970882018-03-04 11:35:17 +0200201 # update network mtu
Dongcan Yeee300042018-01-10 05:38:35 +0000202 net_mtu = self.admin_client.show_network(
203 self.networks[0]['id'])['network']['mtu']
204 self.admin_client.update_network(self.networks[0]['id'],
Yariv Rachmani94970882018-03-04 11:35:17 +0200205 mtu=(net_mtu - 1))
Dongcan Yeee300042018-01-10 05:38:35 +0000206 self.networks[0]['mtu'] = (
207 self.admin_client.show_network(
208 self.networks[0]['id'])['network']['mtu'])
209
210 # check that MTUs are different for 2 networks
211 self.assertNotEqual(self.networks[0]['mtu'], self.networks[1]['mtu'])
212 self.networks.sort(key=lambda net: net['mtu'])
213 server1, fip1 = self.create_pingable_vm(self.networks[0],
Yariv Rachmani94970882018-03-04 11:35:17 +0200214 self.keypair, self.secgroup)
Dongcan Yeee300042018-01-10 05:38:35 +0000215 server_ssh_client1 = ssh.Client(
216 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200217 self.username, pkey=self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000218 server2, fip2 = self.create_pingable_vm(self.networks[1],
Yariv Rachmani94970882018-03-04 11:35:17 +0200219 self.keypair, self.secgroup)
Dongcan Yeee300042018-01-10 05:38:35 +0000220 server_ssh_client2 = ssh.Client(
221 self.floating_ips[0]['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200222 self.username, pkey=self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000223 for fip in (fip1, fip2):
Slawek Kaplonskida17f002018-10-11 18:35:23 +0200224 self.check_connectivity(
225 fip['floating_ip_address'],
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200226 self.username, self.keypair['private_key'])
Dongcan Yeee300042018-01-10 05:38:35 +0000227 return server_ssh_client1, fip1, server_ssh_client2, fip2
228
Slawek Kaplonski1cd4fb42018-08-10 15:03:32 +0200229 @testtools.skipUnless(
Yariv Rachmanifa1081a2018-11-21 12:46:57 +0200230 (CONF.neutron_plugin_options.advanced_image_ref or
231 CONF.neutron_plugin_options.default_image_is_advanced),
232 "Advanced image is required to run this test.")
Dongcan Yeee300042018-01-10 05:38:35 +0000233 @decorators.idempotent_id('bc470200-d8f4-4f07-b294-1b4cbaaa35b9')
234 def test_connectivity_min_max_mtu(self):
235 server_ssh_client, _, _, fip2 = self._create_setup()
Roman Safronov561cf622019-03-04 18:56:49 +0200236 log_msg = ("Ping with {mtu_size} MTU of 2 networks. Fragmentation is "
237 "{fragmentation_state}. Expected result: ping "
238 "{ping_status}")
239
Dongcan Yeee300042018-01-10 05:38:35 +0000240 # ping with min mtu of 2 networks succeeds even when
241 # fragmentation is disabled
Roman Safronov561cf622019-03-04 18:56:49 +0200242 LOG.debug(log_msg.format(mtu_size='minimal',
243 fragmentation_state='disabled', ping_status='succeeded'))
Dongcan Yeee300042018-01-10 05:38:35 +0000244 self.check_remote_connectivity(
245 server_ssh_client, fip2['fixed_ip_address'],
246 mtu=self.networks[0]['mtu'], fragmentation=False)
247
248 # ping with the size above min mtu of 2 networks
249 # fails when fragmentation is disabled
Roman Safronov561cf622019-03-04 18:56:49 +0200250 LOG.debug(log_msg.format(mtu_size='size above minimal',
251 fragmentation_state='disabled', ping_status='failed'))
Dongcan Yeee300042018-01-10 05:38:35 +0000252 self.check_remote_connectivity(
253 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
254 mtu=self.networks[0]['mtu'] + 2, fragmentation=False)
255
256 # ping with max mtu of 2 networks succeeds when
257 # fragmentation is enabled
Roman Safronov561cf622019-03-04 18:56:49 +0200258 LOG.debug(log_msg.format(mtu_size='maximal',
259 fragmentation_state='enabled', ping_status='succeeded'))
Dongcan Yeee300042018-01-10 05:38:35 +0000260 self.check_remote_connectivity(
261 server_ssh_client, fip2['fixed_ip_address'],
262 mtu=self.networks[1]['mtu'])
263
264 # ping with max mtu of 2 networks fails when fragmentation is disabled
Roman Safronov561cf622019-03-04 18:56:49 +0200265 LOG.debug(log_msg.format(mtu_size='maximal',
266 fragmentation_state='disabled', ping_status='failed'))
Dongcan Yeee300042018-01-10 05:38:35 +0000267 self.check_remote_connectivity(
268 server_ssh_client, fip2['fixed_ip_address'], should_succeed=False,
269 mtu=self.networks[1]['mtu'], fragmentation=False)