Source code for libcloud.test.dns.test_nfsn

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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

import sys
import unittest

from libcloud.utils.py3 import httplib

from libcloud.dns.base import Record, Zone
from libcloud.dns.drivers.nfsn import NFSNDNSDriver
from libcloud.dns.types import RecordType, ZoneDoesNotExistError
from libcloud.dns.types import RecordDoesNotExistError

from libcloud.test import LibcloudTestCase, MockHttp
from libcloud.test.file_fixtures import DNSFileFixtures


[docs]class NFSNTestCase(LibcloudTestCase):
[docs] def setUp(self): NFSNDNSDriver.connectionCls.conn_classes = (None, NFSNMockHttp) NFSNMockHttp.type = None self.driver = NFSNDNSDriver('testid', 'testsecret') self.test_zone = Zone(id='example.com', domain='example.com', driver=self.driver, type='master', ttl=None, extra={}) self.test_record = Record(id=None, name='', data='192.0.2.1', type=RecordType.A, zone=self.test_zone, driver=self.driver, extra={})
[docs] def test_list_zones(self): with self.assertRaises(NotImplementedError): self.driver.list_zones()
[docs] def test_create_zone(self): with self.assertRaises(NotImplementedError): self.driver.create_zone('example.com')
[docs] def test_get_zone(self): zone = self.driver.get_zone('example.com') self.assertEquals(zone.id, None) self.assertEquals(zone.domain, 'example.com')
[docs] def test_delete_zone(self): with self.assertRaises(NotImplementedError): self.driver.delete_zone(self.test_zone)
[docs] def test_create_record(self): NFSNMockHttp.type = 'CREATED' record = self.test_zone.create_record(name='newrecord', type=RecordType.A, data='127.0.0.1', extra={'ttl': 900}) self.assertEquals(record.id, None) self.assertEquals(record.name, 'newrecord') self.assertEquals(record.data, '127.0.0.1') self.assertEquals(record.type, RecordType.A) self.assertEquals(record.ttl, 900)
[docs] def test_get_record(self): with self.assertRaises(NotImplementedError): self.driver.get_record('example.com', '12345')
[docs] def test_delete_record(self): self.assertTrue(self.test_record.delete())
[docs] def test_list_records(self): records = self.driver.list_records(self.test_zone) self.assertEqual(len(records), 2)
[docs] def test_ex_get_records_by(self): NFSNMockHttp.type = 'ONE_RECORD' records = self.driver.ex_get_records_by(self.test_zone, type=RecordType.A) self.assertEqual(len(records), 1) record = records[0] self.assertEquals(record.name, '') self.assertEquals(record.data, '192.0.2.1') self.assertEquals(record.type, RecordType.A) self.assertEquals(record.ttl, 3600)
[docs] def test_get_zone_not_found(self): NFSNMockHttp.type = 'NOT_FOUND' with self.assertRaises(ZoneDoesNotExistError): self.driver.get_zone('example.com')
[docs] def test_delete_record_not_found(self): NFSNMockHttp.type = 'NOT_FOUND' with self.assertRaises(RecordDoesNotExistError): self.assertTrue(self.test_record.delete())
[docs]class NFSNMockHttp(MockHttp): fixtures = DNSFileFixtures('nfsn') base_headers = {'content-type': 'application/x-nfsn-api'} def _dns_example_com_addRR_CREATED(self, method, url, body, headers): return (httplib.OK, '', self.base_headers, httplib.responses[httplib.OK]) def _dns_example_com_listRRs(self, method, url, body, headers): body = self.fixtures.load('list_records.json') return (httplib.OK, body, self.base_headers, httplib.responses[httplib.OK]) def _dns_example_com_listRRs_CREATED(self, method, url, body, headers): body = self.fixtures.load('list_records_created.json') return (httplib.OK, body, self.base_headers, httplib.responses[httplib.OK]) def _dns_example_com_removeRR(self, method, url, body, headers): return (httplib.OK, '', self.base_headers, httplib.responses[httplib.OK]) def _dns_example_com_serial(self, method, url, body, headers): return (httplib.OK, '12345', self.base_headers, httplib.responses[httplib.OK]) def _dns_example_com_listRRs_ONE_RECORD(self, method, url, body, headers): body = self.fixtures.load('list_one_record.json') return (httplib.OK, body, self.base_headers, httplib.responses[httplib.OK]) def _dns_example_com_serial_NOT_FOUND(self, method, url, body, headers): body = self.fixtures.load('zone_not_found.json') return (httplib.NOT_FOUND, body, self.base_headers, httplib.responses[httplib.NOT_FOUND]) def _dns_example_com_removeRR_NOT_FOUND(self, method, url, body, headers): body = self.fixtures.load('record_not_removed.json') return (httplib.NOT_FOUND, body, self.base_headers, httplib.responses[httplib.NOT_FOUND])
if __name__ == '__main__': sys.exit(unittest.main())