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