From 24c6ce27b215ce6584ef3d38bcb8cfd68af20ce6 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Wed, 21 Aug 2019 16:25:31 +0300 Subject: Mark failing test as xfail for use of python-dns make_ds method https://github.com/rthalley/dnspython/issues/343 documents broken use of hashes in dns.dnssec.make_ds() and other python-dns methods. This is a regression introduced with python-dns 1.16. Mark the test as expecting to fail until python-dns is fixed in Fedora. Reviewed-By: Alexander Bokovoy --- ipatests/test_integration/test_dnssec.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ipatests/test_integration/test_dnssec.py b/ipatests/test_integration/test_dnssec.py index bf0b1746d..874eb06eb 100644 --- a/ipatests/test_integration/test_dnssec.py +++ b/ipatests/test_integration/test_dnssec.py @@ -11,6 +11,8 @@ import dns.dnssec import dns.resolver import dns.name +import pytest + from ipatests.test_integration.base import IntegrationTest from ipatests.pytest_ipa.integration import tasks from ipatests.pytest_ipa.integration.firewall import Firewall @@ -312,6 +314,7 @@ class TestInstallDNSSECFirst(IntegrationTest): self.replicas[0].ip, root_zone, timeout=300 ), "Zone %s is not signed (replica)" % root_zone + @pytest.mark.xfail(reason='dnspython issue 343', strict=False) def test_chain_of_trust(self): """ Validate signed DNS records, using our own signed root zone -- cgit