[java-idp-integration-tests] branch main updated (88b7041 -> 345cb9c)
Tom Zeller
tzeller at dragonacea.biz
Wed Aug 28 22:38:28 UTC 2024
This is an automated email from the git hooks/post-receive script.
tzeller pushed a change to branch main
in repository java-idp-integration-tests.
from 88b7041 Remove IdP 5.1 snapshot tests
new 389152d Bump Selenium
new 371ed84 Cleanup - move utilities to util package
new ad1041a Cleanup - remove TestNG data provider and simplify Sauce Labs
new 4e258a6 Cleanup - fix renamed method
new a6cc03e Cleanup - rename OIDCTest to OPTest and extract abstract test class
new 42291b0 Cleanup
new 54c7f06 Cleanup - reorder AbstractOPTest methods
new f8f8a52 JOIDC-147 - Initial OP plugin Conformance Suite tests
new 2ecb362 Formatting and Javadoc
new 345cb9c Conditionally run Linux, IdP V5+, and conformance OP tests
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
pom.xml | 2 +-
.../idp/integration/tests/BaseIntegrationTest.java | 306 ++---
.../idp/integration/tests/BrowserData.java | 140 --
.../idp/integration/tests/ModuleTest.java | 8 +-
.../idp/integration/tests/StatusTest.java | 8 +-
.../integration/tests/cas/CASIntegrationTest.java | 13 +-
.../tests/clientstorage/ClientStorageTest.java | 18 +-
.../tests/consent/UserPrefsRevokeConsentTest.java | 13 +-
.../oidc/{OIDCTest.java => AbstractOPTest.java} | 450 +++----
.../tests/oidc/ConformanceSuiteContainer.java | 514 ++++++++
.../integration/tests/oidc/OPConformanceTest.java | 310 +++++
.../idp/integration/tests/oidc/OPTest.java | 149 +++
.../tests/plugins/DuoNimbusPluginTest.java | 8 +-
.../tests/plugins/DuoSDKPluginTest.java | 8 +-
.../tests/plugins/InstallAllPluginsTest.java | 8 +-
.../plugins/JDBCStorageServicePluginTest.java | 8 +-
.../tests/plugins/MetadatagenPluginTest.java | 8 +-
.../tests/plugins/NashornPluginTest.java | 8 +-
.../tests/plugins/OIDCCommonPluginTest.java | 8 +-
.../integration/tests/plugins/OIDCPluginTest.java | 8 +-
.../integration/tests/plugins/RhinoPluginTest.java | 8 +-
.../integration/tests/plugins/TOTPPluginTest.java | 8 +-
.../tests/saml1/AbstractSAML1IntegrationTest.java | 14 +-
.../saml1/SAML1UnsolicitedSSOIntegrationTest.java | 16 +-
.../tests/saml2/AbstractSAML2IntegrationTest.java | 65 +-
.../saml2/SAML2AttributeQueryIntegrationTest.java | 102 +-
.../tests/saml2/SAML2SSOPOSTIntegrationTest.java | 64 +-
.../saml2/SAML2SSORedirectIntegrationTest.java | 76 +-
.../saml2/SAML2SSORedirectLDAPIntegrationTest.java | 15 +-
.../saml2/SAML2UnsolicitedSSOIntegrationTest.java | 47 +-
.../tests/ui/csrf/CSRFMitigationTest.java | 9 +-
.../tests/{ => util}/Route53Helper.java | 54 +-
.../{ => util/server}/AbstractServerProcess.java | 3 +-
.../{ => util/server}/JettyServerProcess.java | 2 +-
.../{ => util/server}/TomcatServerProcess.java | 3 +-
.../tests/util/testng/IgnoreTestIntercepter.java | 130 ++
.../tests/{ => util/testng}/TestNameLogger.java | 2 +-
.../tests/util/testng/annotation/IdPV5OrLater.java | 13 +
.../tests/util/testng/annotation/LinuxOnly.java | 13 +
.../util/testng/annotation/OPConformance.java | 13 +
.../skip-oidcc-idtoken-unsigned.json | 7 +
.../skip-oidcc-server-rotate-keys.json | 10 +
.../conformance-suite/testop-config-logout.json | 1393 ++++++++++++++++++++
src/test/oidc/conformance-suite/testop-config.json | 562 ++++++++
44 files changed, 3700 insertions(+), 924 deletions(-)
delete mode 100644 src/test/java/net/shibboleth/idp/integration/tests/BrowserData.java
rename src/test/java/net/shibboleth/idp/integration/tests/oidc/{OIDCTest.java => AbstractOPTest.java} (83%)
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/oidc/ConformanceSuiteContainer.java
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/oidc/OPConformanceTest.java
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/oidc/OPTest.java
rename src/test/java/net/shibboleth/idp/integration/tests/{ => util}/Route53Helper.java (98%)
rename src/test/java/net/shibboleth/idp/integration/tests/{ => util/server}/AbstractServerProcess.java (99%)
rename src/test/java/net/shibboleth/idp/integration/tests/{ => util/server}/JettyServerProcess.java (98%)
rename src/test/java/net/shibboleth/idp/integration/tests/{ => util/server}/TomcatServerProcess.java (97%)
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/util/testng/IgnoreTestIntercepter.java
rename src/test/java/net/shibboleth/idp/integration/tests/{ => util/testng}/TestNameLogger.java (97%)
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/util/testng/annotation/IdPV5OrLater.java
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/util/testng/annotation/LinuxOnly.java
create mode 100644 src/test/java/net/shibboleth/idp/integration/tests/util/testng/annotation/OPConformance.java
create mode 100644 src/test/oidc/conformance-suite/skip-oidcc-idtoken-unsigned.json
create mode 100644 src/test/oidc/conformance-suite/skip-oidcc-server-rotate-keys.json
create mode 100644 src/test/oidc/conformance-suite/testop-config-logout.json
create mode 100644 src/test/oidc/conformance-suite/testop-config.json
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list