[java-idp-integration-tests] branch main updated: Test user prefs consent revocation on IdP 5.1 or later
Tom Zeller
tzeller at dragonacea.biz
Thu Dec 21 14:58:24 UTC 2023
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=401a2c1c4385e5903ac369f01da51a2df3c4e47a
The following commit(s) were added to refs/heads/main by this push:
new 401a2c1 Test user prefs consent revocation on IdP 5.1 or later
401a2c1 is described below
commit 401a2c1c4385e5903ac369f01da51a2df3c4e47a
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Dec 21 08:58:15 2023 -0600
Test user prefs consent revocation on IdP 5.1 or later
https://shibboleth.atlassian.net/browse/IDP-2175
---
.../idp/integration/tests/consent/UserPrefsRevokeConsentTest.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/test/java/net/shibboleth/idp/integration/tests/consent/UserPrefsRevokeConsentTest.java b/src/test/java/net/shibboleth/idp/integration/tests/consent/UserPrefsRevokeConsentTest.java
index 01bdda9..42dd9dd 100644
--- a/src/test/java/net/shibboleth/idp/integration/tests/consent/UserPrefsRevokeConsentTest.java
+++ b/src/test/java/net/shibboleth/idp/integration/tests/consent/UserPrefsRevokeConsentTest.java
@@ -56,10 +56,16 @@ public class UserPrefsRevokeConsentTest extends AbstractSAML2IntegrationTest {
@Test(dataProvider = "sauceOnDemandBrowserDataProvider")
public void testUserPrefsRevokeConsent(@Nullable final BrowserData browserData) throws Exception {
+ // Skip IdP V4
if (idpVersion.startsWith("4")) {
return;
}
+ // Skip IdP V5.0.X
+ if (idpVersion.startsWith("5.0")) {
+ return;
+ }
+
startSeleniumClient(browserData);
enableModule("idp.intercept.Consent");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list