[java-idp-integration-tests] 01/02: Remove use of non-secure endpoints

Tom Zeller tzeller at dragonacea.biz
Thu Mar 29 21:03:31 EDT 2018


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

tzeller pushed a commit to branch master
in repository java-idp-integration-tests.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=281c23493878ad88999b03485307021c9b0e8285

commit 281c23493878ad88999b03485307021c9b0e8285
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Thu Mar 29 20:00:45 2018 -0500

    Remove use of non-secure endpoints
---
 .../java/net/shibboleth/idp/test/BaseIntegrationTest.java    | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
index 73b9763..65fb90d 100644
--- a/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
+++ b/src/test/java/net/shibboleth/idp/test/BaseIntegrationTest.java
@@ -635,16 +635,6 @@ public abstract class BaseIntegrationTest
             replaceProperty(pathToJettyIdPIni, "jetty.https.port", Integer.toString(securePort));
             replaceProperty(pathToJettyIdPIni, "jetty.backchannel.host", privateSecureAddress);
             replaceProperty(pathToJettyIdPIni, "jetty.backchannel.port", Integer.toString(backchannelPort));
-            replaceProperty(pathToJettyIdPIni, "jetty.nonhttps.host", privateAddress);
-            replaceProperty(pathToJettyIdPIni, "jetty.nonhttps.port", Integer.toString(port));
-
-            // Jetty 9.4 add http module
-            replaceFile(pathToJettyIdPIni, "--module=\\s*idp",
-                    "--module=idp" + System.lineSeparator() + "--module=http");
-
-            // Jetty 9.4 http host and port
-            replaceProperty(pathToJettyIdPIni, "jetty.http.host", privateAddress);
-            replaceProperty(pathToJettyIdPIni, "jetty.http.port", Integer.toString(port));
 
             // Jetty 9.4 https host and port
             replaceProperty(pathToJettyIdPIni, "jetty.ssl.host", privateSecureAddress);
@@ -664,8 +654,6 @@ public abstract class BaseIntegrationTest
             replaceFile(pathToCatalinaProperties, "tomcat.host=.*", "tomcat.host=" + privateSecureAddress);
             replaceFile(pathToCatalinaProperties, "tomcat.https.port=.*", "tomcat.https.port=" + Integer.toString(securePort));
             replaceFile(pathToCatalinaProperties, "tomcat.backchannel.port=.*", "tomcat.backchannel.port=" + Integer.toString(backchannelPort));
-            replaceFile(pathToCatalinaProperties, "tomcat.nonhttps.host=.*", "tomcat.nonhttps.host=" + privateAddress);
-            replaceFile(pathToCatalinaProperties, "tomcat.nonhttps.port=.*", "tomcat.nonhttps.port=" + Integer.toString(port));
         }
 
         // Metadata.

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


More information about the commits mailing list