Draft
Fix oidcc-prompt-login test for conformance suite v5.1.43 / Keycloak 26.6.3#2
Conversation
Update conformance suite from v5.1.41 to v5.1.43 and Keycloak from 26.6.0 to 26.6.3 as reported in keycloak#1021. Fix the browser automation URL match pattern for the oidcc-prompt-login test by adding a trailing wildcard (*) to the prompt=login match. Without this, the pattern only matches URLs where prompt=login is the last parameter, which can fail if the conformance suite v5.1.43 places it before other parameters in the authorization URL. This is consistent with the existing oidcc-max-age-1 pattern which already uses a trailing wildcard: auth*max_age=* Closes keycloak#1021
Copilot
AI
changed the title
fix: update versions and fix oidcc-prompt-login URL match pattern for conformance suite v5.1.43 and Keycloak 26.6.3
Fix oidcc-prompt-login test for conformance suite v5.1.43 / Keycloak 26.6.3
Jun 7, 2026
Copilot created this pull request from a session on behalf of
tnorimat
June 7, 2026 11:15
View session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
oidcc-prompt-loginresults INTERRUPTED/FAILED with conformance suite v5.1.43 and Keycloak 26.6.3 (keycloak#1021).Root cause
The browser automation URL match pattern for the "Prompted Login" task requires
prompt=loginto be the last query parameter:If the conformance suite reorders parameters so
prompt=loginis no longer terminal, this task never matches. The automation falls through to "Initial Login" which expects both username and password fields — but the re-auth page only has password, causing INTERRUPTED.The existing
oidcc-max-age-1pattern already handles this correctly with a trailing wildcard:auth*max_age=*.Changes
v5.1.41→v5.1.43, Keycloak26.6.0→26.6.3(in.envand CI workflow)*to the prompt=login match across all 18 OIDC automated test configsInvestigation notes
Diffed Keycloak templates between 26.6.0 and 26.6.3 — login page structure, alert XPath/classes, message text,
authChecker.js,login-password.ftl, andbuttons.ftlare all identical. The issue is entirely in the client-side test automation config.