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