72 lines
2.7 KiB
Diff
72 lines
2.7 KiB
Diff
|
From 0d9eb3d515385412abefe9c33e0099ea14f33cbc Mon Sep 17 00:00:00 2001
|
||
|
From: Mohammad Rizwan <myusuf@redhat.com>
|
||
|
Date: Wed, 9 Feb 2022 18:56:21 +0530
|
||
|
Subject: [PATCH] Test ipa-ccache-sweep.timer enabled by default during
|
||
|
installation
|
||
|
|
||
|
This test checks that ipa-ccache-sweep.timer is enabled by default
|
||
|
during the ipa installation.
|
||
|
|
||
|
related: https://pagure.io/freeipa/issue/9107
|
||
|
|
||
|
Signed-off-by: Mohammad Rizwan <myusuf@redhat.com>
|
||
|
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
|
||
|
---
|
||
|
.../test_integration/test_installation.py | 19 +++++++++++++++++--
|
||
|
1 file changed, 17 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/ipatests/test_integration/test_installation.py b/ipatests/test_integration/test_installation.py
|
||
|
index f2d372c0c0356f244971a2af808db45dd6c8cb5b..63edbaa2bb4dbae174c6ab8c8f193cc24cc45b14 100644
|
||
|
--- a/ipatests/test_integration/test_installation.py
|
||
|
+++ b/ipatests/test_integration/test_installation.py
|
||
|
@@ -475,7 +475,7 @@ class TestInstallCA(IntegrationTest):
|
||
|
|
||
|
# Tweak sysrestore.state to drop installation section
|
||
|
self.master.run_command(
|
||
|
- ['sed','-i', r's/\[installation\]/\[badinstallation\]/',
|
||
|
+ ['sed', '-i', r's/\[installation\]/\[badinstallation\]/',
|
||
|
os.path.join(paths.SYSRESTORE, SYSRESTORE_STATEFILE)])
|
||
|
|
||
|
# Re-run installation check and it should fall back to old method
|
||
|
@@ -485,7 +485,7 @@ class TestInstallCA(IntegrationTest):
|
||
|
|
||
|
# Restore installation section.
|
||
|
self.master.run_command(
|
||
|
- ['sed','-i', r's/\[badinstallation\]/\[installation\]/',
|
||
|
+ ['sed', '-i', r's/\[badinstallation\]/\[installation\]/',
|
||
|
os.path.join(paths.SYSRESTORE, SYSRESTORE_STATEFILE)])
|
||
|
|
||
|
# Uninstall and confirm that the old method reports correctly
|
||
|
@@ -690,6 +690,7 @@ def get_pki_tomcatd_pid(host):
|
||
|
break
|
||
|
return(pid)
|
||
|
|
||
|
+
|
||
|
def get_ipa_services_pids(host):
|
||
|
ipa_services_name = [
|
||
|
"krb5kdc", "kadmin", "named", "httpd", "ipa-custodia",
|
||
|
@@ -1309,6 +1310,20 @@ class TestInstallMasterKRA(IntegrationTest):
|
||
|
def test_install_master(self):
|
||
|
tasks.install_master(self.master, setup_dns=False, setup_kra=True)
|
||
|
|
||
|
+ def test_ipa_ccache_sweep_timer_enabled(self):
|
||
|
+ """Test ipa-ccache-sweep.timer enabled by default during installation
|
||
|
+
|
||
|
+ This test checks that ipa-ccache-sweep.timer is enabled by default
|
||
|
+ during the ipa installation.
|
||
|
+
|
||
|
+ related: https://pagure.io/freeipa/issue/9107
|
||
|
+ """
|
||
|
+ result = self.master.run_command(
|
||
|
+ ['systemctl', 'is-enabled', 'ipa-ccache-sweep.timer'],
|
||
|
+ raiseonerr=False
|
||
|
+ )
|
||
|
+ assert 'enabled' in result.stdout_text
|
||
|
+
|
||
|
def test_install_dns(self):
|
||
|
tasks.install_dns(self.master)
|
||
|
|
||
|
--
|
||
|
2.34.1
|
||
|
|