blob: 05e14301ae05de9f7ae6c0d1b6156029eff5deb8 [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:
24 subports = test_utils.call_and_ignore_notfound_exc(
25 client.get_subports, trunk['id'])
26 if subports:
27 client.remove_subports(
28 trunk['id'], subports['sub_ports'])
29 test_utils.call_and_ignore_notfound_exc(
30 client.delete_trunk, trunk['id'])
31
32
Ryan Tidwell9b9be442016-02-18 17:34:43 +080033class TrunkTestJSONBase(base.BaseAdminNetworkTest):
34
Armando Migliacciod26a2742016-07-13 08:57:50 -070035 extension = 'trunk'
36
37 def setUp(self):
38 self.addCleanup(self.resource_cleanup)
39 super(TrunkTestJSONBase, self).setUp()
40
41 @classmethod
42 def skip_checks(cls):
43 super(TrunkTestJSONBase, cls).skip_checks()
44 if not test.is_extension_enabled(cls.extension, 'network'):
45 msg = "%s extension not enabled." % cls.extension
46 raise cls.skipException(msg)
47
48 @classmethod
49 def resource_setup(cls):
50 super(TrunkTestJSONBase, cls).resource_setup()
51 cls.trunks = []
52
53 @classmethod
54 def resource_cleanup(cls):
55 trunks_cleanup(cls.client, cls.trunks)
56 super(TrunkTestJSONBase, cls).resource_cleanup()
57
Armando Migliaccio89a24f12016-07-12 11:59:02 -070058 def _create_trunk_with_network_and_parent(self, subports, **kwargs):
Ryan Tidwell9b9be442016-02-18 17:34:43 +080059 network = self.create_network()
60 parent_port = self.create_port(network)
Armando Migliaccio89a24f12016-07-12 11:59:02 -070061 trunk = self.client.create_trunk(parent_port['id'], subports, **kwargs)
Armando Migliacciod26a2742016-07-13 08:57:50 -070062 self.trunks.append(trunk['trunk'])
63 return trunk
Ryan Tidwell9b9be442016-02-18 17:34:43 +080064
65
66class TrunkTestJSON(TrunkTestJSONBase):
67
Ryan Tidwell9b9be442016-02-18 17:34:43 +080068 @test.idempotent_id('e1a6355c-4768-41f3-9bf8-0f1d192bd501')
69 def test_create_trunk_empty_subports_list(self):
70 trunk = self._create_trunk_with_network_and_parent([])
71 observed_trunk = self.client.show_trunk(trunk['trunk']['id'])
72 self.assertEqual(trunk, observed_trunk)
73
74 @test.idempotent_id('382dfa39-ca03-4bd3-9a1c-91e36d2e3796')
75 def test_create_trunk_subports_not_specified(self):
76 trunk = self._create_trunk_with_network_and_parent(None)
77 observed_trunk = self.client.show_trunk(trunk['trunk']['id'])
78 self.assertEqual(trunk, observed_trunk)
79
80 @test.idempotent_id('7de46c22-e2b6-4959-ac5a-0e624632ab32')
81 def test_create_show_delete_trunk(self):
82 trunk = self._create_trunk_with_network_and_parent(None)
83 trunk_id = trunk['trunk']['id']
84 parent_port_id = trunk['trunk']['port_id']
85 res = self.client.show_trunk(trunk_id)
86 self.assertEqual(trunk_id, res['trunk']['id'])
87 self.assertEqual(parent_port_id, res['trunk']['port_id'])
88 self.client.delete_trunk(trunk_id)
89 self.assertRaises(lib_exc.NotFound, self.client.show_trunk, trunk_id)
90
Armando Migliaccio89a24f12016-07-12 11:59:02 -070091 @test.idempotent_id('4ce46c22-a2b6-4659-bc5a-0ef2463cab32')
92 def test_create_update_trunk(self):
93 trunk = self._create_trunk_with_network_and_parent(None)
94 trunk_id = trunk['trunk']['id']
95 res = self.client.show_trunk(trunk_id)
96 self.assertTrue(res['trunk']['admin_state_up'])
97 self.assertEqual("", res['trunk']['name'])
98 res = self.client.update_trunk(
99 trunk_id, name='foo', admin_state_up=False)
100 self.assertFalse(res['trunk']['admin_state_up'])
101 self.assertEqual("foo", res['trunk']['name'])
102 # enable the trunk so that it can be managed
103 self.client.update_trunk(trunk_id, admin_state_up=True)
104
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800105 @test.idempotent_id('73365f73-bed6-42cd-960b-ec04e0c99d85')
106 def test_list_trunks(self):
107 trunk1 = self._create_trunk_with_network_and_parent(None)
108 trunk2 = self._create_trunk_with_network_and_parent(None)
109 expected_trunks = {trunk1['trunk']['id']: trunk1['trunk'],
110 trunk2['trunk']['id']: trunk2['trunk']}
111 trunk_list = self.client.list_trunks()['trunks']
112 matched_trunks = [x for x in trunk_list if x['id'] in expected_trunks]
113 self.assertEqual(2, len(matched_trunks))
114 for trunk in matched_trunks:
115 self.assertEqual(expected_trunks[trunk['id']], trunk)
116
117 @test.idempotent_id('bb5fcead-09b5-484a-bbe6-46d1e06d6cc0')
118 def test_add_subport(self):
119 trunk = self._create_trunk_with_network_and_parent([])
120 network = self.create_network()
121 port = self.create_port(network)
122 subports = [{'port_id': port['id'],
123 'segmentation_type': 'vlan',
124 'segmentation_id': 2}]
125 self.client.add_subports(trunk['trunk']['id'], subports)
126 trunk = self.client.show_trunk(trunk['trunk']['id'])
127 observed_subports = trunk['trunk']['sub_ports']
128 self.assertEqual(1, len(observed_subports))
129 created_subport = observed_subports[0]
130 self.assertEqual(subports[0], created_subport)
131
132 @test.idempotent_id('96eea398-a03c-4c3e-a99e-864392c2ca53')
133 def test_remove_subport(self):
134 subport_parent1 = self.create_port(self.create_network())
135 subport_parent2 = self.create_port(self.create_network())
136 subports = [{'port_id': subport_parent1['id'],
137 'segmentation_type': 'vlan',
138 'segmentation_id': 2},
139 {'port_id': subport_parent2['id'],
140 'segmentation_type': 'vlan',
141 'segmentation_id': 4}]
142 trunk = self._create_trunk_with_network_and_parent(subports)
143 removed_subport = trunk['trunk']['sub_ports'][0]
144 expected_subport = None
145
146 for subport in subports:
147 if subport['port_id'] != removed_subport['port_id']:
148 expected_subport = subport
149 break
150
151 # Remove the subport and validate PUT response
152 res = self.client.remove_subports(trunk['trunk']['id'],
153 [removed_subport])
154 self.assertEqual(1, len(res['sub_ports']))
155 self.assertEqual(expected_subport, res['sub_ports'][0])
156
157 # Validate the results of a subport list
158 trunk = self.client.show_trunk(trunk['trunk']['id'])
159 observed_subports = trunk['trunk']['sub_ports']
160 self.assertEqual(1, len(observed_subports))
161 self.assertEqual(expected_subport, observed_subports[0])
162
163 @test.idempotent_id('bb5fcaad-09b5-484a-dde6-4cd1ea6d6ff0')
164 def test_get_subports(self):
165 network = self.create_network()
166 port = self.create_port(network)
167 subports = [{'port_id': port['id'],
168 'segmentation_type': 'vlan',
169 'segmentation_id': 2}]
170 trunk = self._create_trunk_with_network_and_parent(subports)
171 trunk = self.client.get_subports(trunk['trunk']['id'])
172 observed_subports = trunk['sub_ports']
173 self.assertEqual(1, len(observed_subports))
Armando Migliaccio57581c62016-07-01 10:13:19 -0700174
175
176class TrunksSearchCriteriaTest(base.BaseSearchCriteriaTest):
177
178 resource = 'trunk'
Armando Migliaccio57581c62016-07-01 10:13:19 -0700179
180 @classmethod
Armando Migliacciod26a2742016-07-13 08:57:50 -0700181 def skip_checks(cls):
182 super(TrunksSearchCriteriaTest, cls).skip_checks()
183 if not test.is_extension_enabled('trunk', 'network'):
184 msg = "trunk extension not enabled."
185 raise cls.skipException(msg)
186
187 @classmethod
Armando Migliaccio57581c62016-07-01 10:13:19 -0700188 def resource_setup(cls):
189 super(TrunksSearchCriteriaTest, cls).resource_setup()
Armando Migliacciod26a2742016-07-13 08:57:50 -0700190 cls.trunks = []
Armando Migliaccio57581c62016-07-01 10:13:19 -0700191 net = cls.create_network(network_name='trunk-search-test-net')
192 for name in cls.resource_names:
193 parent_port = cls.create_port(net)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700194 trunk = cls.client.create_trunk(parent_port['id'], [], name=name)
Armando Migliacciod26a2742016-07-13 08:57:50 -0700195 cls.trunks.append(trunk['trunk'])
196
197 @classmethod
198 def resource_cleanup(cls):
199 trunks_cleanup(cls.client, cls.trunks)
200 super(TrunksSearchCriteriaTest, cls).resource_cleanup()
Armando Migliaccio57581c62016-07-01 10:13:19 -0700201
202 @test.idempotent_id('fab73df4-960a-4ae3-87d3-60992b8d3e2d')
203 def test_list_sorts_asc(self):
204 self._test_list_sorts_asc()
205
206 @test.idempotent_id('a426671d-7270-430f-82ff-8f33eec93010')
207 def test_list_sorts_desc(self):
208 self._test_list_sorts_desc()
209
210 @test.idempotent_id('b202fdc8-6616-45df-b6a0-463932de6f94')
211 def test_list_pagination(self):
212 self._test_list_pagination()
213
214 @test.idempotent_id('c4723b8e-8186-4b9a-bf9e-57519967e048')
215 def test_list_pagination_with_marker(self):
216 self._test_list_pagination_with_marker()
217
218 @test.idempotent_id('dcd02a7a-f07e-4d5e-b0ca-b58e48927a9b')
219 def test_list_pagination_with_href_links(self):
220 self._test_list_pagination_with_href_links()
221
222 @test.idempotent_id('eafe7024-77ab-4cfe-824b-0b2bf4217727')
223 def test_list_no_pagination_limit_0(self):
224 self._test_list_no_pagination_limit_0()
225
226 @test.idempotent_id('f8857391-dc44-40cc-89b7-2800402e03ce')
227 def test_list_pagination_page_reverse_asc(self):
228 self._test_list_pagination_page_reverse_asc()
229
230 @test.idempotent_id('ae51e9c9-ceae-4ec0-afd4-147569247699')
231 def test_list_pagination_page_reverse_desc(self):
232 self._test_list_pagination_page_reverse_desc()
233
234 @test.idempotent_id('b4293e59-d794-4a93-be09-38667199ef68')
235 def test_list_pagination_page_reverse_with_href_links(self):
236 self._test_list_pagination_page_reverse_with_href_links()