Skip to content

Commit

Permalink
Merge pull request #14524 from omoerbeek/rec-regr-tests-enable
Browse files Browse the repository at this point in the history
rec: re-enable a few tests now that sidnlabs re-instated the zones used
  • Loading branch information
omoerbeek authored Aug 13, 2024
2 parents 09ad651 + d2bb77d commit b69f97c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions regression-tests.recursor-dnssec/test_ExtendedErrors.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ def generateRecursorConfig(cls, confdir):

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)
Expand All @@ -97,7 +96,6 @@ def testNotIncepted(self):
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)
Expand All @@ -124,7 +122,6 @@ def testAllExpired(self):
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)
Expand Down Expand Up @@ -239,7 +236,6 @@ def tearDownClass(cls):
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)
Expand Down

0 comments on commit b69f97c

Please sign in to comment.