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 <abokovoy@redhat.com>
This commit is contained in:
Scott Poore 2022-08-15 16:09:34 -05:00 committed by Florence Blanc-Renaud
parent de6f074538
commit a0a104a42c
2 changed files with 3 additions and 3 deletions

View File

@ -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",