def _get_domain(self, domain_id): query = self.session.query(models.Domain) try: domain = query.filter_by(designate_id=domain_id).one() except sqlalchemy_exceptions.NoResultFound: raise exceptions.DomainNotFound('No domain found') except sqlalchemy_exceptions.MultipleResultsFound: raise exceptions.DomainNotFound('Too many domains found') else: return domain
def _find_domains(self, context, criterion, one=False, marker=None, limit=None, sort_key=None, sort_dir=None): try: return self._find(models.Domain, context, criterion, one=one, marker=marker, limit=limit, sort_key=sort_key, sort_dir=sort_dir) except exceptions.NotFound: raise exceptions.DomainNotFound()
class ApiV2ZonesTest(ApiV2TestCase): __test__ = True def setUp(self): super(ApiV2ZonesTest, self).setUp() # Create a server self.create_server() def test_missing_accept(self): self.client.get('/zones/123', status=400) def test_bad_accept(self): self.client.get('/zones/123', headers={'Accept': 'test/goat'}, status=406) def test_missing_content_type(self): self.client.post('/zones', status=415) def test_bad_content_type(self): self.client.post('/zones', headers={'Content-type': 'test/goat'}, status=415) def test_create_zone(self): # Create a zone fixture = self.get_domain_fixture(0) response = self.client.post_json('/zones/', {'zone': fixture}) # Check the headers are what we expect self.assertEqual(201, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zone', response.json) self.assertIn('links', response.json['zone']) self.assertIn('self', response.json['zone']['links']) # Check the values returned are what we expect self.assertIn('id', response.json['zone']) self.assertIn('created_at', response.json['zone']) self.assertEqual('ACTIVE', response.json['zone']['status']) self.assertIsNone(response.json['zone']['updated_at']) for k in fixture: self.assertEqual(fixture[k], response.json['zone'][k]) def test_create_zone_validation(self): # NOTE: The schemas should be tested separatly to the API. So we # don't need to test every variation via the API itself. # Fetch a fixture fixture = self.get_domain_fixture(0) # Add a junk field to the wrapper body = {'zone': fixture, 'junk': 'Junk Field'} # Ensure it fails with a 400 response = self.client.post_json('/zones/', body, status=400) self.assertEqual(400, response.status_int) # Add a junk field to the body fixture['junk'] = 'Junk Field' # Ensure it fails with a 400 body = {'zone': fixture} self.client.post_json('/zones/', body, status=400) @patch.object(central_service.Service, 'create_domain', side_effect=rpc_common.Timeout()) def test_create_zone_timeout(self, _): fixture = self.get_domain_fixture(0) body = {'zone': fixture} self.client.post_json('/zones/', body, status=504) @patch.object(central_service.Service, 'create_domain', side_effect=exceptions.DuplicateDomain()) def test_create_zone_duplicate(self, _): fixture = self.get_domain_fixture(0) body = {'zone': fixture} self.client.post_json('/zones/', body, status=409) def test_get_zones(self): response = self.client.get('/zones/') # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zones', response.json) self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # We should start with 0 zones self.assertEqual(0, len(response.json['zones'])) # Test with 1 zone self.create_domain() response = self.client.get('/zones/') self.assertIn('zones', response.json) self.assertEqual(1, len(response.json['zones'])) # test with 2 zones self.create_domain(fixture=1) response = self.client.get('/zones/') self.assertIn('zones', response.json) self.assertEqual(2, len(response.json['zones'])) @patch.object(central_service.Service, 'find_domains', side_effect=rpc_common.Timeout()) def test_get_zones_timeout(self, _): self.client.get('/zones/', status=504) def test_get_zone(self): # Create a zone zone = self.create_domain() response = self.client.get('/zones/%s' % zone['id'], headers=[('Accept', 'application/json')]) # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zone', response.json) self.assertIn('links', response.json['zone']) self.assertIn('self', response.json['zone']['links']) # Check the values returned are what we expect self.assertIn('id', response.json['zone']) self.assertIn('created_at', response.json['zone']) self.assertEqual('ACTIVE', response.json['zone']['status']) self.assertIsNone(response.json['zone']['updated_at']) self.assertEqual(zone['name'], response.json['zone']['name']) self.assertEqual(zone['email'], response.json['zone']['email']) @patch.object(central_service.Service, 'get_domain', side_effect=rpc_common.Timeout()) def test_get_zone_timeout(self, _): self.client.get('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', headers={'Accept': 'application/json'}, status=504) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DomainNotFound()) def test_get_zone_missing(self, _): self.client.get('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', headers={'Accept': 'application/json'}, status=404) def test_get_zone_invalid_id(self): self.skip('We don\'t guard against this in APIv2 yet') # The letter "G" is not valid in a UUID self.client.get('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff9GG', headers={'Accept': 'application/json'}, status=404) # Badly formed UUID self.client.get('/zones/2fdadfb1cf964259ac6bbb7b6d2ff9GG', headers={'Accept': 'application/json'}, status=404) # Integer self.client.get('/zones/12345', headers={'Accept': 'application/json'}, status=404) def test_update_zone(self): # Create a zone zone = self.create_domain() # Prepare an update body body = {'zone': {'email': 'prefix-%s' % zone['email']}} response = self.client.patch_json('/zones/%s' % zone['id'], body, status=200) # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zone', response.json) self.assertIn('links', response.json['zone']) self.assertIn('self', response.json['zone']['links']) self.assertIn('status', response.json['zone']) # Check the values returned are what we expect self.assertIn('id', response.json['zone']) self.assertIsNotNone(response.json['zone']['updated_at']) self.assertEqual('prefix-%s' % zone['email'], response.json['zone']['email']) def test_update_zone_validation(self): # NOTE: The schemas should be tested separatly to the API. So we # don't need to test every variation via the API itself. # Create a zone zone = self.create_domain() # Prepare an update body with junk in the wrapper body = { 'zone': { 'email': 'prefix-%s' % zone['email'] }, 'junk': 'Junk Field' } # Ensure it fails with a 400 self.client.patch_json('/zones/%s' % zone['id'], body, status=400) # Prepare an update body with junk in the body body = { 'zone': { 'email': 'prefix-%s' % zone['email'], 'junk': 'Junk Field' } } # Ensure it fails with a 400 self.client.patch_json('/zones/%s' % zone['id'], body, status=400) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DuplicateDomain()) def test_update_zone_duplicate(self, _): # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} # Ensure it fails with a 409 self.client.patch_json('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', body, status=409) @patch.object(central_service.Service, 'get_domain', side_effect=rpc_common.Timeout()) def test_update_zone_timeout(self, _): # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} # Ensure it fails with a 504 self.client.patch_json('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', body, status=504) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DomainNotFound()) def test_update_zone_missing(self, _): # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} # Ensure it fails with a 404 self.client.patch_json('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', body, status=404) def test_update_zone_invalid_id(self): self.skip('We don\'t guard against this in APIv2 yet') # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} # The letter "G" is not valid in a UUID self.client.patch_json('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff9GG', body, status=404) # Badly formed UUID self.client.patch_json('/zones/2fdadfb1cf964259ac6bbb7b6d2ff980', body, status=404) # Integer self.client.patch_json('/zones/12345', body, status=404) def test_delete_zone(self): zone = self.create_domain() self.client.delete('/zones/%s' % zone['id'], status=204) @patch.object(central_service.Service, 'delete_domain', side_effect=rpc_common.Timeout()) def test_delete_zone_timeout(self, _): self.client.delete('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', status=504) @patch.object(central_service.Service, 'delete_domain', side_effect=exceptions.DomainNotFound()) def test_delete_zone_missing(self, _): self.client.delete('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980', status=404) def test_delete_zone_invalid_id(self): self.skip('We don\'t guard against this in APIv2 yet') # The letter "G" is not valid in a UUID self.client.delete('/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff9GG', status=404) # Badly formed UUID self.client.delete('/zones/2fdadfb1cf964259ac6bbb7b6d2ff980', status=404) # Integer self.client.delete('/zones/12345', status=404) # Zone import/export def test_missing_origin(self): self.client.post('/zones', self.get_zonefile_fixture(variant='noorigin'), headers={'Content-type': 'text/dns'}, status=400) def test_missing_soa(self): self.client.post('/zones', self.get_zonefile_fixture(variant='nosoa'), headers={'Content-type': 'text/dns'}, status=400) def test_malformed_zonefile(self): self.client.post('/zones', self.get_zonefile_fixture(variant='malformed'), headers={'Content-type': 'text/dns'}, status=400) def test_import_export(self): # Since v2 doesn't support getting records, import and export the # fixture, making sure they're the same according to dnspython post_response = self.client.post('/zones', self.get_zonefile_fixture(), headers={'Content-type': 'text/dns'}) get_response = self.client.get('/zones/%s' % post_response.json['zone']['id'], headers={'Accept': 'text/dns'}) exported_zonefile = get_response.body imported = dnszone.from_text(self.get_zonefile_fixture()) exported = dnszone.from_text(exported_zonefile) # Compare SOA emails, since zone comparison takes care of origin imported_soa = imported.get_rdataset(imported.origin, 'SOA') imported_email = imported_soa[0].rname.to_text() exported_soa = exported.get_rdataset(exported.origin, 'SOA') exported_email = exported_soa[0].rname.to_text() self.assertEqual(imported_email, exported_email) # Delete SOAs since they have, at the very least, different serials, # and dnspython considers that to be not equal. imported.delete_rdataset(imported.origin, 'SOA') exported.delete_rdataset(exported.origin, 'SOA') # Delete non-delegation NS, since they won't be the same imported.delete_rdataset(imported.origin, 'NS') exported.delete_rdataset(exported.origin, 'NS') self.assertEqual(imported, exported)
class ApiV2ZonesTest(ApiV2TestCase): def setUp(self): super(ApiV2ZonesTest, self).setUp() # Create the default TLDs self.create_default_tlds() def test_create_zone(self): # Create a zone fixture = self.get_domain_fixture(fixture=0) response = self.client.post_json('/zones/', fixture) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # Check the values returned are what we expect self.assertIn('id', response.json) self.assertIn('created_at', response.json) self.assertEqual('PENDING', response.json['status']) self.assertEqual('PRIMARY', response.json['type']) self.assertEqual([], response.json['masters']) self.assertIsNone(response.json['updated_at']) for k in fixture: self.assertEqual(fixture[k], response.json[k]) def test_create_zone_no_type(self): # Create a zone fixture = self.get_domain_fixture(fixture=0) del fixture['type'] response = self.client.post_json('/zones/', fixture) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # Check the values returned are what we expect self.assertIn('id', response.json) self.assertIn('created_at', response.json) self.assertEqual('PENDING', response.json['status']) self.assertEqual('PRIMARY', response.json['type']) self.assertEqual([], response.json['masters']) self.assertIsNone(response.json['updated_at']) for k in fixture: self.assertEqual(fixture[k], response.json[k]) def test_create_zone_validation(self): # NOTE: The schemas should be tested separately to the API. So we # don't need to test every variation via the API itself. # Fetch a fixture fixture = self.get_domain_fixture(fixture=0) # Add a junk field to the body fixture['junk'] = 'Junk Field' # Ensure it fails with a 400 body = fixture self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) def test_create_zone_body_validation(self): fixture = self.get_domain_fixture(fixture=0) # Add id to the body fixture['id'] = '2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 400 body = fixture self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) fixture = self.get_domain_fixture(fixture=0) # Add created_at to the body fixture['created_at'] = '2014-03-12T19:07:53.000000' # Ensure it fails with a 400 body = fixture self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) def test_create_zone_invalid_name(self): # Try to create a zone with an invalid name fixture = self.get_domain_fixture(fixture=-1) # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', fixture) @patch.object(central_service.Service, 'create_domain', side_effect=messaging.MessagingTimeout()) def test_create_zone_timeout(self, _): fixture = self.get_domain_fixture(fixture=0) body = fixture self._assert_exception('timeout', 504, self.client.post_json, '/zones/', body) @patch.object(central_service.Service, 'create_domain', side_effect=exceptions.DuplicateDomain()) def test_create_zone_duplicate(self, _): fixture = self.get_domain_fixture(fixture=0) body = fixture self._assert_exception('duplicate_domain', 409, self.client.post_json, '/zones/', body) def test_create_zone_missing_content_type(self): self._assert_exception('unsupported_content_type', 415, self.client.post, '/zones') def test_create_zone_bad_content_type(self): self._assert_exception('unsupported_content_type', 415, self.client.post, '/zones', headers={'Content-type': 'test/goat'}) def test_zone_invalid_url(self): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980/invalid' self._assert_exception('not_found', 404, self.client.get, url, headers={'Accept': 'application/json'}) self._assert_exception('not_found', 404, self.client.patch_json, url) self._assert_exception('not_found', 404, self.client.delete, url) # Pecan returns a 405 for post response = self.client.post(url, status=405) self.assertEqual(405, response.status_int) def test_get_zones(self): response = self.client.get('/zones/') # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zones', response.json) self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # We should start with 0 zones self.assertEqual(0, len(response.json['zones'])) # We should start with 0 zones self.assertEqual(0, len(response.json['zones'])) data = [self.create_domain(name='x-%s.com.' % i) for i in 'abcdefghij'] self._assert_paging(data, '/zones', key='zones') self._assert_invalid_paging(data, '/zones', key='zones') @patch.object(central_service.Service, 'find_domains', side_effect=messaging.MessagingTimeout()) def test_get_zones_timeout(self, _): self._assert_exception('timeout', 504, self.client.get, '/zones/') def test_get_zone(self): # Create a zone zone = self.create_domain() response = self.client.get('/zones/%s' % zone['id'], headers=[('Accept', 'application/json')]) # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # Check the values returned are what we expect self.assertIn('id', response.json) self.assertIn('created_at', response.json) self.assertEqual('PENDING', response.json['status']) self.assertIsNone(response.json['updated_at']) self.assertEqual(zone['name'], response.json['name']) self.assertEqual(zone['email'], response.json['email']) def test_get_zone_invalid_id(self): self._assert_invalid_uuid(self.client.get, '/zones/%s') @patch.object(central_service.Service, 'get_domain', side_effect=messaging.MessagingTimeout()) def test_get_zone_timeout(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('timeout', 504, self.client.get, url, headers={'Accept': 'application/json'}) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DomainNotFound()) def test_get_zone_missing(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('domain_not_found', 404, self.client.get, url, headers={'Accept': 'application/json'}) def test_get_zone_bad_accept(self): url = '/zones/6e2146f3-87bc-4f47-adc5-4df0a5c78218' self.client.get(url, headers={'Accept': 'test/goat'}, status=406) def test_update_zone(self): # Create a zone zone = self.create_domain() # Prepare an update body body = {'email': 'prefix-%s' % zone['email']} response = self.client.patch_json('/zones/%s' % zone['id'], body, status=202) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('links', response.json) self.assertIn('self', response.json['links']) self.assertIn('status', response.json) # Check the values returned are what we expect self.assertIn('id', response.json) self.assertIsNotNone(response.json['updated_at']) self.assertEqual('prefix-%s' % zone['email'], response.json['email']) def test_update_zone_invalid_id(self): self._assert_invalid_uuid(self.client.patch_json, '/zones/%s') def test_update_zone_validation(self): # NOTE: The schemas should be tested separatly to the API. So we # don't need to test every variation via the API itself. # Create a zone zone = self.create_domain() # Prepare an update body with junk in the body body = {'email': 'prefix-%s' % zone['email'], 'junk': 'Junk Field'} url = '/zones/%s' % zone['id'] # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.patch_json, url, body) # Prepare an update body with negative ttl in the body body = {'email': 'prefix-%s' % zone['email'], 'ttl': -20} # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.patch_json, url, body) # Prepare an update body with ttl > maximum (2147483647) in the body body = {'email': 'prefix-%s' % zone['email'], 'ttl': 2147483648} # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.patch_json, url, body) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DuplicateDomain()) def test_update_zone_duplicate(self, _): # Prepare an update body body = {'email': '*****@*****.**'} url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 409 self._assert_exception('duplicate_domain', 409, self.client.patch_json, url, body) @patch.object(central_service.Service, 'get_domain', side_effect=messaging.MessagingTimeout()) def test_update_zone_timeout(self, _): # Prepare an update body body = {'email': '*****@*****.**'} url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 504 self._assert_exception('timeout', 504, self.client.patch_json, url, body) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DomainNotFound()) def test_update_zone_missing(self, _): # Prepare an update body body = {'email': '*****@*****.**'} url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 404 self._assert_exception('domain_not_found', 404, self.client.patch_json, url, body) def test_delete_zone(self): zone = self.create_domain() response = self.client.delete('/zones/%s' % zone['id'], status=202) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) self.assertEqual('DELETE', response.json['action']) self.assertEqual('PENDING', response.json['status']) def test_delete_zone_invalid_id(self): self._assert_invalid_uuid(self.client.delete, '/zones/%s') @patch.object(central_service.Service, 'delete_domain', side_effect=messaging.MessagingTimeout()) def test_delete_zone_timeout(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('timeout', 504, self.client.delete, url) @patch.object(central_service.Service, 'delete_domain', side_effect=exceptions.DomainNotFound()) def test_delete_zone_missing(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('domain_not_found', 404, self.client.delete, url) def test_post_abandon_zone(self): zone = self.create_domain() url = '/zones/%s/tasks/abandon' % zone.id # Ensure that we get permission denied self._assert_exception('forbidden', 403, self.client.post_json, url) # Ensure that abandon zone succeeds with the right policy self.policy({'abandon_domain': '@'}) response = self.client.post_json(url) self.assertEqual(204, response.status_int) def test_get_abandon_zone(self): zone = self.create_domain() url = '/zones/%s/tasks/abandon' % zone.id self._assert_exception('method_not_allowed', 405, self.client.get, url) def test_get_invalid_abandon(self): # This is an invalid endpoint - should return 404 url = '/zones/tasks/abandon' self._assert_exception('not_found', 404, self.client.get, url) def test_get_zone_tasks(self): # This is an invalid endpoint - should return 404 zone = self.create_domain() url = '/zones/%s/tasks' % zone.id self._assert_exception('not_found', 404, self.client.get, url) def test_create_secondary(self): # Create a zone fixture = self.get_domain_fixture('SECONDARY', 0) fixture['masters'] = ["10.0.0.1"] response = self.client.post_json('/zones/', fixture) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # Check the values returned are what we expect self.assertIn('id', response.json) self.assertIn('created_at', response.json) self.assertEqual('PENDING', response.json['status']) self.assertEqual(cfg.CONF['service:central'].managed_resource_email, response.json['email']) self.assertIsNone(response.json['updated_at']) # Zone is not transferred yet self.assertIsNone(response.json['transferred_at']) # Serial defaults to 1 self.assertEqual(response.json['serial'], 1) for k in fixture: self.assertEqual(fixture[k], response.json[k]) def test_create_secondary_no_masters(self): # Create a zone fixture = self.get_domain_fixture('SECONDARY', 0) self._assert_exception('invalid_object', 400, self.client.post_json, '/zones/', fixture) def test_update_secondary(self): # Create a zone fixture = self.get_domain_fixture('SECONDARY', 0) fixture['email'] = cfg.CONF['service:central'].managed_resource_email fixture['attributes'] = [{"key": "master", "value": "10.0.0.10"}] # Create a zone zone = self.create_domain(**fixture) masters = ['10.0.0.1', '10.0.0.2'] # Prepare an update body body = {'masters': masters} response = self.client.patch_json('/zones/%s' % zone['id'], body, status=202) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('links', response.json) self.assertIn('self', response.json['links']) self.assertIn('status', response.json) # Check the values returned are what we expect self.assertIn('id', response.json) self.assertIsNotNone(response.json['updated_at']) self.assertEqual(masters, response.json['masters']) self.assertEqual(1, response.json['serial']) def test_xfr_request(self): # Create a zone fixture = self.get_domain_fixture('SECONDARY', 0) fixture['email'] = cfg.CONF['service:central'].managed_resource_email fixture['attributes'] = [{"key": "master", "value": "10.0.0.10"}] # Create a zone zone = self.create_domain(**fixture) response = self.client.post_json('/zones/%s/tasks/xfr' % zone['id'], None, status=202) # Check the headers are what we expect self.assertEqual(202, response.status_int) self.assertEqual('application/json', response.content_type) def test_invalid_xfr_request(self): # Create a zone # Create a zone zone = self.create_domain() response = self.client.post_json('/zones/%s/tasks/xfr' % zone['id'], None, status=400) # Check the headers are what we expect self.assertEqual(400, response.status_int) self.assertEqual('application/json', response.content_type) def test_update_secondary_email_invalid_object(self): # Create a zone fixture = self.get_domain_fixture('SECONDARY', 0) fixture['email'] = cfg.CONF['service:central'].managed_resource_email # Create a zone zone = self.create_domain(**fixture) body = {'email': '*****@*****.**'} self._assert_exception('invalid_object', 400, self.client.patch_json, '/zones/%s' % zone['id'], body) # Metadata tests def test_metadata_exists(self): response = self.client.get('/zones/') # Make sure the fields exist self.assertIn('metadata', response.json) self.assertIn('total_count', response.json['metadata']) def test_total_count(self): response = self.client.get('/zones/') # There are no zones by default self.assertEqual(0, response.json['metadata']['total_count']) # Create a zone fixture = self.get_domain_fixture(fixture=0) response = self.client.post_json('/zones/', fixture) response = self.client.get('/zones/') # Make sure total_count picked it up self.assertEqual(1, response.json['metadata']['total_count']) def test_total_count_pagination(self): # Create two zones fixture = self.get_domain_fixture(fixture=0) response = self.client.post_json('/zones/', fixture) fixture = self.get_domain_fixture(fixture=1) response = self.client.post_json('/zones/', fixture) # Paginate so that there is only one zone returned response = self.client.get('/zones?limit=1') self.assertEqual(1, len(response.json['zones'])) # The total_count should know there are two self.assertEqual(2, response.json['metadata']['total_count']) def test_no_update_deleting(self): # Create a zone zone = self.create_domain() # Prepare an update body body = {'zone': {'email': 'prefix-%s' % zone['email']}} self.client.delete('/zones/%s' % zone['id'], status=202) self._assert_exception('bad_request', 400, self.client.patch_json, '/zones/%s' % zone['id'], body) def test_get_nameservers(self): # Create a zone zone = self.create_domain() # Prepare an update body response = self.client.get('/zones/%s/nameservers' % zone['id'], headers=[('Accept', 'application/json')]) self.assertIn('nameservers', response.json) self.assertEqual(1, len(response.json['nameservers'])) self.assertIn('hostname', response.json['nameservers'][0]) self.assertIn('priority', response.json['nameservers'][0])
def _find_domains(self, context, criterion, one=False): try: return self._find(models.Domain, context, criterion, one) except exceptions.NotFound: raise exceptions.DomainNotFound()
class ApiV2ZonesTest(ApiV2TestCase): def setUp(self): super(ApiV2ZonesTest, self).setUp() # Create a server self.create_server() # Create the default TLDs self.create_default_tlds() def test_create_zone(self): # Create a zone fixture = self.get_domain_fixture(0) response = self.client.post_json('/zones/', {'zone': fixture}) # Check the headers are what we expect self.assertEqual(201, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zone', response.json) self.assertIn('links', response.json['zone']) self.assertIn('self', response.json['zone']['links']) # Check the values returned are what we expect self.assertIn('id', response.json['zone']) self.assertIn('created_at', response.json['zone']) self.assertEqual('ACTIVE', response.json['zone']['status']) self.assertIsNone(response.json['zone']['updated_at']) for k in fixture: self.assertEqual(fixture[k], response.json['zone'][k]) def test_create_zone_validation(self): # NOTE: The schemas should be tested separately to the API. So we # don't need to test every variation via the API itself. # Fetch a fixture fixture = self.get_domain_fixture(0) # Add a junk field to the wrapper body = {'zone': fixture, 'junk': 'Junk Field'} # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) # Add a junk field to the body fixture['junk'] = 'Junk Field' # Ensure it fails with a 400 body = {'zone': fixture} self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) def test_create_zone_body_validation(self): fixture = self.get_domain_fixture(0) # Add id to the body fixture['id'] = '2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 400 body = {'zone': fixture} self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) fixture = self.get_domain_fixture(0) # Add created_at to the body fixture['created_at'] = '2014-03-12T19:07:53.000000' # Ensure it fails with a 400 body = {'zone': fixture} self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', body) def test_create_zone_invalid_name(self): # Try to create a zone with an invalid name fixture = self.get_domain_fixture(-1) # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.post_json, '/zones', {'zone': fixture}) @patch.object(central_service.Service, 'create_domain', side_effect=messaging.MessagingTimeout()) def test_create_zone_timeout(self, _): fixture = self.get_domain_fixture(0) body = {'zone': fixture} self._assert_exception('timeout', 504, self.client.post_json, '/zones/', body) @patch.object(central_service.Service, 'create_domain', side_effect=exceptions.DuplicateDomain()) def test_create_zone_duplicate(self, _): fixture = self.get_domain_fixture(0) body = {'zone': fixture} self._assert_exception('duplicate_domain', 409, self.client.post_json, '/zones/', body) def test_create_zone_missing_content_type(self): self._assert_exception('unsupported_content_type', 415, self.client.post, '/zones') def test_create_zone_bad_content_type(self): self._assert_exception('unsupported_content_type', 415, self.client.post, '/zones', headers={'Content-type': 'test/goat'}) def test_zone_invalid_url(self): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980/invalid' self._assert_exception('not_found', 404, self.client.get, url, headers={'Accept': 'application/json'}) self._assert_exception('not_found', 404, self.client.patch_json, url) self._assert_exception('not_found', 404, self.client.delete, url) # Pecan returns a 405 for post response = self.client.post(url, status=405) self.assertEqual(405, response.status_int) def test_get_zones(self): response = self.client.get('/zones/') # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zones', response.json) self.assertIn('links', response.json) self.assertIn('self', response.json['links']) # We should start with 0 zones self.assertEqual(0, len(response.json['zones'])) # We should start with 0 zones self.assertEqual(0, len(response.json['zones'])) data = [self.create_domain(name='x-%s.com.' % i) for i in 'abcdefghij'] self._assert_paging(data, '/zones', key='zones') self._assert_invalid_paging(data, '/zones', key='zones') @patch.object(central_service.Service, 'find_domains', side_effect=messaging.MessagingTimeout()) def test_get_zones_timeout(self, _): self._assert_exception('timeout', 504, self.client.get, '/zones/') def test_get_zone(self): # Create a zone zone = self.create_domain() response = self.client.get('/zones/%s' % zone['id'], headers=[('Accept', 'application/json')]) # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zone', response.json) self.assertIn('links', response.json['zone']) self.assertIn('self', response.json['zone']['links']) # Check the values returned are what we expect self.assertIn('id', response.json['zone']) self.assertIn('created_at', response.json['zone']) self.assertEqual('ACTIVE', response.json['zone']['status']) self.assertIsNone(response.json['zone']['updated_at']) self.assertEqual(zone['name'], response.json['zone']['name']) self.assertEqual(zone['email'], response.json['zone']['email']) def test_get_zone_invalid_id(self): self._assert_invalid_uuid(self.client.get, '/zones/%s') @patch.object(central_service.Service, 'get_domain', side_effect=messaging.MessagingTimeout()) def test_get_zone_timeout(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('timeout', 504, self.client.get, url, headers={'Accept': 'application/json'}) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DomainNotFound()) def test_get_zone_missing(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('domain_not_found', 404, self.client.get, url, headers={'Accept': 'application/json'}) def test_get_zone_missing_accept(self): url = '/zones/6e2146f3-87bc-4f47-adc5-4df0a5c78218' self._assert_exception('bad_request', 400, self.client.get, url) def test_get_zone_bad_accept(self): url = '/zones/6e2146f3-87bc-4f47-adc5-4df0a5c78218' self.client.get(url, headers={'Accept': 'test/goat'}, status=406) def test_update_zone(self): # Create a zone zone = self.create_domain() # Prepare an update body body = {'zone': {'email': 'prefix-%s' % zone['email']}} response = self.client.patch_json('/zones/%s' % zone['id'], body, status=200) # Check the headers are what we expect self.assertEqual(200, response.status_int) self.assertEqual('application/json', response.content_type) # Check the body structure is what we expect self.assertIn('zone', response.json) self.assertIn('links', response.json['zone']) self.assertIn('self', response.json['zone']['links']) self.assertIn('status', response.json['zone']) # Check the values returned are what we expect self.assertIn('id', response.json['zone']) self.assertIsNotNone(response.json['zone']['updated_at']) self.assertEqual('prefix-%s' % zone['email'], response.json['zone']['email']) def test_update_zone_invalid_id(self): self._assert_invalid_uuid(self.client.patch_json, '/zones/%s') def test_update_zone_validation(self): # NOTE: The schemas should be tested separatly to the API. So we # don't need to test every variation via the API itself. # Create a zone zone = self.create_domain() # Prepare an update body with junk in the wrapper body = { 'zone': { 'email': 'prefix-%s' % zone['email'] }, 'junk': 'Junk Field' } url = '/zones/%s' % zone['id'] # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.patch_json, url, body) # Prepare an update body with junk in the body body = { 'zone': { 'email': 'prefix-%s' % zone['email'], 'junk': 'Junk Field' } } # Ensure it fails with a 400 self._assert_exception('invalid_object', 400, self.client.patch_json, url, body) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DuplicateDomain()) def test_update_zone_duplicate(self, _): # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 409 self._assert_exception('duplicate_domain', 409, self.client.patch_json, url, body) @patch.object(central_service.Service, 'get_domain', side_effect=messaging.MessagingTimeout()) def test_update_zone_timeout(self, _): # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 504 self._assert_exception('timeout', 504, self.client.patch_json, url, body) @patch.object(central_service.Service, 'get_domain', side_effect=exceptions.DomainNotFound()) def test_update_zone_missing(self, _): # Prepare an update body body = {'zone': {'email': '*****@*****.**'}} url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' # Ensure it fails with a 404 self._assert_exception('domain_not_found', 404, self.client.patch_json, url, body) def test_delete_zone(self): zone = self.create_domain() self.client.delete('/zones/%s' % zone['id'], status=204) def test_delete_zone_invalid_id(self): self._assert_invalid_uuid(self.client.delete, '/zones/%s') @patch.object(central_service.Service, 'delete_domain', side_effect=messaging.MessagingTimeout()) def test_delete_zone_timeout(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('timeout', 504, self.client.delete, url) @patch.object(central_service.Service, 'delete_domain', side_effect=exceptions.DomainNotFound()) def test_delete_zone_missing(self, _): url = '/zones/2fdadfb1-cf96-4259-ac6b-bb7b6d2ff980' self._assert_exception('domain_not_found', 404, self.client.delete, url) # Zone import/export def test_missing_origin(self): fixture = self.get_zonefile_fixture(variant='noorigin') self._assert_exception('bad_request', 400, self.client.post, '/zones', fixture, headers={'Content-type': 'text/dns'}) def test_missing_soa(self): fixture = self.get_zonefile_fixture(variant='nosoa') self._assert_exception('bad_request', 400, self.client.post, '/zones', fixture, headers={'Content-type': 'text/dns'}) def test_malformed_zonefile(self): fixture = self.get_zonefile_fixture(variant='malformed') self._assert_exception('bad_request', 400, self.client.post, '/zones', fixture, headers={'Content-type': 'text/dns'}) def test_import_export(self): # Since v2 doesn't support getting records, import and export the # fixture, making sure they're the same according to dnspython post_response = self.client.post('/zones', self.get_zonefile_fixture(), headers={'Content-type': 'text/dns'}) get_response = self.client.get('/zones/%s' % post_response.json['zone']['id'], headers={'Accept': 'text/dns'}) exported_zonefile = get_response.body imported = dnszone.from_text(self.get_zonefile_fixture()) exported = dnszone.from_text(exported_zonefile) # Compare SOA emails, since zone comparison takes care of origin imported_soa = imported.get_rdataset(imported.origin, 'SOA') imported_email = imported_soa[0].rname.to_text() exported_soa = exported.get_rdataset(exported.origin, 'SOA') exported_email = exported_soa[0].rname.to_text() self.assertEqual(imported_email, exported_email) # Delete SOAs since they have, at the very least, different serials, # and dnspython considers that to be not equal. imported.delete_rdataset(imported.origin, 'SOA') exported.delete_rdataset(exported.origin, 'SOA') # Delete non-delegation NS, since they won't be the same imported.delete_rdataset(imported.origin, 'NS') exported.delete_rdataset(exported.origin, 'NS') self.assertEqual(imported, exported)