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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# 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 random
from openstack import connection
from openstack import exceptions
from openstack.tests.functional import base
from openstack import utils
class TestZone(base.BaseFunctionalTest):
def setUp(self):
super().setUp()
self.require_service('dns')
self.conn = connection.from_config(cloud_name=base.TEST_CLOUD_NAME)
# Note: zone deletion is not an immediate operation, so each time
# chose a new zone name for a test
# getUniqueString is not guaranteed to return unique string between
# different tests of the same class.
self.ZONE_NAME = f'example-{random.randint(1, 10000)}.org.'
self.zone = self.conn.dns.create_zone(
name=self.ZONE_NAME,
email='joe@example.org',
type='PRIMARY',
ttl=7200,
description='example zone',
)
self.addCleanup(self.conn.dns.delete_zone, self.zone)
def test_get_zone(self):
zone = self.conn.dns.get_zone(self.zone)
self.assertEqual(self.zone, zone)
def test_list_zones(self):
names = [f.name for f in self.conn.dns.zones()]
self.assertIn(self.ZONE_NAME, names)
def test_update_zone(self):
current_ttl = self.conn.dns.get_zone(self.zone)['ttl']
self.conn.dns.update_zone(self.zone, ttl=current_ttl + 1)
updated_zone_ttl = self.conn.dns.get_zone(self.zone)['ttl']
self.assertEqual(
current_ttl + 1,
updated_zone_ttl,
f'Failed, updated TTL value is:{updated_zone_ttl} instead of expected:{current_ttl + 1}',
)
def test_create_rs(self):
zone = self.conn.dns.get_zone(self.zone)
self.assertIsNotNone(
self.conn.dns.create_recordset(
zone=zone,
name=f'www.{zone.name}',
type='A',
description='Example zone rec',
ttl=3600,
records=['192.168.1.1'],
)
)
def test_delete_zone_with_shares(self):
# Make sure the API under test has shared zones support
if not utils.supports_version(self.conn.dns, '2.1'):
self.skipTest(
'Designate API version does not support shared zones.'
)
zone_name = f'example-{random.randint(1, 10000)}.org.'
zone = self.conn.dns.create_zone(
name=zone_name,
email='joe@example.org',
type='PRIMARY',
ttl=7200,
description='example zone',
)
self.addCleanup(self.conn.dns.delete_zone, zone)
demo_project_id = self.operator_cloud.get_project('demo')['id']
zone_share = self.conn.dns.create_zone_share(
zone, target_project_id=demo_project_id
)
self.addCleanup(self.conn.dns.delete_zone_share, zone, zone_share)
# Test that we cannot delete a zone with shares
self.assertRaises(
exceptions.BadRequestException, self.conn.dns.delete_zone, zone
)
self.conn.dns.delete_zone(zone, delete_shares=True)
|