blob: d5aa7db6c8be49061a0465b23e9487d15b3fc0de [file] [log] [blame]
Ryan Tidwell9b9be442016-02-18 17:34:43 +08001# Copyright 2016 Hewlett Packard Enterprise Development Company LP
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
Armando Migliacciod26a2742016-07-13 08:57:50 -070015from tempest.lib.common.utils import test_utils
Ryan Tidwell9b9be442016-02-18 17:34:43 +080016from tempest.lib import exceptions as lib_exc
17from tempest import test
18
19from neutron.tests.tempest.api import base
20
21
Armando Migliacciod26a2742016-07-13 08:57:50 -070022def trunks_cleanup(client, trunks):
23 for trunk in trunks:
Armando Migliaccio232642c2016-07-20 16:28:24 -070024 # NOTE(armax): deleting a trunk with subports is permitted, however
25 # for testing purposes it is safer to be explicit and clean all the
26 # resources associated with the trunk beforehand.
Armando Migliacciod26a2742016-07-13 08:57:50 -070027 subports = test_utils.call_and_ignore_notfound_exc(
28 client.get_subports, trunk['id'])
29 if subports:
30 client.remove_subports(
31 trunk['id'], subports['sub_ports'])
32 test_utils.call_and_ignore_notfound_exc(
33 client.delete_trunk, trunk['id'])
34
35
Ryan Tidwell9b9be442016-02-18 17:34:43 +080036class TrunkTestJSONBase(base.BaseAdminNetworkTest):
37
Armando Migliacciod26a2742016-07-13 08:57:50 -070038 extension = 'trunk'
39
40 def setUp(self):
41 self.addCleanup(self.resource_cleanup)
42 super(TrunkTestJSONBase, self).setUp()
43
44 @classmethod
45 def skip_checks(cls):
46 super(TrunkTestJSONBase, cls).skip_checks()
47 if not test.is_extension_enabled(cls.extension, 'network'):
48 msg = "%s extension not enabled." % cls.extension
49 raise cls.skipException(msg)
50
51 @classmethod
52 def resource_setup(cls):
53 super(TrunkTestJSONBase, cls).resource_setup()
54 cls.trunks = []
55
56 @classmethod
57 def resource_cleanup(cls):
58 trunks_cleanup(cls.client, cls.trunks)
59 super(TrunkTestJSONBase, cls).resource_cleanup()
60
Armando Migliaccio89a24f12016-07-12 11:59:02 -070061 def _create_trunk_with_network_and_parent(self, subports, **kwargs):
Ryan Tidwell9b9be442016-02-18 17:34:43 +080062 network = self.create_network()
63 parent_port = self.create_port(network)
Armando Migliaccio89a24f12016-07-12 11:59:02 -070064 trunk = self.client.create_trunk(parent_port['id'], subports, **kwargs)
Armando Migliacciod26a2742016-07-13 08:57:50 -070065 self.trunks.append(trunk['trunk'])
66 return trunk
Ryan Tidwell9b9be442016-02-18 17:34:43 +080067
Armando Migliaccio71d34702016-08-29 22:50:44 -070068 def _show_trunk(self, trunk_id):
Armando Migliaccio5b606642016-09-02 11:45:56 -070069 return self.client.show_trunk(trunk_id)
Armando Migliaccio71d34702016-08-29 22:50:44 -070070
71 def _list_trunks(self):
Armando Migliaccio5b606642016-09-02 11:45:56 -070072 return self.client.list_trunks()
Armando Migliaccio71d34702016-08-29 22:50:44 -070073
Ryan Tidwell9b9be442016-02-18 17:34:43 +080074
75class TrunkTestJSON(TrunkTestJSONBase):
76
Armando Migliaccio71d34702016-08-29 22:50:44 -070077 def _test_create_trunk(self, subports):
78 trunk = self._create_trunk_with_network_and_parent(subports)
79 observed_trunk = self._show_trunk(trunk['trunk']['id'])
80 self.assertEqual(trunk, observed_trunk)
81
Ryan Tidwell9b9be442016-02-18 17:34:43 +080082 @test.idempotent_id('e1a6355c-4768-41f3-9bf8-0f1d192bd501')
83 def test_create_trunk_empty_subports_list(self):
Armando Migliaccio71d34702016-08-29 22:50:44 -070084 self._test_create_trunk([])
Ryan Tidwell9b9be442016-02-18 17:34:43 +080085
86 @test.idempotent_id('382dfa39-ca03-4bd3-9a1c-91e36d2e3796')
87 def test_create_trunk_subports_not_specified(self):
Armando Migliaccio71d34702016-08-29 22:50:44 -070088 self._test_create_trunk(None)
Ryan Tidwell9b9be442016-02-18 17:34:43 +080089
90 @test.idempotent_id('7de46c22-e2b6-4959-ac5a-0e624632ab32')
91 def test_create_show_delete_trunk(self):
92 trunk = self._create_trunk_with_network_and_parent(None)
93 trunk_id = trunk['trunk']['id']
94 parent_port_id = trunk['trunk']['port_id']
Armando Migliaccio71d34702016-08-29 22:50:44 -070095 res = self._show_trunk(trunk_id)
Ryan Tidwell9b9be442016-02-18 17:34:43 +080096 self.assertEqual(trunk_id, res['trunk']['id'])
97 self.assertEqual(parent_port_id, res['trunk']['port_id'])
98 self.client.delete_trunk(trunk_id)
Armando Migliaccio71d34702016-08-29 22:50:44 -070099 self.assertRaises(lib_exc.NotFound, self._show_trunk, trunk_id)
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800100
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700101 @test.idempotent_id('4ce46c22-a2b6-4659-bc5a-0ef2463cab32')
102 def test_create_update_trunk(self):
103 trunk = self._create_trunk_with_network_and_parent(None)
Armando Migliaccio13adb742016-09-02 18:27:38 -0700104 self.assertEqual(1, trunk['trunk']['revision_number'])
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700105 trunk_id = trunk['trunk']['id']
Armando Migliaccio71d34702016-08-29 22:50:44 -0700106 res = self._show_trunk(trunk_id)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700107 self.assertTrue(res['trunk']['admin_state_up'])
Armando Migliaccio13adb742016-09-02 18:27:38 -0700108 self.assertEqual(1, res['trunk']['revision_number'])
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700109 self.assertEqual("", res['trunk']['name'])
Armando Migliaccio42738312016-08-29 22:04:21 -0700110 self.assertEqual("", res['trunk']['description'])
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700111 res = self.client.update_trunk(
112 trunk_id, name='foo', admin_state_up=False)
113 self.assertFalse(res['trunk']['admin_state_up'])
114 self.assertEqual("foo", res['trunk']['name'])
Armando Migliaccio13adb742016-09-02 18:27:38 -0700115 self.assertGreater(res['trunk']['revision_number'], 1)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700116 # enable the trunk so that it can be managed
117 self.client.update_trunk(trunk_id, admin_state_up=True)
118
Armando Migliaccio42738312016-08-29 22:04:21 -0700119 @test.idempotent_id('5ff46c22-a2b6-5559-bc5a-0ef2463cab32')
120 def test_create_update_trunk_with_description(self):
121 trunk = self._create_trunk_with_network_and_parent(
122 None, description="foo description")
123 trunk_id = trunk['trunk']['id']
124 self.assertEqual("foo description", trunk['trunk']['description'])
125 trunk = self.client.update_trunk(trunk_id, description='')
126 self.assertEqual('', trunk['trunk']['description'])
127
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800128 @test.idempotent_id('73365f73-bed6-42cd-960b-ec04e0c99d85')
129 def test_list_trunks(self):
130 trunk1 = self._create_trunk_with_network_and_parent(None)
131 trunk2 = self._create_trunk_with_network_and_parent(None)
132 expected_trunks = {trunk1['trunk']['id']: trunk1['trunk'],
133 trunk2['trunk']['id']: trunk2['trunk']}
Armando Migliaccio71d34702016-08-29 22:50:44 -0700134 trunk_list = self._list_trunks()['trunks']
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800135 matched_trunks = [x for x in trunk_list if x['id'] in expected_trunks]
136 self.assertEqual(2, len(matched_trunks))
137 for trunk in matched_trunks:
138 self.assertEqual(expected_trunks[trunk['id']], trunk)
139
140 @test.idempotent_id('bb5fcead-09b5-484a-bbe6-46d1e06d6cc0')
141 def test_add_subport(self):
142 trunk = self._create_trunk_with_network_and_parent([])
143 network = self.create_network()
144 port = self.create_port(network)
145 subports = [{'port_id': port['id'],
146 'segmentation_type': 'vlan',
147 'segmentation_id': 2}]
148 self.client.add_subports(trunk['trunk']['id'], subports)
Armando Migliaccio71d34702016-08-29 22:50:44 -0700149 trunk = self._show_trunk(trunk['trunk']['id'])
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800150 observed_subports = trunk['trunk']['sub_ports']
151 self.assertEqual(1, len(observed_subports))
152 created_subport = observed_subports[0]
153 self.assertEqual(subports[0], created_subport)
154
Armando Migliaccio232642c2016-07-20 16:28:24 -0700155 @test.idempotent_id('ee5fcead-1abf-483a-bce6-43d1e06d6aa0')
156 def test_delete_trunk_with_subport_is_allowed(self):
157 network = self.create_network()
158 port = self.create_port(network)
159 subports = [{'port_id': port['id'],
160 'segmentation_type': 'vlan',
161 'segmentation_id': 2}]
162 trunk = self._create_trunk_with_network_and_parent(subports)
163 self.client.delete_trunk(trunk['trunk']['id'])
164
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800165 @test.idempotent_id('96eea398-a03c-4c3e-a99e-864392c2ca53')
166 def test_remove_subport(self):
167 subport_parent1 = self.create_port(self.create_network())
168 subport_parent2 = self.create_port(self.create_network())
169 subports = [{'port_id': subport_parent1['id'],
170 'segmentation_type': 'vlan',
171 'segmentation_id': 2},
172 {'port_id': subport_parent2['id'],
173 'segmentation_type': 'vlan',
174 'segmentation_id': 4}]
175 trunk = self._create_trunk_with_network_and_parent(subports)
176 removed_subport = trunk['trunk']['sub_ports'][0]
177 expected_subport = None
178
179 for subport in subports:
180 if subport['port_id'] != removed_subport['port_id']:
181 expected_subport = subport
182 break
183
184 # Remove the subport and validate PUT response
185 res = self.client.remove_subports(trunk['trunk']['id'],
186 [removed_subport])
187 self.assertEqual(1, len(res['sub_ports']))
188 self.assertEqual(expected_subport, res['sub_ports'][0])
189
190 # Validate the results of a subport list
Armando Migliaccio71d34702016-08-29 22:50:44 -0700191 trunk = self._show_trunk(trunk['trunk']['id'])
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800192 observed_subports = trunk['trunk']['sub_ports']
193 self.assertEqual(1, len(observed_subports))
194 self.assertEqual(expected_subport, observed_subports[0])
195
196 @test.idempotent_id('bb5fcaad-09b5-484a-dde6-4cd1ea6d6ff0')
197 def test_get_subports(self):
198 network = self.create_network()
199 port = self.create_port(network)
200 subports = [{'port_id': port['id'],
201 'segmentation_type': 'vlan',
202 'segmentation_id': 2}]
203 trunk = self._create_trunk_with_network_and_parent(subports)
204 trunk = self.client.get_subports(trunk['trunk']['id'])
205 observed_subports = trunk['sub_ports']
206 self.assertEqual(1, len(observed_subports))
Armando Migliaccio57581c62016-07-01 10:13:19 -0700207
208
209class TrunksSearchCriteriaTest(base.BaseSearchCriteriaTest):
210
211 resource = 'trunk'
Armando Migliaccio57581c62016-07-01 10:13:19 -0700212
213 @classmethod
Armando Migliacciod26a2742016-07-13 08:57:50 -0700214 def skip_checks(cls):
215 super(TrunksSearchCriteriaTest, cls).skip_checks()
216 if not test.is_extension_enabled('trunk', 'network'):
217 msg = "trunk extension not enabled."
218 raise cls.skipException(msg)
219
220 @classmethod
Armando Migliaccio57581c62016-07-01 10:13:19 -0700221 def resource_setup(cls):
222 super(TrunksSearchCriteriaTest, cls).resource_setup()
Armando Migliacciod26a2742016-07-13 08:57:50 -0700223 cls.trunks = []
Armando Migliaccio57581c62016-07-01 10:13:19 -0700224 net = cls.create_network(network_name='trunk-search-test-net')
225 for name in cls.resource_names:
226 parent_port = cls.create_port(net)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700227 trunk = cls.client.create_trunk(parent_port['id'], [], name=name)
Armando Migliacciod26a2742016-07-13 08:57:50 -0700228 cls.trunks.append(trunk['trunk'])
229
230 @classmethod
231 def resource_cleanup(cls):
232 trunks_cleanup(cls.client, cls.trunks)
233 super(TrunksSearchCriteriaTest, cls).resource_cleanup()
Armando Migliaccio57581c62016-07-01 10:13:19 -0700234
235 @test.idempotent_id('fab73df4-960a-4ae3-87d3-60992b8d3e2d')
236 def test_list_sorts_asc(self):
237 self._test_list_sorts_asc()
238
239 @test.idempotent_id('a426671d-7270-430f-82ff-8f33eec93010')
240 def test_list_sorts_desc(self):
241 self._test_list_sorts_desc()
242
243 @test.idempotent_id('b202fdc8-6616-45df-b6a0-463932de6f94')
244 def test_list_pagination(self):
245 self._test_list_pagination()
246
247 @test.idempotent_id('c4723b8e-8186-4b9a-bf9e-57519967e048')
248 def test_list_pagination_with_marker(self):
249 self._test_list_pagination_with_marker()
250
251 @test.idempotent_id('dcd02a7a-f07e-4d5e-b0ca-b58e48927a9b')
252 def test_list_pagination_with_href_links(self):
253 self._test_list_pagination_with_href_links()
254
255 @test.idempotent_id('eafe7024-77ab-4cfe-824b-0b2bf4217727')
256 def test_list_no_pagination_limit_0(self):
257 self._test_list_no_pagination_limit_0()
258
259 @test.idempotent_id('f8857391-dc44-40cc-89b7-2800402e03ce')
260 def test_list_pagination_page_reverse_asc(self):
261 self._test_list_pagination_page_reverse_asc()
262
263 @test.idempotent_id('ae51e9c9-ceae-4ec0-afd4-147569247699')
264 def test_list_pagination_page_reverse_desc(self):
265 self._test_list_pagination_page_reverse_desc()
266
267 @test.idempotent_id('b4293e59-d794-4a93-be09-38667199ef68')
268 def test_list_pagination_page_reverse_with_href_links(self):
269 self._test_list_pagination_page_reverse_with_href_links()