[java-identity-provider] branch maint-3.4 updated: Disable PKIX tests due to Java 7 cert incompatibility for now.
Scott Cantor
cantor.2 at osu.edu
Wed Dec 26 13:40:14 EST 2018
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch maint-3.4
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=dd7317081a81807b8d37acf9acd9508e10de0ea0
The following commit(s) were added to refs/heads/maint-3.4 by this push:
new dd73170 Disable PKIX tests due to Java 7 cert incompatibility for now.
dd73170 is described below
commit dd7317081a81807b8d37acf9acd9508e10de0ea0
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Dec 26 13:40:11 2018 -0500
Disable PKIX tests due to Java 7 cert incompatibility for now.
---
.../resolver/spring/dc/http/HTTPDataConnectorParserTest.java | 11 +++++++----
.../metadata/DynamicHTTPMetadataProviderParserTest.java | 4 ++--
.../relyingparty/metadata/HTTPMetadataProviderParserTest.java | 6 ++++--
3 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/idp-attribute-resolver-spring/src/test/java/net/shibboleth/idp/attribute/resolver/spring/dc/http/HTTPDataConnectorParserTest.java b/idp-attribute-resolver-spring/src/test/java/net/shibboleth/idp/attribute/resolver/spring/dc/http/HTTPDataConnectorParserTest.java
index 723ebed..a734470 100644
--- a/idp-attribute-resolver-spring/src/test/java/net/shibboleth/idp/attribute/resolver/spring/dc/http/HTTPDataConnectorParserTest.java
+++ b/idp-attribute-resolver-spring/src/test/java/net/shibboleth/idp/attribute/resolver/spring/dc/http/HTTPDataConnectorParserTest.java
@@ -70,7 +70,8 @@ public class HTTPDataConnectorParserTest {
pendingTeardownContext = context;
}
- @Test public void v2Config() throws Exception {
+ @Test(enabled=false)
+ public void v2Config() throws Exception {
final MockPropertySource propSource = singletonPropertySource("serviceURL", TEST_URL);
propSource.setProperty("scriptPath", (TestSupport.isJavaV8OrLater() ? SCRIPT_PATH_V8 : SCRIPT_PATH) + "test.js");
@@ -246,7 +247,8 @@ public class HTTPDataConnectorParserTest {
connector.resolve(context);
}
- @Test public void v2ClientCertificate() throws Exception {
+ @Test(enabled=false)
+ public void v2ClientCertificate() throws Exception {
// Could use a better test for this end to end.
@@ -281,7 +283,8 @@ public class HTTPDataConnectorParserTest {
Assert.assertEquals(attrs.get("bar").getValues().get(1).getValue(), "bar2");
}
- @Test public void hybridConfig() throws Exception {
+ @Test(enabled=false)
+ public void hybridConfig() throws Exception {
final MockPropertySource propSource = singletonPropertySource("serviceURL", TEST_URL);
propSource.setProperty("scriptPath", (TestSupport.isJavaV8OrLater() ? SCRIPT_PATH_V8 : SCRIPT_PATH) + "test.js");
propSource.setProperty("userAgent", "disguised/1.0.0 hidden/3.4.5");
@@ -311,7 +314,7 @@ public class HTTPDataConnectorParserTest {
Assert.assertTrue(connector.getResultsCache().size() == 1);
}
- @Test(enabled=false) public void v2ConfigPOST() throws Exception {
+ @Test public void v2ConfigPOST() throws Exception {
final MockPropertySource propSource = singletonPropertySource("serviceURL", "https://shibboleth.net/cgi-bin/_frobnitz.cgi");
propSource.setProperty("serviceBody",
diff --git a/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/DynamicHTTPMetadataProviderParserTest.java b/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/DynamicHTTPMetadataProviderParserTest.java
index db4c485..ab0a5d5 100644
--- a/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/DynamicHTTPMetadataProviderParserTest.java
+++ b/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/DynamicHTTPMetadataProviderParserTest.java
@@ -421,7 +421,7 @@ public class DynamicHTTPMetadataProviderParserTest extends AbstractMetadataParse
Assert.assertNull(ed);
}
- @Test
+ @Test(enabled=false)
public void testHTTPSTrustEngineValidPKIX() throws Exception {
MockPropertySource propSource = singletonPropertySource(PROP_MDURL,
RepositorySupport.buildHTTPSResourceURL(REPO_OPENSAML, TEMPLATE_URL));
@@ -438,7 +438,7 @@ public class DynamicHTTPMetadataProviderParserTest extends AbstractMetadataParse
Assert.assertEquals(ed.getEntityID(), entityID);
}
- @Test
+ @Test(enabled=false)
public void testHTTPSTrustEngineValidPKIXExplicitTrustedName() throws Exception {
MockPropertySource propSource = singletonPropertySource(PROP_MDURL,
RepositorySupport.buildHTTPSResourceURL(REPO_OPENSAML, TEMPLATE_URL));
diff --git a/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/HTTPMetadataProviderParserTest.java b/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/HTTPMetadataProviderParserTest.java
index 6987e49..0acd5cf 100644
--- a/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/HTTPMetadataProviderParserTest.java
+++ b/idp-profile-spring/src/test/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/HTTPMetadataProviderParserTest.java
@@ -94,7 +94,8 @@ public class HTTPMetadataProviderParserTest extends AbstractMetadataParserTest {
Assert.assertNotNull(resolver.resolveSingle(criteriaFor(IDP_ID)));
}
- @Test public void httpsTrustEngineValidPKIX() throws Exception {
+ @Test(enabled=false)
+ public void httpsTrustEngineValidPKIX() throws Exception {
MockPropertySource propSource = singletonPropertySource(PROP_MDURL,
RepositorySupport.buildHTTPSResourceURL(REPO_IDP, ENTITY_XML));
@@ -105,7 +106,8 @@ public class HTTPMetadataProviderParserTest extends AbstractMetadataParserTest {
Assert.assertNotNull(resolver.resolveSingle(criteriaFor(IDP_ID)));
}
- @Test public void httpsTrustEngineValidPKIXExplicitTrustedName() throws Exception {
+ @Test(enabled=false)
+ public void httpsTrustEngineValidPKIXExplicitTrustedName() throws Exception {
MockPropertySource propSource = singletonPropertySource(PROP_MDURL,
RepositorySupport.buildHTTPSResourceURL(REPO_IDP, ENTITY_XML));
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list