blob: 64f34710083ec572c25e02f34c3349ede4e6a1ba [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 oslo_log import log as logging
Jakub Libosvar6d397d32016-12-30 10:57:52 -050017from tempest.common.utils.linux import remote_client
Kevin Bentona305d592016-09-19 04:26:10 -070018from tempest.common import waiters
Itzik Brownbac51dc2016-10-31 12:25:04 +000019from tempest.lib.common.utils import data_utils
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
28LOG = logging.getLogger(__name__)
29
Jakub Libosvar6d397d32016-12-30 10:57:52 -050030CONFIGURE_VLAN_INTERFACE_COMMANDS = (
31 'IFACE=$(ip l | grep "^[0-9]*: e" | cut -d \: -f 2) && '
32 'sudo su -c '
33 '"ip l a link $IFACE name $IFACE.%(tag)d type vlan id %(tag)d && '
34 'ip l s up dev $IFACE.%(tag)d && '
35 'dhclient $IFACE.%(tag)d"')
36
37
38def get_next_subnet(cidr):
39 return netaddr.IPNetwork(cidr).next()
40
Kevin Bentona305d592016-09-19 04:26:10 -070041
42class TrunkTest(base.BaseTempestTestCase):
43 credentials = ['primary']
44 force_tenant_isolation = False
45
46 @classmethod
47 @test.requires_ext(extension="trunk", service="network")
48 def resource_setup(cls):
49 super(TrunkTest, cls).resource_setup()
50 # setup basic topology for servers we can log into
51 cls.network = cls.create_network()
52 cls.subnet = cls.create_subnet(cls.network)
53 cls.create_router_and_interface(cls.subnet['id'])
54 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
124 server_ssh_client = remote_client.RemoteClient(
125 fip['floating_ip_address'],
126 CONF.validation.image_ssh_user,
127 pkey=self.keypair['private_key'],
128 server=server)
129
130 return {
131 'server': server,
132 'fip': fip,
133 'ssh_client': server_ssh_client,
134 'subport': port_for_subport,
135 }
136
137 def _wait_for_server(self, server):
138 waiters.wait_for_server_status(self.manager.servers_client,
139 server['server']['id'],
140 constants.SERVER_STATUS_ACTIVE)
141 self.check_connectivity(server['fip']['floating_ip_address'],
142 CONF.validation.image_ssh_user,
143 self.keypair['private_key'])
144
Kevin Bentona305d592016-09-19 04:26:10 -0700145 @test.idempotent_id('bb13fe28-f152-4000-8131-37890a40c79e')
146 def test_trunk_subport_lifecycle(self):
147 """Test trunk creation and subport transition to ACTIVE status.
148
149 This is a basic test for the trunk extension to ensure that we
150 can create a trunk, attach it to a server, add/remove subports,
151 while ensuring the status transitions as appropriate.
152
153 This test does not assert any dataplane behavior for the subports.
154 It's just a high-level check to ensure the agents claim to have
155 wired the port correctly and that the trunk port itself maintains
156 connectivity.
157 """
158 server1 = self._create_server_with_trunk_port()
159 server2 = self._create_server_with_trunk_port()
160 for server in (server1, server2):
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500161 self._wait_for_server(server)
Kevin Bentona305d592016-09-19 04:26:10 -0700162 trunk1_id, trunk2_id = server1['trunk']['id'], server2['trunk']['id']
163 # trunks should transition to ACTIVE without any subports
164 utils.wait_until_true(
165 lambda: self._is_trunk_active(trunk1_id),
166 exception=RuntimeError("Timed out waiting for trunk %s to "
167 "transition to ACTIVE." % trunk1_id))
168 utils.wait_until_true(
169 lambda: self._is_trunk_active(trunk2_id),
170 exception=RuntimeError("Timed out waiting for trunk %s to "
171 "transition to ACTIVE." % trunk2_id))
172 # create a few more networks and ports for subports
173 subports = [{'port_id': self.create_port(self.create_network())['id'],
174 'segmentation_type': 'vlan', 'segmentation_id': seg_id}
175 for seg_id in range(3, 7)]
176 # add all subports to server1
177 self.client.add_subports(trunk1_id, subports)
178 # ensure trunk transitions to ACTIVE
179 utils.wait_until_true(
180 lambda: self._is_trunk_active(trunk1_id),
181 exception=RuntimeError("Timed out waiting for trunk %s to "
182 "transition to ACTIVE." % trunk1_id))
183 # ensure all underlying subports transitioned to ACTIVE
184 for s in subports:
185 utils.wait_until_true(lambda: self._is_port_active(s['port_id']))
186 # ensure main dataplane wasn't interrupted
187 self.check_connectivity(server1['fip']['floating_ip_address'],
188 CONF.validation.image_ssh_user,
189 self.keypair['private_key'])
190 # move subports over to other server
191 self.client.remove_subports(trunk1_id, subports)
192 # ensure all subports go down
193 for s in subports:
194 utils.wait_until_true(
195 lambda: self._is_port_down(s['port_id']),
196 exception=RuntimeError("Timed out waiting for subport %s to "
197 "transition to DOWN." % s['port_id']))
198 self.client.add_subports(trunk2_id, subports)
199 # wait for both trunks to go back to ACTIVE
200 utils.wait_until_true(
201 lambda: self._is_trunk_active(trunk1_id),
202 exception=RuntimeError("Timed out waiting for trunk %s to "
203 "transition to ACTIVE." % trunk1_id))
204 utils.wait_until_true(
205 lambda: self._is_trunk_active(trunk2_id),
206 exception=RuntimeError("Timed out waiting for trunk %s to "
207 "transition to ACTIVE." % trunk2_id))
208 # ensure subports come up on other trunk
209 for s in subports:
210 utils.wait_until_true(
211 lambda: self._is_port_active(s['port_id']),
212 exception=RuntimeError("Timed out waiting for subport %s to "
213 "transition to ACTIVE." % s['port_id']))
214 # final connectivity check
215 self.check_connectivity(server1['fip']['floating_ip_address'],
216 CONF.validation.image_ssh_user,
217 self.keypair['private_key'])
218 self.check_connectivity(server2['fip']['floating_ip_address'],
219 CONF.validation.image_ssh_user,
220 self.keypair['private_key'])
Jakub Libosvar6d397d32016-12-30 10:57:52 -0500221
222 @test.idempotent_id('a8a02c9b-b453-49b5-89a2-cce7da66aafb')
223 def test_subport_connectivity(self):
224 vlan_tag = 10
225
226 vlan_network = self.create_network()
227 new_subnet_cidr = get_next_subnet(
228 config.safe_get_config_value('network', 'project_network_cidr'))
229 self.create_subnet(vlan_network, cidr=new_subnet_cidr)
230
231 servers = [
232 self._create_server_with_port_and_subport(vlan_network, vlan_tag)
233 for i in range(2)]
234
235 for server in servers:
236 self._wait_for_server(server)
237 # Configure VLAN interfaces on server
238 command = CONFIGURE_VLAN_INTERFACE_COMMANDS % {'tag': vlan_tag}
239 server['ssh_client'].exec_command(command)
240
241 # Ping from server1 to server2 via VLAN interface
242 servers[0]['ssh_client'].ping_host(
243 servers[1]['subport']['fixed_ips'][0]['ip_address'])