/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.solr.handler; import java.io.IOException; import java.io.InputStream; import java.lang.invoke.MethodHandles; import java.net.URL; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Random; import org.apache.commons.io.IOUtils; import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.TestUtil; import org.apache.solr.client.solrj.SolrClient; import org.apache.solr.client.solrj.SolrServerException; import org.apache.solr.client.solrj.response.QueryResponse; import org.apache.solr.common.SolrInputDocument; import org.apache.solr.common.params.ModifiableSolrParams; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class BackupRestoreUtils extends LuceneTestCase { private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); public static int indexDocs(SolrClient masterClient, String collectionName, long docsSeed) throws IOException, SolrServerException { masterClient.deleteByQuery(collectionName, "*:*"); Random random = new Random(docsSeed);// use a constant seed for the whole test run so that we can easily re-index. int nDocs = TestUtil.nextInt(random, 1, 100); log.info("Indexing {} test docs", nDocs); List<SolrInputDocument> docs = new ArrayList<>(nDocs); for (int i = 0; i < nDocs; i++) { SolrInputDocument doc = new SolrInputDocument(); doc.addField("id", i); doc.addField("name", "name = " + i); docs.add(doc); } masterClient.add(collectionName, docs); masterClient.commit(collectionName); return nDocs; } public static void verifyDocs(int nDocs, SolrClient masterClient, String collectionName) throws SolrServerException, IOException { ModifiableSolrParams queryParams = new ModifiableSolrParams(); queryParams.set("q", "*:*"); QueryResponse response = masterClient.query(collectionName, queryParams); assertEquals(0, response.getStatus()); assertEquals(nDocs, response.getResults().getNumFound()); } public static void runCoreAdminCommand(String baseUrl, String coreName, String action, Map<String,String> params) throws IOException { StringBuilder builder = new StringBuilder(); builder.append(baseUrl); builder.append("/admin/cores?action="); builder.append(action); builder.append("&core="); builder.append(coreName); for (Map.Entry<String,String> p : params.entrySet()) { builder.append("&"); builder.append(p.getKey()); builder.append("="); builder.append(p.getValue()); } String masterUrl = builder.toString(); executeHttpRequest(masterUrl); } public static void runReplicationHandlerCommand(String baseUrl, String coreName, String action, String repoName, String backupName) throws IOException { String masterUrl = baseUrl + "/" + coreName + ReplicationHandler.PATH + "?command=" + action + "&repository="+repoName+"&name="+backupName; executeHttpRequest(masterUrl); } static void executeHttpRequest(String requestUrl) throws IOException { InputStream stream = null; try { URL url = new URL(requestUrl); stream = url.openStream(); stream.close(); } finally { IOUtils.closeQuietly(stream); } } }