Move the test

This commit is contained in:
Michael Telatynski
2025-05-08 08:41:26 +01:00
parent 8c6d934cb9
commit 97aa4575d0

View File

@@ -189,12 +189,6 @@ test_redirect_uris if {
"redirect_uris": [],
}
# HTTPS redirect_uri with non-standard port
client_registration.allow with input.client_metadata as {
"client_uri": "https://example.com/",
"redirect_uris": ["https://example.com:8443/callback"],
}
# Not required for the client_credentials grant
client_registration.allow with input.client_metadata as {
"grant_types": ["client_credentials"],
@@ -220,6 +214,13 @@ test_web_redirect_uri if {
"client_uri": "https://example.com/",
"redirect_uris": ["https://example.com/second/callback", "https://example.com/callback", "https://example.com/callback?query=value"],
}
# HTTPS redirect_uri with non-standard port
client_registration.allow with input.client_metadata as {
"application_type": "web",
"client_uri": "https://example.com/",
"redirect_uris": ["https://example.com:8443/callback"],
}
}
test_web_redirect_uri_insecure if {