mirror of https://github.com/apache/lucene.git
SOLR-10818: Adding test for v2 backup-collection request
This commit is contained in:
parent
833a6f3ffb
commit
b73dffd928
|
@ -18,6 +18,7 @@
|
||||||
package org.apache.solr.handler;
|
package org.apache.solr.handler;
|
||||||
|
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -37,8 +38,6 @@ import org.junit.BeforeClass;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class V2ApiIntegrationTest extends SolrCloudTestCase {
|
public class V2ApiIntegrationTest extends SolrCloudTestCase {
|
||||||
private List<RestTestHarness> restTestHarnesses = new ArrayList<>();
|
|
||||||
|
|
||||||
private static String COLL_NAME = "collection1";
|
private static String COLL_NAME = "collection1";
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
|
@ -99,6 +98,11 @@ public class V2ApiIntegrationTest extends SolrCloudTestCase {
|
||||||
assertEquals("/c/collection1/get", Utils.getObjectByPath(result, true, "/spec[0]/url/paths[0]"));
|
assertEquals("/c/collection1/get", Utils.getObjectByPath(result, true, "/spec[0]/url/paths[0]"));
|
||||||
result = resAsMap(client, new V2Request.Builder("/collections/"+COLL_NAME+"/get/_introspect").build());
|
result = resAsMap(client, new V2Request.Builder("/collections/"+COLL_NAME+"/get/_introspect").build());
|
||||||
assertEquals("/collections/collection1/get", Utils.getObjectByPath(result, true, "/spec[0]/url/paths[0]"));
|
assertEquals("/collections/collection1/get", Utils.getObjectByPath(result, true, "/spec[0]/url/paths[0]"));
|
||||||
|
String tempDir = createTempDir().toFile().getPath();
|
||||||
|
client.request(new V2Request.Builder("/c")
|
||||||
|
.withMethod(SolrRequest.METHOD.POST)
|
||||||
|
.withPayload("{backup-collection:{name: backup_test, collection: "+COLL_NAME+" , location: '"+tempDir+"' }}")
|
||||||
|
.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
private Map resAsMap(CloudSolrClient client, V2Request request) throws SolrServerException, IOException {
|
private Map resAsMap(CloudSolrClient client, V2Request request) throws SolrServerException, IOException {
|
||||||
|
|
Loading…
Reference in New Issue