blob: 54399aa1037a189fa24deeb4999d6de47dd15833 [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 Bentona305d592016-09-19 04:26:10 -070016from tempest.common import waiters
Kevin Benton6f1f9d52017-03-01 09:14:45 -080017from tempest.lib.common import ssh
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
21
22from neutron.common import utils
23from neutron.tests.tempest import config
24from neutron.tests.tempest.scenario import base
25from neutron.tests.tempest.scenario import constants
26
27CONF = config.CONF
Kevin Bentona305d592016-09-19 04:26:10 -070028
Jakub Libosvar6d397d32016-12-30 10:57:52 -050029CONFIGURE_VLAN_INTERFACE_COMMANDS = (
30 'IFACE=$(ip l | grep "^[0-9]*: e" | cut -d \: -f 2) && '
31 'sudo su -c '
32 '"ip l a link $IFACE name $IFACE.%(tag)d type vlan id %(tag)d && '
33 'ip l s up dev $IFACE.%(tag)d && '
34 'dhclient $IFACE.%(tag)d"')
35
36
37def get_next_subnet(cidr):
38 return netaddr.IPNetwork(cidr).next()
39
Kevin Bentona305d592016-09-19 04:26:10 -070040
41class TrunkTest(base.BaseTempestTestCase):
42 credentials = ['primary']
43 force_tenant_isolation = False
44
45 @classmethod
46 @test.requires_ext(extension="trunk", service="network")
47 def resource_setup(cls):
48 super(TrunkTest, cls).resource_setup()
49 # setup basic topology for servers we can log into
50 cls.network = cls.create_network()
51 cls.subnet = cls.create_subnet(cls.network)
Genadi Chereshnyac0411e92016-07-11 16:59:42 +030052 router = cls.create_router_by_client()
53 cls.create_router_interface(router['id'], cls.subnet['id'])
Kevin Bentona305d592016-09-19 04:26:10 -070054 cls.keypair = cls.create_keypair()
Itzik Brownbac51dc2016-10-31 12:25:04 +000055 cls.secgroup = cls.manager.network_client.create_security_group(
56 name=data_utils.rand_name('secgroup-'))
57 cls.security_groups.append(cls.secgroup['security_group'])
58 cls.create_loginable_secgroup_rule(
59 secgroup_id=cls.secgroup['security_group']['id'])
Kevin Bentona305d592016-09-19 04:26:10 -070060
61 def _create_server_with_trunk_port(self):
Itzik Brownbac51dc2016-10-31 12:25:04 +000062 port = self.create_port(self.network, security_groups=[
63 self.secgroup['security_group']['id']])
Kevin Bentona305d592016-09-19 04:26:10 -070064 trunk = self.client.create_trunk(port['id'], subports=[])['trunk']
Jakub Libosvar6d397d32016-12-30 10:57:52 -050065 server, fip = self._create_server_with_fip(port['id'])
Kevin Bentona305d592016-09-19 04:26:10 -070066 self.addCleanup(self._detach_and_delete_trunk, server, trunk)
67 return {'port': port, 'trunk': trunk, 'fip': fip,
68 'server': server}
69
Jakub Libosvar6d397d32016-12-30 10:57:52 -050070 def _create_server_with_fip(self, port_id, **server_kwargs):
71 fip = self.create_and_associate_floatingip(port_id)
72 return (
73 self.create_server(
74 flavor_ref=CONF.compute.flavor_ref,
75 image_ref=CONF.compute.image_ref,
76 key_name=self.keypair['name'],
77 networks=[{'port': port_id}],
78 security_groups=[{'name': self.secgroup[
79 'security_group']['name']}],
80 **server_kwargs)['server'],
81 fip)
82
Kevin Bentona305d592016-09-19 04:26:10 -070083 def _detach_and_delete_trunk(self, server, trunk):
84 # we have to detach the interface from the server before
85 # the trunk can be deleted.
86 self.manager.compute.InterfacesClient().delete_interface(
87 server['id'], trunk['port_id'])
88
89 def is_port_detached():
90 p = self.client.show_port(trunk['port_id'])['port']
91 return p['device_id'] == ''
92 utils.wait_until_true(is_port_detached)
93 self.client.delete_trunk(trunk['id'])
94
95 def _is_port_down(self, port_id):
96 p = self.client.show_port(port_id)['port']
97 return p['status'] == 'DOWN'
98
99 def _is_port_active(self, port_id):
100 p = self.client.show_port(port_id)['port']
101 return p['status'] == 'ACTIVE'
102
103 def _is_trunk_active(self, trunk_id):
104 t = self.client.show_trunk(trunk_id)['trunk']
105 return t['status'] == 'ACTIVE'
106
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500107 def _create_server_with_port_and_subport(self, vlan_network, vlan_tag):
108 parent_port = self.create_port(self.network, security_groups=[
109 self.secgroup['security_group']['id']])
110 port_for_subport = self.create_port(
111 vlan_network,
112 security_groups=[self.secgroup['security_group']['id']],
113 mac_address=parent_port['mac_address'])
114 subport = {
115 'port_id': port_for_subport['id'],
116 'segmentation_type': 'vlan',
117 'segmentation_id': vlan_tag}
118 trunk = self.client.create_trunk(
119 parent_port['id'], subports=[subport])['trunk']
120
121 server, fip = self._create_server_with_fip(parent_port['id'])
122 self.addCleanup(self._detach_and_delete_trunk, server, trunk)
123
Kevin Benton6f1f9d52017-03-01 09:14:45 -0800124 server_ssh_client = ssh.Client(
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500125 fip['floating_ip_address'],
126 CONF.validation.image_ssh_user,
Kevin Benton6f1f9d52017-03-01 09:14:45 -0800127 pkey=self.keypair['private_key'])
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500128
129 return {
130 'server': server,
131 'fip': fip,
132 'ssh_client': server_ssh_client,
133 'subport': port_for_subport,
134 }
135
136 def _wait_for_server(self, server):
137 waiters.wait_for_server_status(self.manager.servers_client,
138 server['server']['id'],
139 constants.SERVER_STATUS_ACTIVE)
140 self.check_connectivity(server['fip']['floating_ip_address'],
141 CONF.validation.image_ssh_user,
142 self.keypair['private_key'])
143
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000144 @decorators.idempotent_id('bb13fe28-f152-4000-8131-37890a40c79e')
Kevin Bentona305d592016-09-19 04:26:10 -0700145 def test_trunk_subport_lifecycle(self):
146 """Test trunk creation and subport transition to ACTIVE status.
147
148 This is a basic test for the trunk extension to ensure that we
149 can create a trunk, attach it to a server, add/remove subports,
150 while ensuring the status transitions as appropriate.
151
152 This test does not assert any dataplane behavior for the subports.
153 It's just a high-level check to ensure the agents claim to have
154 wired the port correctly and that the trunk port itself maintains
155 connectivity.
156 """
157 server1 = self._create_server_with_trunk_port()
158 server2 = self._create_server_with_trunk_port()
159 for server in (server1, server2):
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500160 self._wait_for_server(server)
Kevin Bentona305d592016-09-19 04:26:10 -0700161 trunk1_id, trunk2_id = server1['trunk']['id'], server2['trunk']['id']
162 # trunks should transition to ACTIVE without any subports
163 utils.wait_until_true(
164 lambda: self._is_trunk_active(trunk1_id),
165 exception=RuntimeError("Timed out waiting for trunk %s to "
166 "transition to ACTIVE." % trunk1_id))
167 utils.wait_until_true(
168 lambda: self._is_trunk_active(trunk2_id),
169 exception=RuntimeError("Timed out waiting for trunk %s to "
170 "transition to ACTIVE." % trunk2_id))
171 # create a few more networks and ports for subports
172 subports = [{'port_id': self.create_port(self.create_network())['id'],
173 'segmentation_type': 'vlan', 'segmentation_id': seg_id}
174 for seg_id in range(3, 7)]
175 # add all subports to server1
176 self.client.add_subports(trunk1_id, subports)
177 # ensure trunk transitions to ACTIVE
178 utils.wait_until_true(
179 lambda: self._is_trunk_active(trunk1_id),
180 exception=RuntimeError("Timed out waiting for trunk %s to "
181 "transition to ACTIVE." % trunk1_id))
182 # ensure all underlying subports transitioned to ACTIVE
183 for s in subports:
184 utils.wait_until_true(lambda: self._is_port_active(s['port_id']))
185 # ensure main dataplane wasn't interrupted
186 self.check_connectivity(server1['fip']['floating_ip_address'],
187 CONF.validation.image_ssh_user,
188 self.keypair['private_key'])
189 # move subports over to other server
190 self.client.remove_subports(trunk1_id, subports)
191 # ensure all subports go down
192 for s in subports:
193 utils.wait_until_true(
194 lambda: self._is_port_down(s['port_id']),
195 exception=RuntimeError("Timed out waiting for subport %s to "
196 "transition to DOWN." % s['port_id']))
197 self.client.add_subports(trunk2_id, subports)
198 # wait for both trunks to go back to ACTIVE
199 utils.wait_until_true(
200 lambda: self._is_trunk_active(trunk1_id),
201 exception=RuntimeError("Timed out waiting for trunk %s to "
202 "transition to ACTIVE." % trunk1_id))
203 utils.wait_until_true(
204 lambda: self._is_trunk_active(trunk2_id),
205 exception=RuntimeError("Timed out waiting for trunk %s to "
206 "transition to ACTIVE." % trunk2_id))
207 # ensure subports come up on other trunk
208 for s in subports:
209 utils.wait_until_true(
210 lambda: self._is_port_active(s['port_id']),
211 exception=RuntimeError("Timed out waiting for subport %s to "
212 "transition to ACTIVE." % s['port_id']))
213 # final connectivity check
214 self.check_connectivity(server1['fip']['floating_ip_address'],
215 CONF.validation.image_ssh_user,
216 self.keypair['private_key'])
217 self.check_connectivity(server2['fip']['floating_ip_address'],
218 CONF.validation.image_ssh_user,
219 self.keypair['private_key'])
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500220
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000221 @decorators.idempotent_id('a8a02c9b-b453-49b5-89a2-cce7da66aafb')
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500222 def test_subport_connectivity(self):
223 vlan_tag = 10
224
225 vlan_network = self.create_network()
226 new_subnet_cidr = get_next_subnet(
227 config.safe_get_config_value('network', 'project_network_cidr'))
228 self.create_subnet(vlan_network, cidr=new_subnet_cidr)
229
230 servers = [
231 self._create_server_with_port_and_subport(vlan_network, vlan_tag)
232 for i in range(2)]
233
234 for server in servers:
235 self._wait_for_server(server)
236 # Configure VLAN interfaces on server
237 command = CONFIGURE_VLAN_INTERFACE_COMMANDS % {'tag': vlan_tag}
238 server['ssh_client'].exec_command(command)
239
Kevin Benton6f1f9d52017-03-01 09:14:45 -0800240 # Ping from server1 to server2 via VLAN interface should fail because
241 # we haven't allowed ICMP
242 self.check_remote_connectivity(
243 servers[0]['ssh_client'],
244 servers[1]['subport']['fixed_ips'][0]['ip_address'],
245 should_succeed=False
246 )
247 # allow intra-securitygroup traffic
248 self.client.create_security_group_rule(
249 security_group_id=self.secgroup['security_group']['id'],
250 direction='ingress', ethertype='IPv4', protocol='icmp',
251 remote_group_id=self.secgroup['security_group']['id'])
252 self.check_remote_connectivity(
253 servers[0]['ssh_client'],
254 servers[1]['subport']['fixed_ips'][0]['ip_address'],
255 should_succeed=True
256 )