blob: e02cf92997a99895476ae4459b548e139cfeac15 [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
Chandan Kumarc125fd12017-11-15 19:41:01 +053015from tempest.common import utils
Hynek Mlnarikc5106762016-09-01 11:47:31 +020016from tempest.lib.common.utils import data_utils
Armando Migliacciod26a2742016-07-13 08:57:50 -070017from tempest.lib.common.utils import test_utils
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000018from tempest.lib import decorators
Ryan Tidwell9b9be442016-02-18 17:34:43 +080019from tempest.lib import exceptions as lib_exc
Ryan Tidwell9b9be442016-02-18 17:34:43 +080020
Chandan Kumar667d3d32017-09-22 12:24:06 +053021from neutron_tempest_plugin.api import base
22from neutron_tempest_plugin import config
Ryan Tidwell9b9be442016-02-18 17:34:43 +080023
24
Armando Migliacciod26a2742016-07-13 08:57:50 -070025def trunks_cleanup(client, trunks):
26 for trunk in trunks:
Armando Migliaccio232642c2016-07-20 16:28:24 -070027 # NOTE(armax): deleting a trunk with subports is permitted, however
28 # for testing purposes it is safer to be explicit and clean all the
29 # resources associated with the trunk beforehand.
Armando Migliacciod26a2742016-07-13 08:57:50 -070030 subports = test_utils.call_and_ignore_notfound_exc(
31 client.get_subports, trunk['id'])
32 if subports:
33 client.remove_subports(
34 trunk['id'], subports['sub_ports'])
35 test_utils.call_and_ignore_notfound_exc(
36 client.delete_trunk, trunk['id'])
37
38
Ryan Tidwell9b9be442016-02-18 17:34:43 +080039class TrunkTestJSONBase(base.BaseAdminNetworkTest):
40
Jakub Libosvar1982aa12017-05-30 11:15:33 +000041 required_extensions = ['trunk']
Armando Migliacciod26a2742016-07-13 08:57:50 -070042
43 def setUp(self):
44 self.addCleanup(self.resource_cleanup)
45 super(TrunkTestJSONBase, self).setUp()
46
47 @classmethod
Armando Migliacciod26a2742016-07-13 08:57:50 -070048 def resource_setup(cls):
49 super(TrunkTestJSONBase, cls).resource_setup()
50 cls.trunks = []
51
52 @classmethod
53 def resource_cleanup(cls):
54 trunks_cleanup(cls.client, cls.trunks)
55 super(TrunkTestJSONBase, cls).resource_cleanup()
56
Jakub Libosvar73520542017-12-19 17:46:42 +000057 @classmethod
58 def is_type_driver_enabled(cls, type_driver):
59 return (type_driver in
60 config.CONF.neutron_plugin_options.available_type_drivers)
61
62 def _create_trunk_with_network_and_parent(
63 self, subports, parent_network_type=None, **kwargs):
64 client = None
65 network_kwargs = {}
66 if parent_network_type:
67 client = self.admin_client
68 network_kwargs = {"provider:network_type": parent_network_type,
69 "tenant_id": self.client.tenant_id}
70 network = self.create_network(client=client, **network_kwargs)
Ryan Tidwell9b9be442016-02-18 17:34:43 +080071 parent_port = self.create_port(network)
Armando Migliaccio89a24f12016-07-12 11:59:02 -070072 trunk = self.client.create_trunk(parent_port['id'], subports, **kwargs)
Armando Migliacciod26a2742016-07-13 08:57:50 -070073 self.trunks.append(trunk['trunk'])
74 return trunk
Ryan Tidwell9b9be442016-02-18 17:34:43 +080075
Armando Migliaccio71d34702016-08-29 22:50:44 -070076 def _show_trunk(self, trunk_id):
Armando Migliaccio5b606642016-09-02 11:45:56 -070077 return self.client.show_trunk(trunk_id)
Armando Migliaccio71d34702016-08-29 22:50:44 -070078
79 def _list_trunks(self):
Armando Migliaccio5b606642016-09-02 11:45:56 -070080 return self.client.list_trunks()
Armando Migliaccio71d34702016-08-29 22:50:44 -070081
Ryan Tidwell9b9be442016-02-18 17:34:43 +080082
83class TrunkTestJSON(TrunkTestJSONBase):
84
Armando Migliaccio71d34702016-08-29 22:50:44 -070085 def _test_create_trunk(self, subports):
86 trunk = self._create_trunk_with_network_and_parent(subports)
87 observed_trunk = self._show_trunk(trunk['trunk']['id'])
88 self.assertEqual(trunk, observed_trunk)
89
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000090 @decorators.idempotent_id('e1a6355c-4768-41f3-9bf8-0f1d192bd501')
Ryan Tidwell9b9be442016-02-18 17:34:43 +080091 def test_create_trunk_empty_subports_list(self):
Armando Migliaccio71d34702016-08-29 22:50:44 -070092 self._test_create_trunk([])
Ryan Tidwell9b9be442016-02-18 17:34:43 +080093
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000094 @decorators.idempotent_id('382dfa39-ca03-4bd3-9a1c-91e36d2e3796')
Ryan Tidwell9b9be442016-02-18 17:34:43 +080095 def test_create_trunk_subports_not_specified(self):
Armando Migliaccio71d34702016-08-29 22:50:44 -070096 self._test_create_trunk(None)
Ryan Tidwell9b9be442016-02-18 17:34:43 +080097
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +000098 @decorators.idempotent_id('7de46c22-e2b6-4959-ac5a-0e624632ab32')
Ryan Tidwell9b9be442016-02-18 17:34:43 +080099 def test_create_show_delete_trunk(self):
100 trunk = self._create_trunk_with_network_and_parent(None)
101 trunk_id = trunk['trunk']['id']
102 parent_port_id = trunk['trunk']['port_id']
Armando Migliaccio71d34702016-08-29 22:50:44 -0700103 res = self._show_trunk(trunk_id)
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800104 self.assertEqual(trunk_id, res['trunk']['id'])
105 self.assertEqual(parent_port_id, res['trunk']['port_id'])
106 self.client.delete_trunk(trunk_id)
Armando Migliaccio71d34702016-08-29 22:50:44 -0700107 self.assertRaises(lib_exc.NotFound, self._show_trunk, trunk_id)
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800108
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000109 @decorators.idempotent_id('8d83a6ca-662d-45b8-8062-d513077296aa')
Chandan Kumarc125fd12017-11-15 19:41:01 +0530110 @utils.requires_ext(extension="project-id", service="network")
Henry Gessaufa6c78d2016-10-09 19:56:09 -0400111 def test_show_trunk_has_project_id(self):
112 trunk = self._create_trunk_with_network_and_parent(None)
113 body = self._show_trunk(trunk['trunk']['id'])
114 show_trunk = body['trunk']
115 self.assertIn('project_id', show_trunk)
116 self.assertIn('tenant_id', show_trunk)
117 self.assertEqual(self.client.tenant_id, show_trunk['project_id'])
118 self.assertEqual(self.client.tenant_id, show_trunk['tenant_id'])
119
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000120 @decorators.idempotent_id('4ce46c22-a2b6-4659-bc5a-0ef2463cab32')
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700121 def test_create_update_trunk(self):
122 trunk = self._create_trunk_with_network_and_parent(None)
Kevin Benton8f7ddc72017-06-14 15:36:55 -0700123 rev = trunk['trunk']['revision_number']
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700124 trunk_id = trunk['trunk']['id']
Armando Migliaccio71d34702016-08-29 22:50:44 -0700125 res = self._show_trunk(trunk_id)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700126 self.assertTrue(res['trunk']['admin_state_up'])
Kevin Benton8f7ddc72017-06-14 15:36:55 -0700127 self.assertEqual(rev, res['trunk']['revision_number'])
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700128 self.assertEqual("", res['trunk']['name'])
Armando Migliaccio42738312016-08-29 22:04:21 -0700129 self.assertEqual("", res['trunk']['description'])
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700130 res = self.client.update_trunk(
131 trunk_id, name='foo', admin_state_up=False)
132 self.assertFalse(res['trunk']['admin_state_up'])
133 self.assertEqual("foo", res['trunk']['name'])
Kevin Benton8f7ddc72017-06-14 15:36:55 -0700134 self.assertGreater(res['trunk']['revision_number'], rev)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700135 # enable the trunk so that it can be managed
136 self.client.update_trunk(trunk_id, admin_state_up=True)
137
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000138 @decorators.idempotent_id('5ff46c22-a2b6-5559-bc5a-0ef2463cab32')
Armando Migliaccio42738312016-08-29 22:04:21 -0700139 def test_create_update_trunk_with_description(self):
140 trunk = self._create_trunk_with_network_and_parent(
141 None, description="foo description")
142 trunk_id = trunk['trunk']['id']
143 self.assertEqual("foo description", trunk['trunk']['description'])
144 trunk = self.client.update_trunk(trunk_id, description='')
145 self.assertEqual('', trunk['trunk']['description'])
146
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000147 @decorators.idempotent_id('73365f73-bed6-42cd-960b-ec04e0c99d85')
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800148 def test_list_trunks(self):
149 trunk1 = self._create_trunk_with_network_and_parent(None)
150 trunk2 = self._create_trunk_with_network_and_parent(None)
151 expected_trunks = {trunk1['trunk']['id']: trunk1['trunk'],
152 trunk2['trunk']['id']: trunk2['trunk']}
Armando Migliaccio71d34702016-08-29 22:50:44 -0700153 trunk_list = self._list_trunks()['trunks']
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800154 matched_trunks = [x for x in trunk_list if x['id'] in expected_trunks]
155 self.assertEqual(2, len(matched_trunks))
156 for trunk in matched_trunks:
157 self.assertEqual(expected_trunks[trunk['id']], trunk)
158
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000159 @decorators.idempotent_id('bb5fcead-09b5-484a-bbe6-46d1e06d6cc0')
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800160 def test_add_subport(self):
161 trunk = self._create_trunk_with_network_and_parent([])
162 network = self.create_network()
163 port = self.create_port(network)
164 subports = [{'port_id': port['id'],
165 'segmentation_type': 'vlan',
166 'segmentation_id': 2}]
167 self.client.add_subports(trunk['trunk']['id'], subports)
Armando Migliaccio71d34702016-08-29 22:50:44 -0700168 trunk = self._show_trunk(trunk['trunk']['id'])
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800169 observed_subports = trunk['trunk']['sub_ports']
170 self.assertEqual(1, len(observed_subports))
171 created_subport = observed_subports[0]
172 self.assertEqual(subports[0], created_subport)
173
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000174 @decorators.idempotent_id('ee5fcead-1abf-483a-bce6-43d1e06d6aa0')
Armando Migliaccio232642c2016-07-20 16:28:24 -0700175 def test_delete_trunk_with_subport_is_allowed(self):
176 network = self.create_network()
177 port = self.create_port(network)
178 subports = [{'port_id': port['id'],
179 'segmentation_type': 'vlan',
180 'segmentation_id': 2}]
181 trunk = self._create_trunk_with_network_and_parent(subports)
182 self.client.delete_trunk(trunk['trunk']['id'])
183
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000184 @decorators.idempotent_id('96eea398-a03c-4c3e-a99e-864392c2ca53')
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800185 def test_remove_subport(self):
186 subport_parent1 = self.create_port(self.create_network())
187 subport_parent2 = self.create_port(self.create_network())
188 subports = [{'port_id': subport_parent1['id'],
189 'segmentation_type': 'vlan',
190 'segmentation_id': 2},
191 {'port_id': subport_parent2['id'],
192 'segmentation_type': 'vlan',
193 'segmentation_id': 4}]
194 trunk = self._create_trunk_with_network_and_parent(subports)
195 removed_subport = trunk['trunk']['sub_ports'][0]
196 expected_subport = None
197
198 for subport in subports:
199 if subport['port_id'] != removed_subport['port_id']:
200 expected_subport = subport
201 break
202
203 # Remove the subport and validate PUT response
204 res = self.client.remove_subports(trunk['trunk']['id'],
205 [removed_subport])
206 self.assertEqual(1, len(res['sub_ports']))
207 self.assertEqual(expected_subport, res['sub_ports'][0])
208
209 # Validate the results of a subport list
Armando Migliaccio71d34702016-08-29 22:50:44 -0700210 trunk = self._show_trunk(trunk['trunk']['id'])
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800211 observed_subports = trunk['trunk']['sub_ports']
212 self.assertEqual(1, len(observed_subports))
213 self.assertEqual(expected_subport, observed_subports[0])
214
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000215 @decorators.idempotent_id('bb5fcaad-09b5-484a-dde6-4cd1ea6d6ff0')
Ryan Tidwell9b9be442016-02-18 17:34:43 +0800216 def test_get_subports(self):
217 network = self.create_network()
218 port = self.create_port(network)
219 subports = [{'port_id': port['id'],
220 'segmentation_type': 'vlan',
221 'segmentation_id': 2}]
222 trunk = self._create_trunk_with_network_and_parent(subports)
223 trunk = self.client.get_subports(trunk['trunk']['id'])
224 observed_subports = trunk['sub_ports']
225 self.assertEqual(1, len(observed_subports))
Armando Migliaccio57581c62016-07-01 10:13:19 -0700226
227
Armando Migliaccio7f84c422017-02-21 18:43:38 -0800228class TrunkTestInheritJSONBase(TrunkTestJSONBase):
229
230 required_extensions = ['provider', 'trunk']
231
232 @classmethod
233 def skip_checks(cls):
234 super(TrunkTestInheritJSONBase, cls).skip_checks()
lianghaob7380842017-04-18 15:07:01 +0800235 if ("vlan" not in
236 config.CONF.neutron_plugin_options.available_type_drivers):
237 raise cls.skipException("VLAN type_driver is not enabled")
Armando Migliaccio7f84c422017-02-21 18:43:38 -0800238 if not config.CONF.neutron_plugin_options.provider_vlans:
239 raise cls.skipException("No provider VLAN networks available")
240
241 def create_provider_network(self):
242 foo_net = config.CONF.neutron_plugin_options.provider_vlans[0]
Chandan Kumarc125fd12017-11-15 19:41:01 +0530243 post_body = {'network_name': data_utils.rand_name('vlan-net'),
Armando Migliaccio7f84c422017-02-21 18:43:38 -0800244 'provider:network_type': 'vlan',
245 'provider:physical_network': foo_net}
246 return self.create_shared_network(**post_body)
247
248 @decorators.idempotent_id('0f05d98e-41f5-4629-dada-9aee269c9602')
249 def test_add_subport(self):
250 trunk_network = self.create_provider_network()
251 trunk_port = self.create_port(trunk_network)
252 subport_networks = [
253 self.create_provider_network(),
254 self.create_provider_network(),
255 ]
256 subport1 = self.create_port(subport_networks[0])
257 subport2 = self.create_port(subport_networks[1])
258 subports = [{'port_id': subport1['id'],
259 'segmentation_type': 'inherit',
260 'segmentation_id': subport1['id']},
261 {'port_id': subport2['id'],
262 'segmentation_type': 'inherit',
263 'segmentation_id': subport2['id']}]
264 trunk = self.client.create_trunk(trunk_port['id'], subports)['trunk']
265 self.trunks.append(trunk)
266 # Validate that subport got segmentation details from the network
267 for i in range(2):
268 self.assertEqual(subport_networks[i]['provider:network_type'],
269 trunk['sub_ports'][i]['segmentation_type'])
270 self.assertEqual(subport_networks[i]['provider:segmentation_id'],
271 trunk['sub_ports'][i]['segmentation_id'])
272
273
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200274class TrunkTestMtusJSONBase(TrunkTestJSONBase):
275
276 required_extensions = ['provider', 'trunk']
277
278 @classmethod
279 def skip_checks(cls):
280 super(TrunkTestMtusJSONBase, cls).skip_checks()
Jakub Libosvar73520542017-12-19 17:46:42 +0000281 if not all(cls.is_type_driver_enabled(t) for t in ['gre', 'vxlan']):
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200282 msg = "Either vxlan or gre type driver not enabled."
283 raise cls.skipException(msg)
284
285 def setUp(self):
286 super(TrunkTestMtusJSONBase, self).setUp()
287
288 # VXLAN autocomputed MTU (1450) is smaller than that of GRE (1458)
Chandan Kumarc125fd12017-11-15 19:41:01 +0530289 vxlan_kwargs = {'network_name': data_utils.rand_name('vxlan-net'),
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200290 'provider:network_type': 'vxlan'}
291 self.smaller_mtu_net = self.create_shared_network(**vxlan_kwargs)
292
Chandan Kumarc125fd12017-11-15 19:41:01 +0530293 gre_kwargs = {'network_name': data_utils.rand_name('gre-net'),
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200294 'provider:network_type': 'gre'}
295 self.larger_mtu_net = self.create_shared_network(**gre_kwargs)
296
297 self.smaller_mtu_port = self.create_port(self.smaller_mtu_net)
298 self.smaller_mtu_port_2 = self.create_port(self.smaller_mtu_net)
299 self.larger_mtu_port = self.create_port(self.larger_mtu_net)
300
301
302class TrunkTestMtusJSON(TrunkTestMtusJSONBase):
303
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000304 @decorators.idempotent_id('0f05d98e-41f5-4629-ac29-9aee269c9602')
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200305 def test_create_trunk_with_mtu_greater_than_subport(self):
306 subports = [{'port_id': self.smaller_mtu_port['id'],
307 'segmentation_type': 'vlan',
308 'segmentation_id': 2}]
309
310 trunk = self.client.create_trunk(self.larger_mtu_port['id'], subports)
311 self.trunks.append(trunk['trunk'])
312
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000313 @decorators.idempotent_id('2004c5c6-e557-4c43-8100-c820ad4953e8')
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200314 def test_add_subport_with_mtu_smaller_than_trunk(self):
315 subports = [{'port_id': self.smaller_mtu_port['id'],
316 'segmentation_type': 'vlan',
317 'segmentation_id': 2}]
318
319 trunk = self.client.create_trunk(self.larger_mtu_port['id'], None)
320 self.trunks.append(trunk['trunk'])
321
322 self.client.add_subports(trunk['trunk']['id'], subports)
323
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000324 @decorators.idempotent_id('22725101-f4bc-4e00-84ec-4e02cd7e0500')
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200325 def test_create_trunk_with_mtu_equal_to_subport(self):
326 subports = [{'port_id': self.smaller_mtu_port['id'],
327 'segmentation_type': 'vlan',
328 'segmentation_id': 2}]
329
330 trunk = self.client.create_trunk(self.smaller_mtu_port_2['id'],
331 subports)
332 self.trunks.append(trunk['trunk'])
333
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000334 @decorators.idempotent_id('175b05ae-66ad-44c7-857a-a12d16f1058f')
Hynek Mlnarikc5106762016-09-01 11:47:31 +0200335 def test_add_subport_with_mtu_equal_to_trunk(self):
336 subports = [{'port_id': self.smaller_mtu_port['id'],
337 'segmentation_type': 'vlan',
338 'segmentation_id': 2}]
339
340 trunk = self.client.create_trunk(self.smaller_mtu_port_2['id'], None)
341 self.trunks.append(trunk['trunk'])
342
343 self.client.add_subports(trunk['trunk']['id'], subports)
344
345
Armando Migliaccio57581c62016-07-01 10:13:19 -0700346class TrunksSearchCriteriaTest(base.BaseSearchCriteriaTest):
347
Jakub Libosvar1982aa12017-05-30 11:15:33 +0000348 required_extensions = ['trunk']
Armando Migliaccio57581c62016-07-01 10:13:19 -0700349 resource = 'trunk'
Armando Migliaccio57581c62016-07-01 10:13:19 -0700350
351 @classmethod
352 def resource_setup(cls):
353 super(TrunksSearchCriteriaTest, cls).resource_setup()
Armando Migliacciod26a2742016-07-13 08:57:50 -0700354 cls.trunks = []
Armando Migliaccio57581c62016-07-01 10:13:19 -0700355 net = cls.create_network(network_name='trunk-search-test-net')
356 for name in cls.resource_names:
357 parent_port = cls.create_port(net)
Armando Migliaccio89a24f12016-07-12 11:59:02 -0700358 trunk = cls.client.create_trunk(parent_port['id'], [], name=name)
Armando Migliacciod26a2742016-07-13 08:57:50 -0700359 cls.trunks.append(trunk['trunk'])
360
361 @classmethod
362 def resource_cleanup(cls):
363 trunks_cleanup(cls.client, cls.trunks)
364 super(TrunksSearchCriteriaTest, cls).resource_cleanup()
Armando Migliaccio57581c62016-07-01 10:13:19 -0700365
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000366 @decorators.idempotent_id('fab73df4-960a-4ae3-87d3-60992b8d3e2d')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700367 def test_list_sorts_asc(self):
368 self._test_list_sorts_asc()
369
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000370 @decorators.idempotent_id('a426671d-7270-430f-82ff-8f33eec93010')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700371 def test_list_sorts_desc(self):
372 self._test_list_sorts_desc()
373
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000374 @decorators.idempotent_id('b202fdc8-6616-45df-b6a0-463932de6f94')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700375 def test_list_pagination(self):
376 self._test_list_pagination()
377
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000378 @decorators.idempotent_id('c4723b8e-8186-4b9a-bf9e-57519967e048')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700379 def test_list_pagination_with_marker(self):
380 self._test_list_pagination_with_marker()
381
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000382 @decorators.idempotent_id('dcd02a7a-f07e-4d5e-b0ca-b58e48927a9b')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700383 def test_list_pagination_with_href_links(self):
384 self._test_list_pagination_with_href_links()
385
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000386 @decorators.idempotent_id('eafe7024-77ab-4cfe-824b-0b2bf4217727')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700387 def test_list_no_pagination_limit_0(self):
388 self._test_list_no_pagination_limit_0()
389
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000390 @decorators.idempotent_id('f8857391-dc44-40cc-89b7-2800402e03ce')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700391 def test_list_pagination_page_reverse_asc(self):
392 self._test_list_pagination_page_reverse_asc()
393
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000394 @decorators.idempotent_id('ae51e9c9-ceae-4ec0-afd4-147569247699')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700395 def test_list_pagination_page_reverse_desc(self):
396 self._test_list_pagination_page_reverse_desc()
397
Sławek Kapłońskic0caa2e2017-02-25 10:11:32 +0000398 @decorators.idempotent_id('b4293e59-d794-4a93-be09-38667199ef68')
Armando Migliaccio57581c62016-07-01 10:13:19 -0700399 def test_list_pagination_page_reverse_with_href_links(self):
400 self._test_list_pagination_page_reverse_with_href_links()