[java-idp-integration-tests] branch main updated: Fix failing test for IdP 5.1.4
Tom Zeller
tzeller at dragonacea.biz
Mon Jun 9 21:10:41 UTC 2025
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=afa29b61cbcacc1608abf11345f1ee29ffbce1cf
The following commit(s) were added to refs/heads/main by this push:
new afa29b6 Fix failing test for IdP 5.1.4
afa29b6 is described below
commit afa29b61cbcacc1608abf11345f1ee29ffbce1cf
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon Jun 9 16:10:27 2025 -0500
Fix failing test for IdP 5.1.4
---
.../integration/tests/consent/PruneRecordsPostgresConsentTest.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/test/java/net/shibboleth/idp/integration/tests/consent/PruneRecordsPostgresConsentTest.java b/src/test/java/net/shibboleth/idp/integration/tests/consent/PruneRecordsPostgresConsentTest.java
index a7abdd5..6426885 100644
--- a/src/test/java/net/shibboleth/idp/integration/tests/consent/PruneRecordsPostgresConsentTest.java
+++ b/src/test/java/net/shibboleth/idp/integration/tests/consent/PruneRecordsPostgresConsentTest.java
@@ -165,6 +165,12 @@ public class PruneRecordsPostgresConsentTest extends BasePostgresConsentTest {
responsePageURLPath = "/sp/SAML2/POST/ACS";
+ // expect JSON runtime exception for IdP 5.1 (or earlier)
+ if (idpVersion.startsWith("5.1")) {
+ waitForPageBodyContains("jakarta.json.stream.JsonParsingException");
+ return;
+ }
+
waitForResponsePage();
validateResponse();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list