From: Otto Moerbeek Date: Tue, 13 Feb 2024 15:31:35 +0000 (+0100) Subject: rec: skip a few test that depend on sidnlab's public test setup that no longer works X-Git-Tag: auth-4.9.0-beta1~3^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c47d58191e285aa2f85c24bbddba55f95cd58a2;p=thirdparty%2Fpdns.git rec: skip a few test that depend on sidnlab's public test setup that no longer works --- diff --git a/regression-tests.recursor-dnssec/test_ExtendedErrors.py b/regression-tests.recursor-dnssec/test_ExtendedErrors.py index 19f71ae444..d2625137f3 100644 --- a/regression-tests.recursor-dnssec/test_ExtendedErrors.py +++ b/regression-tests.recursor-dnssec/test_ExtendedErrors.py @@ -1,6 +1,7 @@ import dns import os import extendederrors +import pytest from recursortests import RecursorTest @@ -82,6 +83,7 @@ extended-resolution-errors=yes super(ExtendedErrorsRecursorTest, cls).generateRecursorConfig(confdir) + @pytest.mark.skip(reason="sidnlabs no longer serves thiss until further notice") def testNotIncepted(self): qname = 'signotincepted.bad-dnssec.wb.sidnlabs.nl.' query = dns.message.make_query(qname, 'A', want_dnssec=True) @@ -95,6 +97,7 @@ extended-resolution-errors=yes self.assertEqual(res.options[0].otype, 15) self.assertEqual(res.options[0], extendederrors.ExtendedErrorOption(8, b'')) + @pytest.mark.skip(reason="sidnlabs no longer serves thiss until further notice") def testExpired(self): qname = 'sigexpired.bad-dnssec.wb.sidnlabs.nl.' query = dns.message.make_query(qname, 'A', want_dnssec=True) @@ -121,6 +124,7 @@ extended-resolution-errors=yes self.assertEqual(res.options[0].otype, 15) self.assertEqual(res.options[0], extendederrors.ExtendedErrorOption(6, b'')) + @pytest.mark.skip(reason="sidnlabs no longer serves thiss until further notice") def testBogus(self): qname = 'bogussig.ok.bad-dnssec.wb.sidnlabs.nl.' query = dns.message.make_query(qname, 'A', want_dnssec=True) @@ -235,6 +239,7 @@ extended-resolution-errors=no def generateRecursorConfig(cls, confdir): super(NoExtendedErrorsRecursorTest, cls).generateRecursorConfig(confdir) + @pytest.mark.skip(reason="sidnlabs no longer serves thiss until further notice") def testNotIncepted(self): qname = 'signotincepted.bad-dnssec.wb.sidnlabs.nl.' query = dns.message.make_query(qname, 'A', want_dnssec=True)