cf8322e544
Creates a new folder 'tempest' under 'designate/contrib' as a placeholder for Designate API tests. This submission implements CRUD operations on 'domains', 'records' and 'servers' of Designate Api. Adds related JSON supporting methods in client files 'domains_client.py', 'records_client.py', and 'server_client.py' Also implemented schema validation for all the operations under 'domains.py', 'parameter_types.py', 'records.py', 'servers.py' files. Modified 'tempest.conf.sample', 'config.py' , and 'clients.py' to add parameters for enabling designate service. Change-Id: I5fcac06200ce534a9cddf1e7ed9393ae5124a681
74 lines
2.9 KiB
Python
74 lines
2.9 KiB
Python
# Copyright 2014 Hewlett-Packard Development Company, L.P
|
|
# 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.
|
|
|
|
from tempest.api.dns import base
|
|
from tempest.common.utils import data_utils
|
|
from tempest import exceptions
|
|
from tempest import test
|
|
|
|
|
|
class DnsDomainsTest(base.BaseDnsTest):
|
|
_interface = 'json'
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(DnsDomainsTest, cls).setUpClass()
|
|
cls.client = cls.dns_domains_client
|
|
cls.setup_domains = list()
|
|
for i in range(2):
|
|
name = data_utils.rand_name('domain') + '.com.'
|
|
email = data_utils.rand_name('dns') + '@testmail.com'
|
|
_, domain = cls.client.create_domain(name, email)
|
|
cls.setup_domains.append(domain)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
for domain in cls.setup_domains:
|
|
cls.client.delete_domain(domain['id'])
|
|
super(DnsDomainsTest, cls).tearDownClass()
|
|
|
|
def _delete_domain(self, domain_id):
|
|
self.client.delete_domain(domain_id)
|
|
self.assertRaises(exceptions.NotFound,
|
|
self.client.get_domain, domain_id)
|
|
|
|
@test.attr(type='gate')
|
|
def test_list_domains(self):
|
|
# Get a list of domains
|
|
_, domains = self.client.list_domains()
|
|
# Verify domains created in setup class are in the list
|
|
for domain in self.setup_domains:
|
|
self.assertIn(domain['id'], map(lambda x: x['id'], domains))
|
|
|
|
@test.attr(type='smoke')
|
|
def test_create_update_get_domain(self):
|
|
# Create Domain
|
|
d_name = data_utils.rand_name('domain') + '.com.'
|
|
d_email = data_utils.rand_name('dns') + '@testmail.com'
|
|
_, domain = self.client.create_domain(name=d_name, email=d_email)
|
|
self.addCleanup(self._delete_domain, domain['id'])
|
|
self.assertEqual(d_name, domain['name'])
|
|
self.assertEqual(d_email, domain['email'])
|
|
# Update Domain with ttl
|
|
d_ttl = 3600
|
|
_, update_domain = self.client.update_domain(domain['id'],
|
|
ttl=d_ttl)
|
|
self.assertEqual(d_ttl, update_domain['ttl'])
|
|
# Get the details of Domain
|
|
_, get_domain = self.client.get_domain(domain['id'])
|
|
self.assertEqual(update_domain['name'], get_domain['name'])
|
|
self.assertEqual(update_domain['email'], get_domain['email'])
|
|
self.assertEqual(update_domain['ttl'], get_domain['ttl'])
|