blob: a4967114a38ac9730dad18462f24cf8398276337 [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.jackrabbit.oak.benchmark;
import java.io.File;
import javax.jcr.Repository;
import org.apache.jackrabbit.oak.Oak;
import org.apache.jackrabbit.oak.fixture.JcrCreator;
import org.apache.jackrabbit.oak.fixture.OakRepositoryFixture;
import org.apache.jackrabbit.oak.fixture.RepositoryFixture;
import org.apache.jackrabbit.oak.jcr.Jcr;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.DefaultSolrConfiguration;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.OakSolrConfiguration;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.OakSolrConfigurationProvider;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.RemoteSolrServerConfiguration;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.nodestate.NodeStateSolrServersObserver;
import org.apache.jackrabbit.oak.plugins.index.solr.index.SolrIndexEditorProvider;
import org.apache.jackrabbit.oak.plugins.index.solr.query.SolrQueryIndexProvider;
import org.apache.jackrabbit.oak.plugins.index.solr.server.SolrServerProvider;
import org.apache.jackrabbit.oak.plugins.index.solr.util.SolrIndexInitializer;
import org.apache.solr.client.solrj.SolrClient;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class FullTextSolrSearchTest extends SearchTest {
private final Logger log = LoggerFactory.getLogger(getClass());
private SolrServerProvider serverProvider;
private String server;
public FullTextSolrSearchTest(File dump, boolean flat, boolean doReport, Boolean storageEnabled, String server) {
super(dump, flat, doReport, storageEnabled);
this.server = server;
}
@Override
protected Repository[] createRepository(RepositoryFixture fixture) throws Exception {
initializeProvider();
if (fixture instanceof OakRepositoryFixture) {
return ((OakRepositoryFixture) fixture).setUpCluster(1, new JcrCreator() {
@Override
public Jcr customize(Oak oak) {
OakSolrConfigurationProvider configurationProvider = new OakSolrConfigurationProvider() {
@NotNull
public OakSolrConfiguration getConfiguration() {
return new DefaultSolrConfiguration() {
@Override
public int getRows() {
return 50;
}
};
}
};
oak.with(new SolrQueryIndexProvider(serverProvider, configurationProvider))
.with(new NodeStateSolrServersObserver())
.with(new SolrIndexEditorProvider(serverProvider, configurationProvider))
.with(new SolrIndexInitializer(false));
return new Jcr(oak);
}
});
}
return super.createRepository(fixture);
}
private void initializeProvider() throws Exception {
if (server != null && (server.startsWith("http") || server.matches("\\w+\\:\\d{3,5}"))) {
log.info("using remote Solr {}", server);
RemoteSolrServerConfiguration remoteSolrServerConfiguration = new RemoteSolrServerConfiguration(
server, "oak", 2, 2, null, 10, 10, server);
serverProvider = remoteSolrServerConfiguration.getProvider();
} else {
throw new IllegalArgumentException("server parameter value must be an URL or an host:port String");
}
}
@Override
protected void afterSuite() throws Exception {
SolrClient solrServer = serverProvider.getSolrServer();
if (solrServer != null) {
solrServer.close();
}
}
}