Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1466,6 +1466,7 @@ public void MPJwtConfigUsingBuilderTests_FromHeader_AllowOnlyHS512_tokenWithMatc
* @throws Exception
*/
@ExpectedFFDC({ "org.jose4j.jwt.consumer.InvalidJwtSignatureException" })
@SkipJavaSemeruWithFipsEnabledRule
@Test
public void MPJwtConfigUsingBuilderTests_FromHeader_AllowOnlyRS256_tokenWithMatchAndMisMatchSigAlgs() throws Exception {
resourceServer.reconfigureServerUsingExpandedConfiguration(_testName, "rs_server_sigAlg_FROM_HEADER_allow_RS256.xml");
Expand All @@ -1479,6 +1480,7 @@ public void MPJwtConfigUsingBuilderTests_FromHeader_AllowOnlyRS256_tokenWithMatc
* @throws Exception
*/
@ExpectedFFDC({ "org.jose4j.jwt.consumer.InvalidJwtSignatureException" })
@SkipJavaSemeruWithFipsEnabledRule
@Test
public void MPJwtConfigUsingBuilderTests_FromHeader_AllowOnlyRS384_tokenWithMatchAndMisMatchSigAlgs() throws Exception {
resourceServer.reconfigureServerUsingExpandedConfiguration(_testName, "rs_server_sigAlg_FROM_HEADER_allow_RS384.xml");
Expand All @@ -1492,6 +1494,7 @@ public void MPJwtConfigUsingBuilderTests_FromHeader_AllowOnlyRS384_tokenWithMatc
* @throws Exception
*/
@ExpectedFFDC({ "org.jose4j.jwt.consumer.InvalidJwtSignatureException" })
@SkipJavaSemeruWithFipsEnabledRule
@Test
public void MPJwtConfigUsingBuilderTests_FromHeader_AllowOnlyRS512_tokenWithMatchAndMisMatchSigAlgs() throws Exception {
resourceServer.reconfigureServerUsingExpandedConfiguration(_testName, "rs_server_sigAlg_FROM_HEADER_allow_RS512.xml");
Expand Down Expand Up @@ -1556,6 +1559,7 @@ public void MPJwtConfigUsingBuilderTests_FromHeader_AllowAllHSAlgs_tokenWithMatc
* @throws Exception
*/
@ExpectedFFDC({ "org.jose4j.jwt.consumer.InvalidJwtSignatureException" })
@SkipJavaSemeruWithFipsEnabledRule
@Test
public void MPJwtConfigUsingBuilderTests_FromHeader_AllowAllRSAlgs_tokenWithMatchAndMisMatchSigAlgs() throws Exception {
resourceServer.reconfigureServerUsingExpandedConfiguration(_testName, "rs_server_sigAlg_FROM_HEADER_allow_RSAlgs.xml");
Expand Down Expand Up @@ -1583,6 +1587,7 @@ public void MPJwtConfigUsingBuilderTests_FromHeader_AllowAllESAlgs_tokenWithMatc
*/
@ExpectedFFDC({ "org.jose4j.jwt.consumer.InvalidJwtSignatureException" })
@Mode(TestMode.LITE)
@SkipJavaSemeruWithFipsEnabledRule
@Test
public void MPJwtConfigUsingBuilderTests_FromHeader_AllowMixedAlgs_tokenWithMatchAndMisMatchSigAlgs() throws Exception {
resourceServer.reconfigureServerUsingExpandedConfiguration(_testName, "rs_server_sigAlg_FROM_HEADER_allow_HS256RS384ES512.xml");
Expand All @@ -1595,6 +1600,7 @@ public void MPJwtConfigUsingBuilderTests_FromHeader_AllowMixedAlgs_tokenWithMatc
* @throws Exception
*/
@ExpectedFFDC({ "org.jose4j.jwt.consumer.InvalidJwtSignatureException" })
@SkipJavaSemeruWithFipsEnabledRule
@Test
public void MPJwtConfigUsingBuilderTests_FromHeader_tokenWithMatchAndMisMatchSigAlgs() throws Exception {
resourceServer.reconfigureServerUsingExpandedConfiguration(_testName, "rs_server_sigAlg_FROM_HEADER.xml");
Expand Down