From: Otto Moerbeek Date: Wed, 24 Jul 2024 11:16:00 +0000 (+0200) Subject: rec: re-enable a few tests now that sidnlabs re-instated the zones used X-Git-Tag: rec-5.2.0-alpha1~143^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2bb77d7ebf2735df38c53fad0fb8486a2d5a968;p=thirdparty%2Fpdns.git rec: re-enable a few tests now that sidnlabs re-instated the zones used --- diff --git a/regression-tests.recursor-dnssec/test_ExtendedErrors.py b/regression-tests.recursor-dnssec/test_ExtendedErrors.py index d2625137f3..73129c11f3 100644 --- a/regression-tests.recursor-dnssec/test_ExtendedErrors.py +++ b/regression-tests.recursor-dnssec/test_ExtendedErrors.py @@ -83,7 +83,6 @@ 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) @@ -97,7 +96,6 @@ 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) @@ -124,7 +122,6 @@ 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) @@ -239,7 +236,6 @@ 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)