[java-oidfed-common] 01/02: Renamed test packages to net.shibboleth.oidfed.*

Codeberg noreply at shibboleth.net
Fri May 15 11:19:38 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-oidfed-common.

View the commit online:
https://codeberg.org/Shibboleth/java-oidfed-common/commit/00180b2d6930c6f231a595dd1a4762ddd4a51cc2

commit 00180b2d6930c6f231a595dd1a4762ddd4a51cc2
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri May 15 14:18:31 2026 +0300

    Renamed test packages to net.shibboleth.oidfed.*
---
 .../flow/oidfed => oidfed/flow}/AbstractFederationFlowTest.java   | 2 +-
 .../flow/oidfed => oidfed/flow}/EntityConfigurationFlowTest.java  | 4 ++--
 .../flow}/cache/EntityConfigurationMetadataCacheTest.java         | 8 ++++----
 .../flow}/cache/SignedKeysetMetadataCacheTest.java                | 6 +++---
 .../flow}/cache/SubordinateStatementMetadataCacheTest.java        | 8 ++++----
 .../oidfed => oidfed/flow}/cache/TrustChainMetadataCacheTest.java | 6 +++---
 .../flow}/support/CustomEntityConfigurationFilterStrategy.java    | 2 +-
 .../flow}/support/CustomEntityConfigurationMetadataDecorator.java | 2 +-
 .../flow}/support/CustomSubordinateStatementFilterStrategy.java   | 2 +-
 .../flow}/support/CustomTrustChainFilterStrategy.java             | 2 +-
 .../trustchain/test}/DefaultTrustChainFetchingStrategyTest.java   | 2 +-
 .../src/test/resources/net/shibboleth/idp/module/conf/global.xml  | 8 ++++----
 12 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java
similarity index 99%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java
index 00f8742..e8e49b4 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/AbstractFederationFlowTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed;
+package net.shibboleth.oidfed.flow;
 
 import static org.mockito.ArgumentMatchers.any;
 import static org.mockito.ArgumentMatchers.argThat;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/EntityConfigurationFlowTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/EntityConfigurationFlowTest.java
similarity index 97%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/EntityConfigurationFlowTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/EntityConfigurationFlowTest.java
index d0b1afd..a4f8527 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/EntityConfigurationFlowTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/EntityConfigurationFlowTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed;
+package net.shibboleth.oidfed.flow;
 
 import java.io.IOException;
 import java.net.URLEncoder;
@@ -37,7 +37,7 @@ import com.nimbusds.jwt.SignedJWT;
 import com.nimbusds.oauth2.sdk.ParseException;
 import com.nimbusds.oauth2.sdk.Response;
 
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomEntityConfigurationMetadataDecorator;
+import net.shibboleth.oidfed.flow.support.CustomEntityConfigurationMetadataDecorator;
 import net.shibboleth.oidfed.metadata.EntityConfiguration;
 import net.shibboleth.oidfed.metadata.cache.trustmark.DefaultTrustMarkFetchingStrategy;
 import net.shibboleth.oidfed.metadata.impl.EntityConfigurationImpl;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/EntityConfigurationMetadataCacheTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/EntityConfigurationMetadataCacheTest.java
similarity index 98%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/EntityConfigurationMetadataCacheTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/EntityConfigurationMetadataCacheTest.java
index 4274fc8..4cc247e 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/EntityConfigurationMetadataCacheTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/EntityConfigurationMetadataCacheTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.cache;
+package net.shibboleth.oidfed.flow.cache;
 
 import static org.mockito.ArgumentMatchers.any;
 import static org.mockito.ArgumentMatchers.argThat;
@@ -47,11 +47,11 @@ import com.nimbusds.jwt.JWTClaimsSet;
 import com.nimbusds.jwt.PlainJWT;
 import com.nimbusds.jwt.SignedJWT;
 
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.AbstractFederationFlowTest;
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.EntityConfigurationFlowTest;
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomEntityConfigurationFilterStrategy;
 import net.shibboleth.oidc.metadata.cache.MetadataCache;
 import net.shibboleth.oidc.metadata.cache.MetadataCacheException;
+import net.shibboleth.oidfed.flow.AbstractFederationFlowTest;
+import net.shibboleth.oidfed.flow.EntityConfigurationFlowTest;
+import net.shibboleth.oidfed.flow.support.CustomEntityConfigurationFilterStrategy;
 import net.shibboleth.oidfed.metadata.EntityConfiguration;
 import net.shibboleth.oidfed.metadata.cache.ResponseContainerExpirationCriterion;
 import net.shibboleth.oidfed.metadata.cache.SubjectEntityIDCriterion;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/SignedKeysetMetadataCacheTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/SignedKeysetMetadataCacheTest.java
similarity index 98%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/SignedKeysetMetadataCacheTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/SignedKeysetMetadataCacheTest.java
index a0bd44a..ed9ad09 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/SignedKeysetMetadataCacheTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/SignedKeysetMetadataCacheTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.cache;
+package net.shibboleth.oidfed.flow.cache;
 
 import java.io.IOException;
 import java.net.URI;
@@ -33,10 +33,10 @@ import com.nimbusds.jose.jwk.JWKSet;
 import com.nimbusds.jwt.JWTClaimsSet;
 import com.nimbusds.openid.connect.sdk.rp.OIDCClientMetadata;
 
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.AbstractFederationFlowTest;
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.EntityConfigurationFlowTest;
 import net.shibboleth.oidc.metadata.cache.MetadataCache;
 import net.shibboleth.oidc.metadata.cache.MetadataCacheException;
+import net.shibboleth.oidfed.flow.AbstractFederationFlowTest;
+import net.shibboleth.oidfed.flow.EntityConfigurationFlowTest;
 import net.shibboleth.oidfed.metadata.EntityConfiguration;
 import net.shibboleth.oidfed.metadata.EntityStatement;
 import net.shibboleth.oidfed.metadata.SignedKeyset;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/SubordinateStatementMetadataCacheTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/SubordinateStatementMetadataCacheTest.java
similarity index 99%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/SubordinateStatementMetadataCacheTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/SubordinateStatementMetadataCacheTest.java
index dda1519..31e7ffa 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/SubordinateStatementMetadataCacheTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/SubordinateStatementMetadataCacheTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.cache;
+package net.shibboleth.oidfed.flow.cache;
 
 import static org.mockito.ArgumentMatchers.any;
 import static org.mockito.ArgumentMatchers.argThat;
@@ -47,11 +47,11 @@ import com.nimbusds.jwt.JWTClaimsSet;
 import com.nimbusds.jwt.PlainJWT;
 import com.nimbusds.jwt.SignedJWT;
 
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.AbstractFederationFlowTest;
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.EntityConfigurationFlowTest;
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomSubordinateStatementFilterStrategy;
 import net.shibboleth.oidc.metadata.cache.MetadataCache;
 import net.shibboleth.oidc.metadata.cache.MetadataCacheException;
+import net.shibboleth.oidfed.flow.AbstractFederationFlowTest;
+import net.shibboleth.oidfed.flow.EntityConfigurationFlowTest;
+import net.shibboleth.oidfed.flow.support.CustomSubordinateStatementFilterStrategy;
 import net.shibboleth.oidfed.metadata.EntityStatement;
 import net.shibboleth.oidfed.metadata.SubordinateStatement;
 import net.shibboleth.oidfed.metadata.cache.IssuerEntityIDCriterion;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/TrustChainMetadataCacheTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/TrustChainMetadataCacheTest.java
similarity index 98%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/TrustChainMetadataCacheTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/TrustChainMetadataCacheTest.java
index d543502..309df0a 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/cache/TrustChainMetadataCacheTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/cache/TrustChainMetadataCacheTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.cache;
+package net.shibboleth.oidfed.flow.cache;
 
 import java.io.IOException;
 import java.net.URISyntaxException;
@@ -31,10 +31,10 @@ import com.nimbusds.jose.JWSAlgorithm;
 import com.nimbusds.jose.jwk.JWKSet;
 import com.nimbusds.jwt.JWTClaimsSet;
 
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.AbstractFederationFlowTest;
-import net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.EntityConfigurationFlowTest;
 import net.shibboleth.oidc.metadata.cache.MetadataCache;
 import net.shibboleth.oidc.metadata.cache.MetadataCacheException;
+import net.shibboleth.oidfed.flow.AbstractFederationFlowTest;
+import net.shibboleth.oidfed.flow.EntityConfigurationFlowTest;
 import net.shibboleth.oidfed.metadata.cache.IssuerEntityIDCriterion;
 import net.shibboleth.oidfed.metadata.cache.ResponseContainerExpirationCriterion;
 import net.shibboleth.oidfed.metadata.cache.SubjectEntityIDCriterion;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomEntityConfigurationFilterStrategy.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomEntityConfigurationFilterStrategy.java
