This is an automated email from the ASF dual-hosted git repository. jdyer pushed a commit to branch feature/SOLR-17516-c in repository https://gitbox.apache.org/repos/asf/solr.git
commit 520032923273f225abc87f351e195813cd7792c6 Author: jdyer1 <[email protected]> AuthorDate: Thu Oct 31 09:28:10 2024 -0500 cleanup --- .../impl/LBHttp2SolrClientIntegrationTest.java | 56 ---------------------- 1 file changed, 56 deletions(-) diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/impl/LBHttp2SolrClientIntegrationTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/impl/LBHttp2SolrClientIntegrationTest.java index 58ad81ac956..6500aa631e1 100644 --- a/solr/solrj/src/test/org/apache/solr/client/solrj/impl/LBHttp2SolrClientIntegrationTest.java +++ b/solr/solrj/src/test/org/apache/solr/client/solrj/impl/LBHttp2SolrClientIntegrationTest.java @@ -33,18 +33,12 @@ import org.junit.BeforeClass; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import javax.net.ssl.SSLEngine; -import javax.net.ssl.TrustManager; -import javax.net.ssl.X509ExtendedTrustManager; import java.io.File; import java.io.IOException; import java.io.UncheckedIOException; import java.lang.invoke.MethodHandles; -import java.net.Socket; import java.nio.file.Files; import java.nio.file.Path; -import java.security.cert.CertificateException; -import java.security.cert.X509Certificate; import java.util.ArrayList; import java.util.HashSet; import java.util.List; @@ -354,8 +348,6 @@ public class LBHttp2SolrClientIntegrationTest extends SolrTestCaseJ4 { fail("TESTING FAILURE: could not grab requested port."); } this.port = newPort; - // System.out.println("waiting........."); - // Thread.sleep(5000); } } @@ -379,52 +371,4 @@ public class LBHttp2SolrClientIntegrationTest extends SolrTestCaseJ4 { } } } - - /** - * Taken from: https://www.baeldung.com/java-httpclient-ssl sec 4.1, 2024/02/12. This is an - * all-trusting Trust Manager. Works with self-signed certificates. - */ - private static final TrustManager MOCK_TRUST_MANAGER = - new X509ExtendedTrustManager() { - @Override - public void checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) - throws CertificateException { - // no-op - } - - @Override - public void checkServerTrusted(X509Certificate[] chain, String authType, Socket socket) - throws CertificateException { - // no-op - } - - @Override - public void checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) - throws CertificateException { - // no-op - } - - @Override - public void checkServerTrusted(X509Certificate[] chain, String authType, SSLEngine engine) - throws CertificateException { - // no-op - } - - @Override - public java.security.cert.X509Certificate[] getAcceptedIssuers() { - return new java.security.cert.X509Certificate[0]; - } - - @Override - public void checkClientTrusted(X509Certificate[] chain, String authType) - throws CertificateException { - // no-op - } - - @Override - public void checkServerTrusted(java.security.cert.X509Certificate[] chain, String authType) - throws CertificateException { - // no-op - } - }; }
