URL: https://github.com/freeipa/freeipa/pull/6120
Author: menonsudhir
 Title: #6120: ipatests: Adding --no-dnssec-validation option for healthcheck
Action: opened

PR body:
"""
healthcheck related tests are failing because of the below issue 
"client @0x7f8ee47c4d48 : servfail cache hit (CD=0)" and as a result 
healthcheck related packages 
are not downloaded on test system.
Hence adding the --no-dnssec-validation option to install_master and 
install_replica function

"""

To pull the PR as Git branch:
git remote add ghfreeipa https://github.com/freeipa/freeipa
git fetch ghfreeipa pull/6120/head:pr6120
git checkout pr6120
From 18a3bdca5fb00b583cb4ed7eafcbf058ea311f27 Mon Sep 17 00:00:00 2001
From: Sudhir Menon <sume...@redhat.com>
Date: Tue, 7 Dec 2021 17:48:07 +0530
Subject: [PATCH 1/2] ipatests: Adding --no-dnssec-validation option for
 healthcheck

healthcheck related tests are failing because of the below issue
"client @0x7f8ee47c4d48 : servfail cache hit (CD=0)"
and as a result healthcheck related packages are not downloaded on test
system.
Hence adding the --no-dnssec-validation option to install_master
and install_replica function

Signed-off-by: Sudhir Menon <sume...@redhat.com>
---
 ipatests/pytest_ipa/integration/tasks.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ipatests/pytest_ipa/integration/tasks.py b/ipatests/pytest_ipa/integration/tasks.py
index 836d140d409..90871355b71 100755
--- a/ipatests/pytest_ipa/integration/tasks.py
+++ b/ipatests/pytest_ipa/integration/tasks.py
@@ -354,7 +354,8 @@ def install_master(host, setup_dns=True, setup_kra=False, setup_adtrust=False,
         args.extend([
             '--setup-dns',
             '--forwarder', host.config.dns_forwarder,
-            '--auto-reverse'
+            '--auto-reverse',
+            '--no-dnssec-validation',
         ])
         fw_services.append("dns")
     if setup_kra:
@@ -490,6 +491,7 @@ def install_replica(master, replica, setup_ca=True, setup_dns=False,
     if setup_dns:
         args.extend([
             '--setup-dns',
+            '--no-dnssec-validation',
             '--forwarder', replica.config.dns_forwarder
         ])
         fw_services.append("dns")

From 8ed028d2940b04efd20085bac0174e35fc00f084 Mon Sep 17 00:00:00 2001
From: Sudhir Menon <sume...@redhat.com>
Date: Tue, 7 Dec 2021 17:59:40 +0530
Subject: [PATCH 2/2] Temp Commit

Signed-off-by: Sudhir Menon <sume...@redhat.com>
---
 .freeipa-pr-ci.yaml                        | 2 +-
 ipatests/prci_definitions/temp_commit.yaml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.freeipa-pr-ci.yaml b/.freeipa-pr-ci.yaml
index abcf8c5b634..80656690080 120000
--- a/.freeipa-pr-ci.yaml
+++ b/.freeipa-pr-ci.yaml
@@ -1 +1 @@
-ipatests/prci_definitions/gating.yaml
\ No newline at end of file
+ipatests/prci_definitions/temp_commit.yaml
\ No newline at end of file
diff --git a/ipatests/prci_definitions/temp_commit.yaml b/ipatests/prci_definitions/temp_commit.yaml
index 31935bf044a..9f9c8d10dbb 100644
--- a/ipatests/prci_definitions/temp_commit.yaml
+++ b/ipatests/prci_definitions/temp_commit.yaml
@@ -68,7 +68,7 @@ jobs:
       class: RunPytest
       args:
         build_url: '{fedora-latest/build_url}'
-        test_suite: test_integration/test_REPLACEME.py
+        test_suite: test_integration/test_ipahealthcheck.py::TestIpaHealthCheck
         template: *ci-master-latest
         timeout: 3600
         topology: *master_1repl_1client
_______________________________________________
FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org
To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure

Reply via email to