blob: b5faba2409764874acd48ce739ce1421cdb6a628 [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.client.solrj.embedded;
import java.io.IOException;
import org.apache.solr.SolrTestCaseJ4;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.SolrRequest;
import org.apache.solr.client.solrj.SolrServerException;
import org.apache.solr.client.solrj.response.QueryResponse;
import org.apache.solr.common.params.ModifiableSolrParams;
import org.apache.solr.common.params.SolrParams;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.core.NodeConfig;
import org.junit.Test;
public class TestEmbeddedSolrServerAdminHandler extends SolrTestCaseJ4 {
@Test
@SuppressWarnings({"rawtypes"})
public void testPathIsAddedToContext() throws IOException, SolrServerException {
final NodeConfig config = new NodeConfig.NodeConfigBuilder("testnode", TEST_PATH())
.setConfigSetBaseDirectory(TEST_PATH().resolve("configsets").toString())
.build();
try (final EmbeddedSolrServer server = new EmbeddedSolrServer(config, "collection1")) {
final SystemInfoRequest info = new SystemInfoRequest();
final NamedList response = server.request(info);
assertTrue(response.size() > 0);
}
}
private static class SystemInfoRequest extends SolrRequest<QueryResponse> {
public SystemInfoRequest() {
super(METHOD.GET, "/admin/info/system");
}
@Override
public SolrParams getParams() {
return new ModifiableSolrParams();
}
@Override
protected QueryResponse createResponse(final SolrClient client) {
return new QueryResponse();
}
}
}