- implement CIDR management - workaround neutron client bug listing subnets Change-Id: I4619999de1d5c459af4338f93a7bc7bea9406b8bchanges/70/665870/2
parent
8a7b39d050
commit
d9e9bcab86
@ -0,0 +1,99 @@
|
||||
# Copyright 2019 Red Hat
|
||||
#
|
||||
# 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.
|
||||
from __future__ import absolute_import
|
||||
|
||||
import netaddr
|
||||
|
||||
import tobiko
|
||||
|
||||
from tobiko.openstack.neutron import _client
|
||||
|
||||
|
||||
def new_ipv4_cidr():
|
||||
return tobiko.setup_fixture(IPv4CIDRGeneratorFixture).new_cidr()
|
||||
|
||||
|
||||
def new_ipv6_cidr():
|
||||
return tobiko.setup_fixture(IPv6CIDRGeneratorFixture).new_cidr()
|
||||
|
||||
|
||||
class CIDRGeneratorFixture(tobiko.SharedFixture):
|
||||
|
||||
cidr = None
|
||||
prefixlen = None
|
||||
client = None
|
||||
config = None
|
||||
cidr_generator = None
|
||||
subnet_cidrs = None
|
||||
|
||||
def __init__(self, cidr=None, prefixlen=None, client=None):
|
||||
super(CIDRGeneratorFixture, self).__init__()
|
||||
if cidr:
|
||||
self.cidr = cidr
|
||||
if prefixlen:
|
||||
self.prefixlen = prefixlen
|
||||
if client:
|
||||
self.client = client
|
||||
|
||||
def setup_fixture(self):
|
||||
self.setup_config()
|
||||
self.setup_subnet_cidrs()
|
||||
self.setup_cidr_generator()
|
||||
|
||||
def setup_config(self):
|
||||
from tobiko import config
|
||||
CONF = config.CONF
|
||||
self.config = CONF.tobiko.neutron
|
||||
|
||||
def setup_subnet_cidrs(self):
|
||||
client = _client.neutron_client(self.client)
|
||||
self.subnet_cidrs = set(_client.list_subnet_cidrs(client=client))
|
||||
|
||||
def setup_cidr_generator(self):
|
||||
cidr = netaddr.IPNetwork(self.cidr)
|
||||
prefixlen = int(self.prefixlen)
|
||||
self.cidr_generator = cidr.subnet(prefixlen)
|
||||
|
||||
def new_cidr(self):
|
||||
for cidr in self.cidr_generator:
|
||||
if cidr not in self.subnet_cidrs:
|
||||
return cidr
|
||||
raise NoSuchCIDRLeft(cidr=self.cidr, prefixlen=self.prefixlen)
|
||||
|
||||
|
||||
class IPv4CIDRGeneratorFixture(CIDRGeneratorFixture):
|
||||
|
||||
@property
|
||||
def cidr(self):
|
||||
return self.config.ipv4_cidr
|
||||
|
||||
@property
|
||||
def prefixlen(self):
|
||||
return self.config.ipv4_prefixlen
|
||||
|
||||
|
||||
class IPv6CIDRGeneratorFixture(CIDRGeneratorFixture):
|
||||
|
||||
@property
|
||||
def cidr(self):
|
||||
return self.config.ipv6_cidr
|
||||
|
||||
@property
|
||||
def prefixlen(self):
|
||||
return self.config.ipv6_prefixlen
|
||||
|
||||
|
||||
class NoSuchCIDRLeft(tobiko.TobikoException):
|
||||
message = ("No such subnet CIDR left "
|
||||
"(CIDR={cidr!s}, prefixlen={prefixlen!s})")
|
Loading…
Reference in new issue