blob: 1412b11f22301e17b11db239e79df4758f6f7356 [file] [log] [blame]
Kevin Bentona305d592016-09-19 04:26:10 -07001# All Rights Reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
Jakub Libosvar6d397d32016-12-30 10:57:52 -050015import netaddr
Kevin Benton07c90562017-02-27 01:53:16 -080016from oslo_log import log as logging
Kevin Bentona305d592016-09-19 04:26:10 -070017from tempest.common import waiters
Itzik Brownbac51dc2016-10-31 12:25:04 +000018from tempest.lib.common.utils import data_utils
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000019from tempest.lib import decorators
Kevin Bentona305d592016-09-19 04:26:10 -070020from tempest import test
Genadi Chereshnyae91b69c2017-07-16 09:51:58 +030021import testtools
Kevin Bentona305d592016-09-19 04:26:10 -070022
23from neutron.common import utils
Jakub Libosvar7c58cb22017-05-03 09:00:14 +000024from neutron.tests.tempest.common import ssh
Kevin Bentona305d592016-09-19 04:26:10 -070025from neutron.tests.tempest import config
26from neutron.tests.tempest.scenario import base
27from neutron.tests.tempest.scenario import constants
28
Kevin Benton07c90562017-02-27 01:53:16 -080029LOG = logging.getLogger(__name__)
Kevin Bentona305d592016-09-19 04:26:10 -070030CONF = config.CONF
Kevin Bentona305d592016-09-19 04:26:10 -070031
Jakub Libosvar6d397d32016-12-30 10:57:52 -050032CONFIGURE_VLAN_INTERFACE_COMMANDS = (
AlexSTafeyev200b7672017-03-28 12:07:59 +030033 'IFACE=$(PATH=$PATH:/usr/sbin ip l | grep "^[0-9]*: e" |'
34 'cut -d \: -f 2) && '
Jakub Libosvar6d397d32016-12-30 10:57:52 -050035 'sudo su -c '
AlexSTafeyev200b7672017-03-28 12:07:59 +030036 '"ip l a link $IFACE name $IFACE.%(tag)d type vlan id %(tag)d &&'
Jakub Libosvar6d397d32016-12-30 10:57:52 -050037 'ip l s up dev $IFACE.%(tag)d && '
38 'dhclient $IFACE.%(tag)d"')
39
40
41def get_next_subnet(cidr):
42 return netaddr.IPNetwork(cidr).next()
43
Kevin Bentona305d592016-09-19 04:26:10 -070044
45class TrunkTest(base.BaseTempestTestCase):
46 credentials = ['primary']
47 force_tenant_isolation = False
48
49 @classmethod
50 @test.requires_ext(extension="trunk", service="network")
51 def resource_setup(cls):
52 super(TrunkTest, cls).resource_setup()
53 # setup basic topology for servers we can log into
54 cls.network = cls.create_network()
55 cls.subnet = cls.create_subnet(cls.network)
Genadi Chereshnyac0411e92016-07-11 16:59:42 +030056 router = cls.create_router_by_client()
57 cls.create_router_interface(router['id'], cls.subnet['id'])
Kevin Bentona305d592016-09-19 04:26:10 -070058 cls.keypair = cls.create_keypair()
rajat294495c042017-06-28 15:37:16 +053059 cls.secgroup = cls.os_primary.network_client.create_security_group(
Itzik Brownbac51dc2016-10-31 12:25:04 +000060 name=data_utils.rand_name('secgroup-'))
61 cls.security_groups.append(cls.secgroup['security_group'])
62 cls.create_loginable_secgroup_rule(
63 secgroup_id=cls.secgroup['security_group']['id'])
Kevin Bentona305d592016-09-19 04:26:10 -070064
65 def _create_server_with_trunk_port(self):
Itzik Brownbac51dc2016-10-31 12:25:04 +000066 port = self.create_port(self.network, security_groups=[
67 self.secgroup['security_group']['id']])
Kevin Bentona305d592016-09-19 04:26:10 -070068 trunk = self.client.create_trunk(port['id'], subports=[])['trunk']
Jakub Libosvar6d397d32016-12-30 10:57:52 -050069 server, fip = self._create_server_with_fip(port['id'])
Kevin Bentona305d592016-09-19 04:26:10 -070070 self.addCleanup(self._detach_and_delete_trunk, server, trunk)
71 return {'port': port, 'trunk': trunk, 'fip': fip,
72 'server': server}
73
Jakub Libosvar6d397d32016-12-30 10:57:52 -050074 def _create_server_with_fip(self, port_id, **server_kwargs):
75 fip = self.create_and_associate_floatingip(port_id)
76 return (
77 self.create_server(
78 flavor_ref=CONF.compute.flavor_ref,
79 image_ref=CONF.compute.image_ref,
80 key_name=self.keypair['name'],
81 networks=[{'port': port_id}],
82 security_groups=[{'name': self.secgroup[
83 'security_group']['name']}],
84 **server_kwargs)['server'],
85 fip)
86
Kevin Bentona305d592016-09-19 04:26:10 -070087 def _detach_and_delete_trunk(self, server, trunk):
88 # we have to detach the interface from the server before
89 # the trunk can be deleted.
Brian Haleyf86ac2e2017-06-21 10:43:50 -040090 self.os_primary.compute.InterfacesClient().delete_interface(
Kevin Bentona305d592016-09-19 04:26:10 -070091 server['id'], trunk['port_id'])
92
93 def is_port_detached():
94 p = self.client.show_port(trunk['port_id'])['port']
95 return p['device_id'] == ''
96 utils.wait_until_true(is_port_detached)
97 self.client.delete_trunk(trunk['id'])
98
99 def _is_port_down(self, port_id):
100 p = self.client.show_port(port_id)['port']
101 return p['status'] == 'DOWN'
102
103 def _is_port_active(self, port_id):
104 p = self.client.show_port(port_id)['port']
105 return p['status'] == 'ACTIVE'
106
107 def _is_trunk_active(self, trunk_id):
108 t = self.client.show_trunk(trunk_id)['trunk']
109 return t['status'] == 'ACTIVE'
110
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500111 def _create_server_with_port_and_subport(self, vlan_network, vlan_tag):
112 parent_port = self.create_port(self.network, security_groups=[
113 self.secgroup['security_group']['id']])
114 port_for_subport = self.create_port(
115 vlan_network,
116 security_groups=[self.secgroup['security_group']['id']],
117 mac_address=parent_port['mac_address'])
118 subport = {
119 'port_id': port_for_subport['id'],
120 'segmentation_type': 'vlan',
121 'segmentation_id': vlan_tag}
122 trunk = self.client.create_trunk(
123 parent_port['id'], subports=[subport])['trunk']
124
125 server, fip = self._create_server_with_fip(parent_port['id'])
126 self.addCleanup(self._detach_and_delete_trunk, server, trunk)
127
Kevin Benton6f1f9d52017-03-01 09:14:45 -0800128 server_ssh_client = ssh.Client(
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500129 fip['floating_ip_address'],
130 CONF.validation.image_ssh_user,
Kevin Benton6f1f9d52017-03-01 09:14:45 -0800131 pkey=self.keypair['private_key'])
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500132
133 return {
134 'server': server,
135 'fip': fip,
136 'ssh_client': server_ssh_client,
137 'subport': port_for_subport,
138 }
139
140 def _wait_for_server(self, server):
Brian Haleyf86ac2e2017-06-21 10:43:50 -0400141 waiters.wait_for_server_status(self.os_primary.servers_client,
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500142 server['server']['id'],
143 constants.SERVER_STATUS_ACTIVE)
144 self.check_connectivity(server['fip']['floating_ip_address'],
145 CONF.validation.image_ssh_user,
146 self.keypair['private_key'])
147
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000148 @decorators.idempotent_id('bb13fe28-f152-4000-8131-37890a40c79e')
Kevin Bentona305d592016-09-19 04:26:10 -0700149 def test_trunk_subport_lifecycle(self):
150 """Test trunk creation and subport transition to ACTIVE status.
151
152 This is a basic test for the trunk extension to ensure that we
153 can create a trunk, attach it to a server, add/remove subports,
154 while ensuring the status transitions as appropriate.
155
156 This test does not assert any dataplane behavior for the subports.
157 It's just a high-level check to ensure the agents claim to have
158 wired the port correctly and that the trunk port itself maintains
159 connectivity.
160 """
161 server1 = self._create_server_with_trunk_port()
162 server2 = self._create_server_with_trunk_port()
163 for server in (server1, server2):
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500164 self._wait_for_server(server)
Kevin Bentona305d592016-09-19 04:26:10 -0700165 trunk1_id, trunk2_id = server1['trunk']['id'], server2['trunk']['id']
166 # trunks should transition to ACTIVE without any subports
167 utils.wait_until_true(
168 lambda: self._is_trunk_active(trunk1_id),
169 exception=RuntimeError("Timed out waiting for trunk %s to "
170 "transition to ACTIVE." % trunk1_id))
171 utils.wait_until_true(
172 lambda: self._is_trunk_active(trunk2_id),
173 exception=RuntimeError("Timed out waiting for trunk %s to "
174 "transition to ACTIVE." % trunk2_id))
175 # create a few more networks and ports for subports
176 subports = [{'port_id': self.create_port(self.create_network())['id'],
177 'segmentation_type': 'vlan', 'segmentation_id': seg_id}
178 for seg_id in range(3, 7)]
179 # add all subports to server1
180 self.client.add_subports(trunk1_id, subports)
181 # ensure trunk transitions to ACTIVE
182 utils.wait_until_true(
183 lambda: self._is_trunk_active(trunk1_id),
184 exception=RuntimeError("Timed out waiting for trunk %s to "
185 "transition to ACTIVE." % trunk1_id))
186 # ensure all underlying subports transitioned to ACTIVE
187 for s in subports:
188 utils.wait_until_true(lambda: self._is_port_active(s['port_id']))
189 # ensure main dataplane wasn't interrupted
190 self.check_connectivity(server1['fip']['floating_ip_address'],
191 CONF.validation.image_ssh_user,
192 self.keypair['private_key'])
193 # move subports over to other server
194 self.client.remove_subports(trunk1_id, subports)
195 # ensure all subports go down
196 for s in subports:
197 utils.wait_until_true(
198 lambda: self._is_port_down(s['port_id']),
199 exception=RuntimeError("Timed out waiting for subport %s to "
200 "transition to DOWN." % s['port_id']))
201 self.client.add_subports(trunk2_id, subports)
202 # wait for both trunks to go back to ACTIVE
203 utils.wait_until_true(
204 lambda: self._is_trunk_active(trunk1_id),
205 exception=RuntimeError("Timed out waiting for trunk %s to "
206 "transition to ACTIVE." % trunk1_id))
207 utils.wait_until_true(
208 lambda: self._is_trunk_active(trunk2_id),
209 exception=RuntimeError("Timed out waiting for trunk %s to "
210 "transition to ACTIVE." % trunk2_id))
211 # ensure subports come up on other trunk
212 for s in subports:
213 utils.wait_until_true(
214 lambda: self._is_port_active(s['port_id']),
215 exception=RuntimeError("Timed out waiting for subport %s to "
216 "transition to ACTIVE." % s['port_id']))
217 # final connectivity check
218 self.check_connectivity(server1['fip']['floating_ip_address'],
219 CONF.validation.image_ssh_user,
220 self.keypair['private_key'])
221 self.check_connectivity(server2['fip']['floating_ip_address'],
222 CONF.validation.image_ssh_user,
223 self.keypair['private_key'])
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500224
Genadi Chereshnyae91b69c2017-07-16 09:51:58 +0300225 @testtools.skipUnless(
226 CONF.neutron_plugin_options.image_is_advanced,
227 "Advanced image is required to run this test.")
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000228 @decorators.idempotent_id('a8a02c9b-b453-49b5-89a2-cce7da66aafb')
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500229 def test_subport_connectivity(self):
230 vlan_tag = 10
231
232 vlan_network = self.create_network()
233 new_subnet_cidr = get_next_subnet(
234 config.safe_get_config_value('network', 'project_network_cidr'))
AlexSTafeyev5d704992017-04-23 10:59:12 +0000235 self.create_subnet(vlan_network, gateway=None, cidr=new_subnet_cidr)
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500236
237 servers = [
238 self._create_server_with_port_and_subport(vlan_network, vlan_tag)
239 for i in range(2)]
240
241 for server in servers:
242 self._wait_for_server(server)
243 # Configure VLAN interfaces on server
244 command = CONFIGURE_VLAN_INTERFACE_COMMANDS % {'tag': vlan_tag}
245 server['ssh_client'].exec_command(command)
AlexSTafeyev0aa817c2017-05-08 10:57:37 +0000246 out = server['ssh_client'].exec_command(
247 'PATH=$PATH:/usr/sbin;ip addr list')
Kevin Benton07c90562017-02-27 01:53:16 -0800248 LOG.debug("Interfaces on server %s: %s", server, out)
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500249
Kevin Benton6f1f9d52017-03-01 09:14:45 -0800250 # Ping from server1 to server2 via VLAN interface should fail because
251 # we haven't allowed ICMP
252 self.check_remote_connectivity(
253 servers[0]['ssh_client'],
254 servers[1]['subport']['fixed_ips'][0]['ip_address'],
255 should_succeed=False
256 )
257 # allow intra-securitygroup traffic
258 self.client.create_security_group_rule(
259 security_group_id=self.secgroup['security_group']['id'],
260 direction='ingress', ethertype='IPv4', protocol='icmp',
261 remote_group_id=self.secgroup['security_group']['id'])
262 self.check_remote_connectivity(
263 servers[0]['ssh_client'],
264 servers[1]['subport']['fixed_ips'][0]['ip_address'],
265 should_succeed=True
266 )