blob: 316bc84083f6939e05c58d80e076361c8e0ef6ff [file] [log] [blame]
/*
* 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.File;
import org.apache.commons.io.FileUtils;
import org.apache.solr.SolrTestCaseJ4;
import org.apache.solr.client.solrj.embedded.JettySolrRunner;
import org.apache.solr.client.solrj.impl.HttpSolrClient;
import org.apache.solr.client.solrj.request.V2Request;
import org.apache.solr.common.util.NamedList;
import org.junit.Test;
public class V2StandaloneTest extends SolrTestCaseJ4{
@Test
public void testWelcomeMessage() throws Exception {
File solrHomeTmp = createTempDir().toFile().getAbsoluteFile();
FileUtils.copyDirectory(new File(TEST_HOME(), "configsets/minimal/conf"), new File(solrHomeTmp,"/conf"));
FileUtils.copyFile(new File(TEST_HOME(), "solr.xml"), new File(solrHomeTmp, "solr.xml"));
JettySolrRunner jetty = new JettySolrRunner(solrHomeTmp.getAbsolutePath(), buildJettyConfig("/solr"));
jetty.start();
try (HttpSolrClient client = getHttpSolrClient(buildUrl(jetty.getLocalPort(),"/solr/"))) {
@SuppressWarnings({"rawtypes"})
NamedList res = client.request(new V2Request.Builder("/").build());
@SuppressWarnings({"rawtypes"})
NamedList header = (NamedList) res.get("responseHeader");
assertEquals(0, header.get("status"));
res = client.request(new V2Request.Builder("/_introspect").build());
header = (NamedList) res.get("responseHeader");
assertEquals(0, header.get("status"));
}
jetty.stop();
}
}