2834c6
From e713c227bb420a841ce3ae146bca55a84a1b0dbf Mon Sep 17 00:00:00 2001
2834c6
From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= <fcami@redhat.com>
2834c6
Date: Tue, 22 Jun 2021 14:36:51 +0200
2834c6
Subject: [PATCH] paths: add IPA_SERVER_CONF
2834c6
MIME-Version: 1.0
2834c6
Content-Type: text/plain; charset=UTF-8
2834c6
Content-Transfer-Encoding: 8bit
2834c6
2834c6
Related: https://pagure.io/freeipa/issue/8891
2834c6
Signed-off-by: François Cami <fcami@redhat.com>
2834c6
Reviewed-By: Stanislav Levin <slev@altlinux.org>
2834c6
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
2834c6
---
2834c6
 ipaplatform/base/paths.py | 1 +
2834c6
 1 file changed, 1 insertion(+)
2834c6
2834c6
diff --git a/ipaplatform/base/paths.py b/ipaplatform/base/paths.py
2834c6
index 91423b332..de217d9ef 100644
2834c6
--- a/ipaplatform/base/paths.py
2834c6
+++ b/ipaplatform/base/paths.py
2834c6
@@ -71,6 +71,7 @@ class BasePathNamespace:
2834c6
     IPA_DEFAULT_CONF = "/etc/ipa/default.conf"
2834c6
     IPA_DNSKEYSYNCD_KEYTAB = "/etc/ipa/dnssec/ipa-dnskeysyncd.keytab"
2834c6
     IPA_ODS_EXPORTER_KEYTAB = "/etc/ipa/dnssec/ipa-ods-exporter.keytab"
2834c6
+    IPA_SERVER_CONF = "/etc/ipa/server.conf"
2834c6
     DNSSEC_OPENSSL_CONF = "/etc/ipa/dnssec/openssl.cnf"
2834c6
     DNSSEC_SOFTHSM2_CONF = "/etc/ipa/dnssec/softhsm2.conf"
2834c6
     DNSSEC_SOFTHSM_PIN_SO = "/etc/ipa/dnssec/softhsm_pin_so"
2834c6
-- 
2834c6
2.31.1
2834c6
2834c6
From ee4be290e1583834a573c3896ee1d97b3fbb6c24 Mon Sep 17 00:00:00 2001
2834c6
From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= <fcami@redhat.com>
2834c6
Date: Tue, 22 Jun 2021 14:45:49 +0200
2834c6
Subject: [PATCH] ipatests: smoke test for server debug mode.
2834c6
MIME-Version: 1.0
2834c6
Content-Type: text/plain; charset=UTF-8
2834c6
Content-Transfer-Encoding: 8bit
2834c6
2834c6
Add a smoke test to make sure the server can be set in debug mode
2834c6
without issue.
2834c6
2834c6
Related: https://pagure.io/freeipa/issue/8891
2834c6
Signed-off-by: François Cami <fcami@redhat.com>
2834c6
Reviewed-By: Stanislav Levin <slev@altlinux.org>
2834c6
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
2834c6
---
2834c6
 .../test_integration/test_installation.py     | 27 +++++++++++++++++++
2834c6
 1 file changed, 27 insertions(+)
2834c6
2834c6
diff --git a/ipatests/test_integration/test_installation.py b/ipatests/test_integration/test_installation.py
2834c6
index 301767b8d..0c96536f0 100644
2834c6
--- a/ipatests/test_integration/test_installation.py
2834c6
+++ b/ipatests/test_integration/test_installation.py
2834c6
@@ -703,6 +703,33 @@ class TestInstallMaster(IntegrationTest):
2834c6
     def test_install_master(self):
2834c6
         tasks.install_master(self.master, setup_dns=False)
2834c6
 
2834c6
+    @pytest.mark.skip_if_platform(
2834c6
+        "debian", reason="This test hardcodes the httpd service name"
2834c6
+    )
2834c6
+    def test_smoke_test_for_debug_mode(self):
2834c6
+        """Test if an IPA server works in debug mode.
2834c6
+        Related: https://pagure.io/freeipa/issue/8891
2834c6
+
2834c6
+        Note: this test hardcodes the "httpd" service name.
2834c6
+        """
2834c6
+
2834c6
+        target_fname = paths.IPA_SERVER_CONF
2834c6
+        assert not self.master.transport.file_exists(target_fname)
2834c6
+
2834c6
+        # set the IPA server in debug mode
2834c6
+        server_conf = "[global]\ndebug=True"
2834c6
+        self.master.put_file_contents(target_fname, server_conf)
2834c6
+        self.master.run_command(["systemctl", "restart", "httpd"])
2834c6
+
2834c6
+        # smoke test in debug mode
2834c6
+        tasks.kdestroy_all(self.master)
2834c6
+        tasks.kinit_admin(self.master)
2834c6
+        self.master.run_command(["ipa", "user-show", "admin"])
2834c6
+
2834c6
+        # rollback
2834c6
+        self.master.run_command(["rm", target_fname])
2834c6
+        self.master.run_command(["systemctl", "restart", "httpd"])
2834c6
+
2834c6
     def test_schema_compat_attribute_and_tree_disable(self):
2834c6
         """Test if schema-compat-entry-attribute is set
2834c6
 
2834c6
-- 
2834c6
2.31.1
2834c6
2834c6
From 1539c7383116647ad9c5b125b343f972e9c9653b Mon Sep 17 00:00:00 2001
2834c6
From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= <fcami@redhat.com>
2834c6
Date: Wed, 23 Jun 2021 06:35:19 +0200
2834c6
Subject: [PATCH] rpcserver.py: perf_counter_ns is Python 3.7+
2834c6
MIME-Version: 1.0
2834c6
Content-Type: text/plain; charset=UTF-8
2834c6
Content-Transfer-Encoding: 8bit
2834c6
2834c6
perf_counter_ns is only available in Python 3.7 and later.
2834c6
Define a lambda for 3.6 and lower.
2834c6
2834c6
Fixes: https://pagure.io/freeipa/issue/8891
2834c6
Signed-off-by: François Cami <fcami@redhat.com>
2834c6
Reviewed-By: Stanislav Levin <slev@altlinux.org>
2834c6
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
2834c6
---
2834c6
 ipaserver/rpcserver.py | 5 +++++
2834c6
 1 file changed, 5 insertions(+)
2834c6
2834c6
diff --git a/ipaserver/rpcserver.py b/ipaserver/rpcserver.py
2834c6
index b121316bf..e612528e0 100644
2834c6
--- a/ipaserver/rpcserver.py
2834c6
+++ b/ipaserver/rpcserver.py
2834c6
@@ -31,6 +31,7 @@ import os
2834c6
 import time
2834c6
 import traceback
2834c6
 from io import BytesIO
2834c6
+from sys import version_info
2834c6
 from urllib.parse import parse_qs
2834c6
 from xmlrpc.client import Fault
2834c6
 
2834c6
@@ -72,6 +73,10 @@ from requests.auth import AuthBase
2834c6
 if six.PY3:
2834c6
     unicode = str
2834c6
 
2834c6
+# time.perf_counter_ns appeared in Python 3.7.
2834c6
+if version_info < (3, 7):
2834c6
+    time.perf_counter_ns = lambda: int(time.perf_counter() * 10**9)
2834c6
+
2834c6
 logger = logging.getLogger(__name__)
2834c6
 
2834c6
 HTTP_STATUS_SUCCESS = '200 Success'
2834c6
-- 
2834c6
2.31.1
2834c6