epugh commented on code in PR #3708:
URL: https://github.com/apache/solr/pull/3708#discussion_r2634741708


##########
solr/core/src/test/org/apache/solr/TestCrossCoreJoin.java:
##########
@@ -17,40 +17,41 @@
 package org.apache.solr;
 
 import java.util.Collections;
+import java.util.List;
 import java.util.Map;
+import org.apache.solr.client.solrj.embedded.EmbeddedSolrServer;
 import org.apache.solr.common.SolrException.ErrorCode;
+import org.apache.solr.common.SolrInputDocument;
 import org.apache.solr.common.params.ModifiableSolrParams;
 import org.apache.solr.core.CoreContainer;
 import org.apache.solr.core.SolrCore;
 import org.apache.solr.request.LocalSolrQueryRequest;
 import org.apache.solr.request.SolrQueryRequest;
-import org.apache.solr.request.SolrRequestHandler;
 import org.apache.solr.request.SolrRequestInfo;
 import org.apache.solr.response.SolrQueryResponse;
 import org.apache.solr.search.join.TestScoreJoinQPNoScore;
-import org.apache.solr.servlet.DirectSolrConnection;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 import org.junit.Test;
 
 public class TestCrossCoreJoin extends SolrTestCaseJ4 {
 
   private static SolrCore fromCore;
+  private static EmbeddedSolrServer fromServer;
 
   @BeforeClass
   public static void beforeTests() throws Exception {
     System.setProperty(
         "solr.index.updatelog.enabled", "false"); // schema12 doesn't support 
_version_
     System.setProperty("solr.filterCache.async", "true");
-    //    initCore("solrconfig.xml","schema12.xml");
 
-    // File testHome = createTempDir().toFile();
-    // FileUtils.copyDirectory(getFile("solrj/solr"), testHome);
     initCore("solrconfig.xml", "schema12.xml", TEST_HOME(), "collection1");
     final CoreContainer coreContainer = h.getCoreContainer();
 
     fromCore = coreContainer.create("fromCore", Map.of("configSet", 
"minimal"));
+    fromServer = new EmbeddedSolrServer(fromCore.getCoreContainer(), 
fromCore.getName());

Review Comment:
   agreed, the nuance is that this actually is pulling form "fromCore" which is 
NOT the same as the regular core that testharness would do!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to