blob: a3713668c70769946a07e62d4286783822ba250d [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
68
69class TrunkTestJSON(TrunkTestJSONBase):
70
Ryan Tidwell9b9be442016-02-18 17:34:43 +080071 @test.idempotent_id('e1a6355c-4768-41f3-9bf8-0f1d192bd501')
72 def test_create_trunk_empty_subports_list(self):
73 trunk = self._create_trunk_with_network_and_parent([])
74 observed_trunk = self.client.show_trunk(trunk['trunk']['id'])
75 self.assertEqual(trunk, observed_trunk)
76
77 @test.idempotent_id('382dfa39-ca03-4bd3-9a1c-91e36d2e3796')
78 def test_create_trunk_subports_not_specified(self):
79 trunk = self._create_trunk_with_network_and_parent(None)
80 observed_trunk = self.client.show_trunk(trunk['trunk']['id'])
81 self.assertEqual(trunk, observed_trunk)
82
83 @test.idempotent_id('7de46c22-e2b6-4959-ac5a-0e624632ab32')
84 def test_create_show_delete_trunk(self):
85 trunk = self._create_trunk_with_network_and_parent(None)
86 trunk_id = trunk['trunk']['id']
87 parent_port_id = trunk['trunk']['port_id']
88 res = self.client.show_trunk(trunk_id)
89 self.assertEqual(trunk_id, res['trunk']['id'])
90 self.assertEqual(parent_port_id, res['trunk']['port_id'])
91 self.client.delete_trunk(trunk_id)
92 self.assertRaises(lib_exc.NotFound, self.client.show_trunk, trunk_id)
93
Armando Migliaccio89a24f12016-07-12 11:59:02 -070094 @test.idempotent_id('4ce46c22-a2b6-4659-bc5a-0ef2463cab32')
95 def test_create_update_trunk(self):
96 trunk = self._create_trunk_with_network_and_parent(None)
97 trunk_id = trunk['trunk']['id']
98 res = self.client.show_trunk(trunk_id)
99 self.assertTrue(res['trunk']['admin_state_up'])
100 self.assertEqual("", res['trunk']['name'])
Armando Migliaccio42738312016-08-29 22:04:21 -0700101 self.assertEqual("", res['trunk']['description'])
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700102 res = self.client.update_trunk(
103 trunk_id, name='foo', admin_state_up=False)
104 self.assertFalse(res['trunk']['admin_state_up'])
105 self.assertEqual("foo", res['trunk']['name'])
106 # enable the trunk so that it can be managed
107 self.client.update_trunk(trunk_id, admin_state_up=True)
108
Armando Migliaccio42738312016-08-29 22:04:21 -0700109 @test.idempotent_id('5ff46c22-a2b6-5559-bc5a-0ef2463cab32')
110 def test_create_update_trunk_with_description(self):
111 trunk = self._create_trunk_with_network_and_parent(
112 None, description="foo description")
113 trunk_id = trunk['trunk']['id']
114 self.assertEqual("foo description", trunk['trunk']['description'])
115 trunk = self.client.update_trunk(trunk_id, description='')
116 self.assertEqual('', trunk['trunk']['description'])
117
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800118 @test.idempotent_id('73365f73-bed6-42cd-960b-ec04e0c99d85')
119 def test_list_trunks(self):
120 trunk1 = self._create_trunk_with_network_and_parent(None)
121 trunk2 = self._create_trunk_with_network_and_parent(None)
122 expected_trunks = {trunk1['trunk']['id']: trunk1['trunk'],
123 trunk2['trunk']['id']: trunk2['trunk']}
124 trunk_list = self.client.list_trunks()['trunks']
125 matched_trunks = [x for x in trunk_list if x['id'] in expected_trunks]
126 self.assertEqual(2, len(matched_trunks))
127 for trunk in matched_trunks:
128 self.assertEqual(expected_trunks[trunk['id']], trunk)
129
130 @test.idempotent_id('bb5fcead-09b5-484a-bbe6-46d1e06d6cc0')
131 def test_add_subport(self):
132 trunk = self._create_trunk_with_network_and_parent([])
133 network = self.create_network()
134 port = self.create_port(network)
135 subports = [{'port_id': port['id'],
136 'segmentation_type': 'vlan',
137 'segmentation_id': 2}]
138 self.client.add_subports(trunk['trunk']['id'], subports)
139 trunk = self.client.show_trunk(trunk['trunk']['id'])
140 observed_subports = trunk['trunk']['sub_ports']
141 self.assertEqual(1, len(observed_subports))
142 created_subport = observed_subports[0]
143 self.assertEqual(subports[0], created_subport)
144
Armando Migliaccio232642c2016-07-20 16:28:24 -0700145 @test.idempotent_id('ee5fcead-1abf-483a-bce6-43d1e06d6aa0')
146 def test_delete_trunk_with_subport_is_allowed(self):
147 network = self.create_network()
148 port = self.create_port(network)
149 subports = [{'port_id': port['id'],
150 'segmentation_type': 'vlan',
151 'segmentation_id': 2}]
152 trunk = self._create_trunk_with_network_and_parent(subports)
153 self.client.delete_trunk(trunk['trunk']['id'])
154
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800155 @test.idempotent_id('96eea398-a03c-4c3e-a99e-864392c2ca53')
156 def test_remove_subport(self):
157 subport_parent1 = self.create_port(self.create_network())
158 subport_parent2 = self.create_port(self.create_network())
159 subports = [{'port_id': subport_parent1['id'],
160 'segmentation_type': 'vlan',
161 'segmentation_id': 2},
162 {'port_id': subport_parent2['id'],
163 'segmentation_type': 'vlan',
164 'segmentation_id': 4}]
165 trunk = self._create_trunk_with_network_and_parent(subports)
166 removed_subport = trunk['trunk']['sub_ports'][0]
167 expected_subport = None
168
169 for subport in subports:
170 if subport['port_id'] != removed_subport['port_id']:
171 expected_subport = subport
172 break
173
174 # Remove the subport and validate PUT response
175 res = self.client.remove_subports(trunk['trunk']['id'],
176 [removed_subport])
177 self.assertEqual(1, len(res['sub_ports']))
178 self.assertEqual(expected_subport, res['sub_ports'][0])
179
180 # Validate the results of a subport list
181 trunk = self.client.show_trunk(trunk['trunk']['id'])
182 observed_subports = trunk['trunk']['sub_ports']
183 self.assertEqual(1, len(observed_subports))
184 self.assertEqual(expected_subport, observed_subports[0])
185
186 @test.idempotent_id('bb5fcaad-09b5-484a-dde6-4cd1ea6d6ff0')
187 def test_get_subports(self):
188 network = self.create_network()
189 port = self.create_port(network)
190 subports = [{'port_id': port['id'],
191 'segmentation_type': 'vlan',
192 'segmentation_id': 2}]
193 trunk = self._create_trunk_with_network_and_parent(subports)
194 trunk = self.client.get_subports(trunk['trunk']['id'])
195 observed_subports = trunk['sub_ports']
196 self.assertEqual(1, len(observed_subports))
Armando Migliaccio57581c62016-07-01 10:13:19 -0700197
198
199class TrunksSearchCriteriaTest(base.BaseSearchCriteriaTest):
200
201 resource = 'trunk'
Armando Migliaccio57581c62016-07-01 10:13:19 -0700202
203 @classmethod
Armando Migliacciod26a2742016-07-13 08:57:50 -0700204 def skip_checks(cls):
205 super(TrunksSearchCriteriaTest, cls).skip_checks()
206 if not test.is_extension_enabled('trunk', 'network'):
207 msg = "trunk extension not enabled."
208 raise cls.skipException(msg)
209
210 @classmethod
Armando Migliaccio57581c62016-07-01 10:13:19 -0700211 def resource_setup(cls):
212 super(TrunksSearchCriteriaTest, cls).resource_setup()
Armando Migliacciod26a2742016-07-13 08:57:50 -0700213 cls.trunks = []
Armando Migliaccio57581c62016-07-01 10:13:19 -0700214 net = cls.create_network(network_name='trunk-search-test-net')
215 for name in cls.resource_names:
216 parent_port = cls.create_port(net)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700217 trunk = cls.client.create_trunk(parent_port['id'], [], name=name)
Armando Migliacciod26a2742016-07-13 08:57:50 -0700218 cls.trunks.append(trunk['trunk'])
219
220 @classmethod
221 def resource_cleanup(cls):
222 trunks_cleanup(cls.client, cls.trunks)
223 super(TrunksSearchCriteriaTest, cls).resource_cleanup()
Armando Migliaccio57581c62016-07-01 10:13:19 -0700224
225 @test.idempotent_id('fab73df4-960a-4ae3-87d3-60992b8d3e2d')
226 def test_list_sorts_asc(self):
227 self._test_list_sorts_asc()
228
229 @test.idempotent_id('a426671d-7270-430f-82ff-8f33eec93010')
230 def test_list_sorts_desc(self):
231 self._test_list_sorts_desc()
232
233 @test.idempotent_id('b202fdc8-6616-45df-b6a0-463932de6f94')
234 def test_list_pagination(self):
235 self._test_list_pagination()
236
237 @test.idempotent_id('c4723b8e-8186-4b9a-bf9e-57519967e048')
238 def test_list_pagination_with_marker(self):
239 self._test_list_pagination_with_marker()
240
241 @test.idempotent_id('dcd02a7a-f07e-4d5e-b0ca-b58e48927a9b')
242 def test_list_pagination_with_href_links(self):
243 self._test_list_pagination_with_href_links()
244
245 @test.idempotent_id('eafe7024-77ab-4cfe-824b-0b2bf4217727')
246 def test_list_no_pagination_limit_0(self):
247 self._test_list_no_pagination_limit_0()
248
249 @test.idempotent_id('f8857391-dc44-40cc-89b7-2800402e03ce')
250 def test_list_pagination_page_reverse_asc(self):
251 self._test_list_pagination_page_reverse_asc()
252
253 @test.idempotent_id('ae51e9c9-ceae-4ec0-afd4-147569247699')
254 def test_list_pagination_page_reverse_desc(self):
255 self._test_list_pagination_page_reverse_desc()
256
257 @test.idempotent_id('b4293e59-d794-4a93-be09-38667199ef68')
258 def test_list_pagination_page_reverse_with_href_links(self):
259 self._test_list_pagination_page_reverse_with_href_links()