From a0a104a42c2ccd89394e48c2375bb0eb95183c5b Mon Sep 17 00:00:00 2001 From: Scott Poore Date: Mon, 15 Aug 2022 16:09:34 -0500 Subject: [PATCH] ipatests: Rename create_quarkus to create_keycloak The module installs and configures a Keycloak server and not just the Quarkus Java framework. So, renaming to better reflect what the module is used for. Fixes: https://pagure.io/freeipa/issue/9225 Reviewed-By: Alexander Bokovoy --- .../integration/{create_quarkus.py => create_keycloak.py} | 0 ipatests/test_integration/test_idp.py | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename ipatests/pytest_ipa/integration/{create_quarkus.py => create_keycloak.py} (100%) diff --git a/ipatests/pytest_ipa/integration/create_quarkus.py b/ipatests/pytest_ipa/integration/create_keycloak.py similarity index 100% rename from ipatests/pytest_ipa/integration/create_quarkus.py rename to ipatests/pytest_ipa/integration/create_keycloak.py diff --git a/ipatests/test_integration/test_idp.py b/ipatests/test_integration/test_idp.py index 2e84d3607..663c75b02 100644 --- a/ipatests/test_integration/test_idp.py +++ b/ipatests/test_integration/test_idp.py @@ -7,7 +7,7 @@ import re import textwrap from ipaplatform.paths import paths from ipatests.test_integration.base import IntegrationTest -from ipatests.pytest_ipa.integration import tasks, create_quarkus +from ipatests.pytest_ipa.integration import tasks, create_keycloak user_code_script = textwrap.dedent(""" from selenium import webdriver @@ -107,9 +107,9 @@ class TestIDPKeycloak(IntegrationTest): Authorization Grant is working as expected for user configured with external idp. """ - create_quarkus.setup_keycloakserver(self.client) + create_keycloak.setup_keycloakserver(self.client) time.sleep(60) - create_quarkus.setup_keycloak_client(self.client) + create_keycloak.setup_keycloak_client(self.client) tasks.kinit_admin(self.master) cmd = ["ipa", "idp-add", "keycloakidp", "--provider=keycloak", "--client-id=ipa_oidc_client", "--org=master",