]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2911] make sure to use default request_ixfr from the spec, not hardcoding it.
authorJINMEI Tatuya <jinmei@isc.org>
Wed, 22 May 2013 21:01:07 +0000 (14:01 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Thu, 30 May 2013 16:58:47 +0000 (09:58 -0700)
also updated the test so the MockCC refers to the spec default, instead of
hardcoding the values.

src/bin/xfrin/tests/xfrin_test.py
src/bin/xfrin/xfrin.py.in

index 3572a9170ab8bf053f9ce62f44f9ace4c9f98e66..12def4e95700b7cad9af51fd8b7c06ea72a86e3f 100644 (file)
@@ -129,17 +129,12 @@ class XfrinTestException(Exception):
 class XfrinTestTimeoutException(Exception):
     pass
 
-class MockCC(MockModuleCCSession):
-    def get_default_value(self, identifier):
-        # The returned values should be identical to the spec file
-        # XXX: these should be retrieved from the spec file
-        # (see MyCCSession of xfrout_test.py.in)
-        if identifier == "zones/master_port":
-            return TEST_MASTER_PORT
-        if identifier == "zones/class":
-            return TEST_RRCLASS_STR
-        if identifier == "zones/use_ixfr":
-            return False
+class MockCC(MockModuleCCSession, ConfigData):
+    def __init__(self):
+        super().__init__()
+        module_spec = isc.config.module_spec_from_file(
+            xfrin.SPECFILE_LOCATION)
+        ConfigData.__init__(self, module_spec)
 
     def add_remote_config_by_name(self, name, callback):
         pass
index 2faff0cf30b4bc70838fca37a5d4e4d97ea0a947..f13d3ed08023d624c5b00fb35e2852b247ce0875 100755 (executable)
@@ -1373,7 +1373,8 @@ class ZoneInfo:
 
     def set_request_ixfr(self, request_ixfr):
         if request_ixfr is None:
-            request_ixfr = 'no' # if unspecified, use the default
+            request_ixfr = \
+                self._module_cc.get_default_value("zones/request_ixfr")
         cfg_to_val = { 'yes': self.REQUEST_IXFR_FIRST,
                        'only': self.REQUEST_IXFR_ONLY,
                        'no': self.REQUEST_IXFR_DISABLED }