URL: https://github.com/freeipa/freeipa/pull/3644 Author: ndehadrai Title: #3644: Hidden Replica: Add a test for Automatic CRL configuration Action: opened
PR body: """ Added tests to check scenario whether automatic CRL configuration is successful on a replica which is configured as a hidden replica. Related Tickets: https://pagure.io/freeipa/issue/7307 Signed-off-by: ndehadra <ndeha...@redhat.com> """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/3644/head:pr3644 git checkout pr3644
From 51e6d582ede48b473ecd57515671b9c9a52eed81 Mon Sep 17 00:00:00 2001 From: ndehadra <ndeha...@redhat.com> Date: Tue, 10 Sep 2019 17:14:31 +0530 Subject: [PATCH] Temp_commit Signed-off-by: ndehadra <ndeha...@redhat.com> --- .freeipa-pr-ci.yaml | 2 +- ipatests/prci_definitions/temp_commit.yaml | 6 +++--- .../test_integration/test_replica_promotion.py | 18 ++++++++++++++++++ 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.freeipa-pr-ci.yaml b/.freeipa-pr-ci.yaml index abcf8c5b63..8065669008 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 9cd8a0a9cd..e7ede3da73 100644 --- a/ipatests/prci_definitions/temp_commit.yaml +++ b/ipatests/prci_definitions/temp_commit.yaml @@ -60,7 +60,7 @@ jobs: class: RunPytest args: build_url: '{fedora-30/build_url}' - test_suite: test_integration/test_REPLACEME.py + test_suite: test_integration/test_replica_promotion.py::TestHiddenReplicaPromotion template: *ci-master-f30 - timeout: 3600 - topology: *master_1repl_1client + timeout: 10150 + topology: *master_2repl_1client diff --git a/ipatests/test_integration/test_replica_promotion.py b/ipatests/test_integration/test_replica_promotion.py index 68240eb592..b5374ac1c1 100644 --- a/ipatests/test_integration/test_replica_promotion.py +++ b/ipatests/test_integration/test_replica_promotion.py @@ -925,3 +925,21 @@ def test_hidden_replica_backup_and_restore(self): # FIXME: restore turns hidden replica into enabled replica self._check_config([self.master, self.replicas[0]]) self._check_server_role(self.replicas[0], 'enabled') + + def test_hidden_replica_automatic_crl(self): + """Exercises if automatic CRL configuration works with + hidden replica. + """ + self._check_server_role(self.replicas[0], 'hidden') + # check CRL status + result = self.replicas[0].run_command([ + 'ipa-crlgen-manage', 'status']) + assert "CRL generation: disabled" in result.stdout_text + # Enbable CRL status on hidden replica + self.replicas[0].run_command([ + 'ipa-crlgen-manage', 'enable']) + # check CRL status + result = self.replicas[0].run_command([ + 'ipa-crlgen-manage', 'status']) + assert "CRL generation: enabled" in result.stdout_text +
_______________________________________________ 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