As noted in I7aea99d7c1818b8edcda41ba4eaa062a8ea069eb, nova is working on removing the nova-network only compute REST APIs in the Rocky release, which means any requests to those APIs after Queens will result in a 410 response, regardless of microversion or whether or not neutron is being used. The os-floating-ips-bulk API is being removed in nova change I89d081108b398d8efba9636279088c61349b21e6. As a result, os-floating-ips-bulk tests will no longer works against Rocky+ versions of nova. Skip this test using the check added in the previous change. Related to blueprint remove-nova-network Change-Id: I8c60310cd5d1795b4493ab4c113d614d2208f615
86 lines
3.7 KiB
Python
86 lines
3.7 KiB
Python
# Copyright 2014 NEC Technologies India Ltd.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import netaddr
|
|
|
|
from tempest.api.compute import base
|
|
from tempest.common import utils
|
|
from tempest import config
|
|
from tempest.lib.common.utils import test_utils
|
|
from tempest.lib import decorators
|
|
from tempest.lib import exceptions
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
# TODO(stephenfin): Remove this test class once the nova queens branch goes
|
|
# into extended maintenance mode.
|
|
class FloatingIPsBulkAdminTestJSON(base.BaseV2ComputeAdminTest):
|
|
"""Tests Floating IPs Bulk APIs that require admin privileges.
|
|
|
|
API documentation - http://docs.openstack.org/api/openstack-compute/2/
|
|
content/ext-os-floating-ips-bulk.html
|
|
"""
|
|
max_microversion = '2.35'
|
|
depends_on_nova_network = True
|
|
|
|
@classmethod
|
|
def setup_clients(cls):
|
|
super(FloatingIPsBulkAdminTestJSON, cls).setup_clients()
|
|
cls.client = cls.os_admin.floating_ips_bulk_client
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(FloatingIPsBulkAdminTestJSON, cls).resource_setup()
|
|
cls.ip_range = CONF.validation.floating_ip_range
|
|
cls.verify_unallocated_floating_ip_range(cls.ip_range)
|
|
|
|
@classmethod
|
|
def verify_unallocated_floating_ip_range(cls, ip_range):
|
|
# Verify whether configure floating IP range is not already allocated.
|
|
body = cls.client.list_floating_ips_bulk()['floating_ip_info']
|
|
allocated_ips_list = map(lambda x: x['address'], body)
|
|
for ip_addr in netaddr.IPNetwork(ip_range).iter_hosts():
|
|
if str(ip_addr) in allocated_ips_list:
|
|
msg = ("Configured unallocated floating IP range is already "
|
|
"allocated. Configure the correct unallocated range "
|
|
"as 'floating_ip_range'")
|
|
raise exceptions.InvalidConfiguration(msg)
|
|
return
|
|
|
|
@decorators.idempotent_id('2c8f145f-8012-4cb8-ac7e-95a587f0e4ab')
|
|
@utils.services('network')
|
|
def test_create_list_delete_floating_ips_bulk(self):
|
|
# Create, List and delete the Floating IPs Bulk
|
|
pool = 'test_pool'
|
|
# NOTE(GMann): Reserving the IP range but those are not attached
|
|
# anywhere. Using the below mentioned interface which is not ever
|
|
# expected to be used. Clean Up has been done for created IP range
|
|
interface = 'eth0'
|
|
body = (self.client.create_floating_ips_bulk(self.ip_range,
|
|
pool,
|
|
interface)
|
|
['floating_ips_bulk_create'])
|
|
self.addCleanup(test_utils.call_and_ignore_notfound_exc,
|
|
self.client.delete_floating_ips_bulk, self.ip_range)
|
|
self.assertEqual(self.ip_range, body['ip_range'])
|
|
ips_list = self.client.list_floating_ips_bulk()['floating_ip_info']
|
|
self.assertNotEmpty(ips_list)
|
|
for ip in netaddr.IPNetwork(self.ip_range).iter_hosts():
|
|
self.assertIn(str(ip), map(lambda x: x['address'], ips_list))
|
|
body = (self.client.delete_floating_ips_bulk(self.ip_range)
|
|
['floating_ips_bulk_delete'])
|
|
self.assertEqual(self.ip_range, body)
|