From 250a8012a85c8cee7b6eaff97ff55fe4a335bf45 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 18 Mar 2024 09:06:21 +0100 Subject: [PATCH] ZTC regression test does not need auths --- regression-tests.recursor-dnssec/test_ZTC.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/regression-tests.recursor-dnssec/test_ZTC.py b/regression-tests.recursor-dnssec/test_ZTC.py index a801a25c8f..abf9a51ccc 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'' -- 2.47.2