123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- # Copyright (C) 2012 Internet Systems Consortium.
- #
- # Permission to use, copy, modify, and distribute this software for any
- # purpose with or without fee is hereby granted, provided that the above
- # copyright notice and this permission notice appear in all copies.
- #
- # THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SYSTEMS CONSORTIUM
- # DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
- # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
- # INTERNET SYSTEMS CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
- # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
- # FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
- # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
- # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- import isc.datasrc
- import isc.dns
- import os
- import unittest
- import shutil
- # Constants and common data used in tests
- TESTDATA_PATH = os.environ['TESTDATA_PATH']
- TESTDATA_WRITE_PATH = os.environ['TESTDATA_WRITE_PATH']
- ZONE_FILE = TESTDATA_PATH + '/example.com'
- STATIC_ZONE_FILE = '../../../../datasrc/static.zone'
- SOURCE_DB_FILE = TESTDATA_PATH + '/example.com.source.sqlite3'
- ORIG_DB_FILE = TESTDATA_PATH + '/example.com.sqlite3'
- DB_FILE = TESTDATA_WRITE_PATH + '/zoneloadertest.sqlite3'
- DB_CLIENT_CONFIG = '{ "database_file": "' + DB_FILE + '" }'
- DB_SOURCE_CLIENT_CONFIG = '{ "database_file": "' + SOURCE_DB_FILE + '" }'
- ORIG_SOA_TXT = 'example.com. 3600 IN SOA master.example.com. ' +\
- 'admin.example.com. 1234 3600 1800 2419200 7200\n'
- NEW_SOA_TXT = 'example.com. 1000 IN SOA a.dns.example.com. ' +\
- 'mail.example.com. 1 1 1 1 1\n'
- class ZoneLoaderTests(unittest.TestCase):
- def setUp(self):
- self.test_name = isc.dns.Name("example.com")
- self.test_file = ZONE_FILE
- self.client = isc.datasrc.DataSourceClient("sqlite3", DB_CLIENT_CONFIG)
- # Make a fresh copy of the database
- shutil.copy(ORIG_DB_FILE, DB_FILE)
- def test_bad_constructor(self):
- self.assertRaises(TypeError, isc.datasrc.ZoneLoader)
- self.assertRaises(TypeError, isc.datasrc.ZoneLoader, 1)
- self.assertRaises(TypeError, isc.datasrc.ZoneLoader,
- None, self.test_name, self.test_file)
- self.assertRaises(TypeError, isc.datasrc.ZoneLoader,
- self.client, None, self.test_file)
- self.assertRaises(TypeError, isc.datasrc.ZoneLoader,
- self.client, self.test_name, None)
- self.assertRaises(TypeError, isc.datasrc.ZoneLoader,
- self.client, self.test_name, self.test_file, 1)
- def check_zone_soa(self, soa_txt):
- """
- Check that the given SOA RR exists and matches the expected string
- """
- result, finder = self.client.find_zone(self.test_name)
- self.assertEqual(self.client.SUCCESS, result)
- result, rrset, _ = finder.find(self.test_name, isc.dns.RRType.SOA())
- self.assertEqual(finder.SUCCESS, result)
- self.assertEqual(soa_txt, rrset.to_text())
- def check_load(self, loader):
- self.check_zone_soa(ORIG_SOA_TXT)
- loader.load()
- self.check_zone_soa(NEW_SOA_TXT)
- # And after that, it should throw
- self.assertRaises(isc.dns.InvalidOperation, loader.load)
- def test_load_from_file(self):
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- self.test_file)
- self.check_load(loader)
- def test_load_from_client(self):
- source_client = isc.datasrc.DataSourceClient('sqlite3',
- DB_SOURCE_CLIENT_CONFIG)
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- source_client)
- self.check_load(loader)
- def test_load_from_file_checkrefs(self):
- # A test to see the refcount is increased properly
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- self.test_file)
- # Explicitely delete the objects here, so we trigger wrong
- # DECREF calls
- self.client = None
- self.test_name = None
- self.test_file = None
- loader.load()
- loader = None
- def test_load_from_client_checkrefs(self):
- # A test to see the refcount is increased properly
- source_client = isc.datasrc.DataSourceClient('sqlite3',
- DB_SOURCE_CLIENT_CONFIG)
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- source_client)
- # Explicitely delete the objects here, so we trigger wrong
- # DECREF calls
- self.client = None
- self.test_name = None
- source_client = None
- loader.load()
- loader = None
- def check_load_incremental(self, loader):
- # New zone has 8 RRs
- # After 5, it should return False
- self.assertFalse(loader.load_incremental(5))
- # New zone should not have been loaded yet
- self.check_zone_soa(ORIG_SOA_TXT)
- # After 5 more, it should return True (only having read 3)
- self.assertTrue(loader.load_incremental(5))
- # New zone should now be loaded
- self.check_zone_soa(NEW_SOA_TXT)
- # And after that, it should throw
- self.assertRaises(isc.dns.InvalidOperation, loader.load_incremental, 5)
- def test_load_from_file_incremental(self):
- # Create loader and load the zone
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- self.test_file)
- self.check_load_incremental(loader)
- def test_load_from_client_incremental(self):
- source_client = isc.datasrc.DataSourceClient('sqlite3',
- DB_SOURCE_CLIENT_CONFIG)
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- source_client)
- self.check_load_incremental(loader)
- def test_bad_file(self):
- self.check_zone_soa(ORIG_SOA_TXT)
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- 'no such file')
- self.assertRaises(isc.datasrc.MasterFileError, loader.load)
- self.check_zone_soa(ORIG_SOA_TXT)
- def test_bad_file_incremental(self):
- self.check_zone_soa(ORIG_SOA_TXT)
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- 'no such file')
- self.assertRaises(isc.datasrc.MasterFileError,
- loader.load_incremental, 1)
- self.check_zone_soa(ORIG_SOA_TXT)
- def test_no_such_zone_in_target(self):
- self.assertRaises(isc.datasrc.Error, isc.datasrc.ZoneLoader,
- self.client, isc.dns.Name("unknownzone"),
- self.test_file)
- def test_no_such_zone_in_source(self):
- source_client = isc.datasrc.DataSourceClient('sqlite3',
- DB_SOURCE_CLIENT_CONFIG)
- self.assertRaises(isc.datasrc.Error, isc.datasrc.ZoneLoader,
- self.client, isc.dns.Name("unknownzone"),
- source_client)
- def test_no_ds_load_support(self):
- # This may change in the future, but atm, the in-mem ds does
- # not support the API the zone loader uses (it has direct load calls)
- inmem_client = isc.datasrc.DataSourceClient('memory',
- '{ "type": "memory" }');
- self.assertRaises(isc.datasrc.NotImplemented,
- isc.datasrc.ZoneLoader,
- inmem_client, self.test_name, self.test_file)
- def test_wrong_class_from_file(self):
- # If the file has wrong class, it is not detected until load time
- loader = isc.datasrc.ZoneLoader(self.client, self.test_name,
- self.test_file + '.ch')
- self.assertRaises(isc.datasrc.MasterFileError, loader.load)
- def test_wrong_class_from_client(self):
- # For ds->ds loading, wrong class is detected upon construction
- # Need a bit of the extended setup for CH source client
- clientlist = isc.datasrc.ConfigurableClientList(isc.dns.RRClass.CH())
- clientlist.configure('[ { "type": "static", "params": "' +
- STATIC_ZONE_FILE +'" } ]', False)
- source_client, _, _ = clientlist.find(isc.dns.Name("bind."),
- False, False)
- self.assertRaises(isc.dns.InvalidParameter, isc.datasrc.ZoneLoader,
- self.client, isc.dns.Name("bind."), source_client)
- def test_exception(self):
- # Just check if masterfileerror is subclass of datasrc.Error
- self.assertTrue(issubclass(isc.datasrc.MasterFileError,
- isc.datasrc.Error))
- if __name__ == "__main__":
- isc.log.init("bind10")
- isc.log.resetUnitTestRootLogger()
- unittest.main()
|