1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
# 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 uuid
from openstack.network.v2 import subnet_pool as _subnet_pool
from openstack.tests.functional import base
class TestSubnetPool(base.BaseFunctionalTest):
SUBNET_POOL_NAME = uuid.uuid4().hex
SUBNET_POOL_NAME_UPDATED = uuid.uuid4().hex
SUBNET_POOL_ID = None
MINIMUM_PREFIX_LENGTH = 8
DEFAULT_PREFIX_LENGTH = 24
MAXIMUM_PREFIX_LENGTH = 32
DEFAULT_QUOTA = 24
IS_SHARED = False
IP_VERSION = 4
PREFIXES = ['10.100.0.0/24', '10.101.0.0/24']
@classmethod
def setUpClass(cls):
super(TestSubnetPool, cls).setUpClass()
subnet_pool = cls.conn.network.create_subnet_pool(
name=cls.SUBNET_POOL_NAME,
min_prefixlen=cls.MINIMUM_PREFIX_LENGTH,
default_prefixlen=cls.DEFAULT_PREFIX_LENGTH,
max_prefixlen=cls.MAXIMUM_PREFIX_LENGTH,
default_quota=cls.DEFAULT_QUOTA,
shared=cls.IS_SHARED,
prefixes=cls.PREFIXES)
assert isinstance(subnet_pool, _subnet_pool.SubnetPool)
cls.assertIs(cls.SUBNET_POOL_NAME, subnet_pool.name)
cls.SUBNET_POOL_ID = subnet_pool.id
@classmethod
def tearDownClass(cls):
sot = cls.conn.network.delete_subnet_pool(cls.SUBNET_POOL_ID)
cls.assertIs(None, sot)
def test_find(self):
sot = self.conn.network.find_subnet_pool(self.SUBNET_POOL_NAME)
self.assertEqual(self.SUBNET_POOL_ID, sot.id)
def test_get(self):
sot = self.conn.network.get_subnet_pool(self.SUBNET_POOL_ID)
self.assertEqual(self.SUBNET_POOL_NAME, sot.name)
self.assertEqual(self.MINIMUM_PREFIX_LENGTH,
sot.minimum_prefix_length)
self.assertEqual(self.DEFAULT_PREFIX_LENGTH,
sot.default_prefix_length)
self.assertEqual(self.MAXIMUM_PREFIX_LENGTH,
sot.maximum_prefix_length)
self.assertEqual(self.DEFAULT_QUOTA, sot.default_quota)
self.assertEqual(self.IS_SHARED, sot.is_shared)
self.assertEqual(self.IP_VERSION, sot.ip_version)
self.assertEqual(self.PREFIXES, sot.prefixes)
def test_list(self):
names = [o.name for o in self.conn.network.subnet_pools()]
self.assertIn(self.SUBNET_POOL_NAME, names)
def test_update(self):
sot = self.conn.network.update_subnet_pool(
self.SUBNET_POOL_ID,
name=self.SUBNET_POOL_NAME_UPDATED)
self.assertEqual(self.SUBNET_POOL_NAME_UPDATED, sot.name)
|