Mentions légales du service

Skip to content
Snippets Groups Projects
Commit cf0a7cc5 authored by Jujube Orange's avatar Jujube Orange
Browse files

test: verify log behavior on missing JWT field 'alg'

parent f02c7f18
No related branches found
No related tags found
1 merge request!88fix: HTTP 500 on corrupt JWT wit missing alg
Pipeline #645349 failed
...@@ -311,6 +311,16 @@ class VerifyControllerTest { ...@@ -311,6 +311,16 @@ class VerifyControllerTest {
givenJwt(kid = "AnotherKID"), givenJwt(kid = "AnotherKID"),
"JWT signature is invalid:" "JWT signature is invalid:"
), ),
Arguments.of(
"the alg field is missing",
givenJwt().replaceBefore(".", Base64.getEncoder().encodeToString("""{"kid": "TousAntiCovidKID","typ":"JWT"}""".toByteArray())),
"JWT could not be parsed: Invalid JWS header: Missing \"alg\" in header JSON object,"
),
Arguments.of(
"the JWT header is corrupt",
givenJwt().replaceBefore(".", "Z"),
"JWT could not be parsed: NullPointerException,"
),
) )
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment