[java-opensaml] branch main updated: Rename overlooked test API.
Scott Cantor
cantor.2 at osu.edu
Thu Sep 17 18:39:08 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=3f8b2acf1ce184ebb0f59d0f68af77ae07b50987
The following commit(s) were added to refs/heads/main by this push:
new 3f8b2acf1 Rename overlooked test API.
3f8b2acf1 is described below
commit 3f8b2acf1ce184ebb0f59d0f68af77ae07b50987
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Sep 17 14:39:05 2020 -0400
Rename overlooked test API.
---
.../security/impl/SAMLMetadataEncryptionParametersResolverTest.java | 2 +-
.../opensaml/security/{ => testing}/SecurityProviderTestSupport.java | 2 +-
.../test/java/org/opensaml/xmlsec/algorithm/AlgorithmRegistryTest.java | 2 +-
.../test/java/org/opensaml/xmlsec/encryption/support/AESGCMTest.java | 2 +-
.../org/opensaml/xmlsec/encryption/support/SimpleDecryptionTest.java | 2 +-
.../org/opensaml/xmlsec/encryption/support/SimpleEncryptionTest.java | 2 +-
.../opensaml/xmlsec/impl/AlgorithmRuntimeSupportedPredicateTest.java | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/opensaml-saml-impl/src/test/java/org/opensaml/saml/security/impl/SAMLMetadataEncryptionParametersResolverTest.java b/opensaml-saml-impl/src/test/java/org/opensaml/saml/security/impl/SAMLMetadataEncryptionParametersResolverTest.java
index e33d78745..b6b3fc58e 100644
--- a/opensaml-saml-impl/src/test/java/org/opensaml/saml/security/impl/SAMLMetadataEncryptionParametersResolverTest.java
+++ b/opensaml-saml-impl/src/test/java/org/opensaml/saml/security/impl/SAMLMetadataEncryptionParametersResolverTest.java
@@ -48,12 +48,12 @@ import org.opensaml.saml.saml2.metadata.EntityDescriptor;
import org.opensaml.saml.saml2.metadata.KeyDescriptor;
import org.opensaml.saml.saml2.metadata.RoleDescriptor;
import org.opensaml.saml.saml2.metadata.SPSSODescriptor;
-import org.opensaml.security.SecurityProviderTestSupport;
import org.opensaml.security.credential.Credential;
import org.opensaml.security.credential.CredentialSupport;
import org.opensaml.security.credential.UsageType;
import org.opensaml.security.crypto.JCAConstants;
import org.opensaml.security.crypto.KeySupport;
+import org.opensaml.security.testing.SecurityProviderTestSupport;
import org.opensaml.xmlsec.EncryptionParameters;
import org.opensaml.xmlsec.KeyTransportAlgorithmPredicate;
import org.opensaml.xmlsec.algorithm.AlgorithmRegistry;
diff --git a/opensaml-security-api/src/test/java/org/opensaml/security/SecurityProviderTestSupport.java b/opensaml-security-api/src/test/java/org/opensaml/security/testing/SecurityProviderTestSupport.java
similarity index 98%
rename from opensaml-security-api/src/test/java/org/opensaml/security/SecurityProviderTestSupport.java
rename to opensaml-security-api/src/test/java/org/opensaml/security/testing/SecurityProviderTestSupport.java
index 8f8a63ea3..8da01cfcb 100644
--- a/opensaml-security-api/src/test/java/org/opensaml/security/SecurityProviderTestSupport.java
+++ b/opensaml-security-api/src/test/java/org/opensaml/security/testing/SecurityProviderTestSupport.java
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package org.opensaml.security;
+package org.opensaml.security.testing;
import java.security.Security;
diff --git a/opensaml-xmlsec-api/src/test/java/org/opensaml/xmlsec/algorithm/AlgorithmRegistryTest.java b/opensaml-xmlsec-api/src/test/java/org/opensaml/xmlsec/algorithm/AlgorithmRegistryTest.java
index f8b821d86..902a00fd7 100644
--- a/opensaml-xmlsec-api/src/test/java/org/opensaml/xmlsec/algorithm/AlgorithmRegistryTest.java
+++ b/opensaml-xmlsec-api/src/test/java/org/opensaml/xmlsec/algorithm/AlgorithmRegistryTest.java
@@ -23,8 +23,8 @@ import java.util.Set;
import org.opensaml.core.config.ConfigurationService;
import org.opensaml.core.config.InitializationException;
import org.opensaml.core.testing.OpenSAMLInitBaseTestCase;
-import org.opensaml.security.SecurityProviderTestSupport;
import org.opensaml.security.crypto.JCAConstants;
+import org.opensaml.security.testing.SecurityProviderTestSupport;
import org.opensaml.xmlsec.algorithm.AlgorithmDescriptor.AlgorithmType;
import org.opensaml.xmlsec.algorithm.descriptors.DigestSHA256;
import org.opensaml.xmlsec.algorithm.descriptors.SignatureRSASHA256;
diff --git a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/AESGCMTest.java b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/AESGCMTest.java
index 4240643ef..6f596ddd2 100644
--- a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/AESGCMTest.java
+++ b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/AESGCMTest.java
@@ -21,8 +21,8 @@ import javax.crypto.Cipher;
import org.opensaml.core.testing.XMLObjectBaseTestCase;
import org.opensaml.core.xml.XMLObject;
-import org.opensaml.security.SecurityProviderTestSupport;
import org.opensaml.security.credential.Credential;
+import org.opensaml.security.testing.SecurityProviderTestSupport;
import org.opensaml.xmlsec.algorithm.AlgorithmDescriptor;
import org.opensaml.xmlsec.algorithm.AlgorithmRegistry;
import org.opensaml.xmlsec.algorithm.AlgorithmSupport;
diff --git a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleDecryptionTest.java b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleDecryptionTest.java
index 00faa2559..cfa768907 100644
--- a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleDecryptionTest.java
+++ b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleDecryptionTest.java
@@ -31,9 +31,9 @@ import net.shibboleth.utilities.java.support.xml.XMLParserException;
import org.opensaml.core.testing.XMLObjectBaseTestCase;
import org.opensaml.core.xml.XMLObject;
-import org.opensaml.security.SecurityProviderTestSupport;
import org.opensaml.security.credential.BasicCredential;
import org.opensaml.security.credential.Credential;
+import org.opensaml.security.testing.SecurityProviderTestSupport;
import org.opensaml.xmlsec.algorithm.AlgorithmSupport;
import org.opensaml.xmlsec.encryption.EncryptedData;
import org.opensaml.xmlsec.encryption.EncryptedKey;
diff --git a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleEncryptionTest.java b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleEncryptionTest.java
index 415241bc7..7f271aab9 100644
--- a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleEncryptionTest.java
+++ b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/SimpleEncryptionTest.java
@@ -29,9 +29,9 @@ import net.shibboleth.utilities.java.support.xml.XMLParserException;
import org.opensaml.core.testing.XMLObjectBaseTestCase;
import org.opensaml.core.xml.XMLObject;
-import org.opensaml.security.SecurityProviderTestSupport;
import org.opensaml.security.credential.CredentialSupport;
import org.opensaml.security.crypto.KeySupport;
+import org.opensaml.security.testing.SecurityProviderTestSupport;
import org.opensaml.xmlsec.algorithm.AlgorithmSupport;
import org.opensaml.xmlsec.encryption.EncryptedData;
import org.opensaml.xmlsec.encryption.EncryptedKey;
diff --git a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/impl/AlgorithmRuntimeSupportedPredicateTest.java b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/impl/AlgorithmRuntimeSupportedPredicateTest.java
index a0c9a23df..88362ed24 100644
--- a/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/impl/AlgorithmRuntimeSupportedPredicateTest.java
+++ b/opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/impl/AlgorithmRuntimeSupportedPredicateTest.java
@@ -20,7 +20,7 @@ package org.opensaml.xmlsec.impl;
import org.opensaml.core.config.ConfigurationService;
import org.opensaml.core.config.InitializationException;
import org.opensaml.core.testing.OpenSAMLInitBaseTestCase;
-import org.opensaml.security.SecurityProviderTestSupport;
+import org.opensaml.security.testing.SecurityProviderTestSupport;
import org.opensaml.xmlsec.algorithm.AlgorithmRegistry;
import org.opensaml.xmlsec.algorithm.AlgorithmSupport;
import org.opensaml.xmlsec.config.GlobalAlgorithmRegistryInitializer;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list