similarity index 97%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomEntityConfigurationFilterStrategy.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomEntityConfigurationFilterStrategy.java
index 040a963..8a14f9c 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomEntityConfigurationFilterStrategy.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomEntityConfigurationFilterStrategy.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support;
+package net.shibboleth.oidfed.flow.support;
 
 import java.time.Instant;
 import java.util.Optional;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomEntityConfigurationMetadataDecorator.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomEntityConfigurationMetadataDecorator.java
similarity index 96%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomEntityConfigurationMetadataDecorator.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomEntityConfigurationMetadataDecorator.java
index cc9d43a..73de5a2 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomEntityConfigurationMetadataDecorator.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomEntityConfigurationMetadataDecorator.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support;
+package net.shibboleth.oidfed.flow.support;
 
 import java.util.Map;
 
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomSubordinateStatementFilterStrategy.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomSubordinateStatementFilterStrategy.java
similarity index 97%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomSubordinateStatementFilterStrategy.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomSubordinateStatementFilterStrategy.java
index a5396cf..7ec8456 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomSubordinateStatementFilterStrategy.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomSubordinateStatementFilterStrategy.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support;
+package net.shibboleth.oidfed.flow.support;
 
 import java.time.Instant;
 import java.util.Optional;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomTrustChainFilterStrategy.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomTrustChainFilterStrategy.java
similarity index 96%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomTrustChainFilterStrategy.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomTrustChainFilterStrategy.java
index d4bbe65..45b50ed 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/profile/flow/oidfed/support/CustomTrustChainFilterStrategy.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/support/CustomTrustChainFilterStrategy.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support;
+package net.shibboleth.oidfed.flow.support;
 
 import java.util.List;
 import java.util.Optional;
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/cache/trustchain/DefaultTrustChainFetchingStrategyTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/metadata/cache/trustchain/test/DefaultTrustChainFetchingStrategyTest.java
similarity index 99%
rename from oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/cache/trustchain/DefaultTrustChainFetchingStrategyTest.java
rename to oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/metadata/cache/trustchain/test/DefaultTrustChainFetchingStrategyTest.java
index 9e9caec..a10cb6b 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/idp/plugin/oidc/op/oidfed/metadata/cache/trustchain/DefaultTrustChainFetchingStrategyTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/metadata/cache/trustchain/test/DefaultTrustChainFetchingStrategyTest.java
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-package net.shibboleth.idp.plugin.oidc.op.oidfed.metadata.cache.trustchain;
+package net.shibboleth.oidfed.metadata.cache.trustchain.test;
 
 import static org.mockito.Mockito.any;
 import static org.mockito.Mockito.mock;
diff --git a/oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/global.xml b/oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/global.xml
index d6f592e..480cd19 100644
--- a/oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/global.xml
+++ b/oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/global.xml
@@ -13,7 +13,7 @@
        default-destroy-method="destroy">
 
     <bean id="CustomEntityConfigurationMetadataDecorator"
-        class="net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomEntityConfigurationMetadataDecorator" />
+        class="net.shibboleth.oidfed.flow.support.CustomEntityConfigurationMetadataDecorator" />
 
     <bean id="MockitoMockFactory" class="org.mockito.Mockito" />
 
@@ -30,15 +30,15 @@
     </bean>
 
     <util:list id="CustomEntityConfigurationFilters">
-        <bean class="net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomEntityConfigurationFilterStrategy"/>
+        <bean class="net.shibboleth.oidfed.flow.support.CustomEntityConfigurationFilterStrategy"/>
     </util:list>
 
     <util:list id="CustomSubordinateStatementFilters">
-        <bean class="net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomSubordinateStatementFilterStrategy"/>
+        <bean class="net.shibboleth.oidfed.flow.support.CustomSubordinateStatementFilterStrategy"/>
     </util:list>
 
     <util:list id="CustomTrustChainFilters">
-        <bean class="net.shibboleth.idp.plugin.oidc.op.profile.flow.oidfed.support.CustomTrustChainFilterStrategy"/>
+        <bean class="net.shibboleth.oidfed.flow.support.CustomTrustChainFilterStrategy"/>
     </util:list>
 
     <util:set id="testbed.MetadataIndexes">

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list