From: Otto Moerbeek Date: Mon, 18 Mar 2024 08:06:21 +0000 (+0100) Subject: ZTC regression test does not need auths X-Git-Tag: rec-5.1.0-alpha1~121^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=250a8012a85c8cee7b6eaff97ff55fe4a335bf45;p=thirdparty%2Fpdns.git ZTC regression test does not need auths --- diff --git a/regression-tests.recursor-dnssec/test_ZTC.py b/regression-tests.recursor-dnssec/test_ZTC.py index a801a25c8..abf9a51cc 100644 --- a/regression-tests.recursor-dnssec/test_ZTC.py +++ b/regression-tests.recursor-dnssec/test_ZTC.py @@ -15,6 +15,23 @@ dnssec=validate zoneToCache(".", "axfr", "193.0.14.129") -- k-root """ + @classmethod + def setUpClass(cls): + + # we don't need all the auth stuff + cls.setUpSockets() + cls.startResponders() + + confdir = os.path.join('configs', cls._confdir) + cls.createConfigDir(confdir) + + cls.generateRecursorConfig(confdir) + cls.startRecursor(confdir, cls._recursorPort) + + @classmethod + def tearDownClass(cls): + cls.tearDownRecursor() + def testZTC(self): grepCmd = ['grep', 'validationStatus="Secure"', 'configs/' + self._confdir + '/recursor.log'] ret = b''