blob: e14f334bb556829d7bfb5430d0e00fc6e3ce96ca [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.plugins.index.solr;
import java.io.File;
import java.io.IOException;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.DefaultSolrConfiguration;
import org.apache.jackrabbit.oak.plugins.index.solr.configuration.EmbeddedSolrServerConfiguration;
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.server.EmbeddedSolrServerProvider;
import org.apache.jackrabbit.oak.plugins.index.solr.server.SolrServerProvider;
import org.apache.solr.client.solrj.SolrClient;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import static org.junit.Assert.assertTrue;
/**
* Utility class for tests
*/
public class TestUtils
implements SolrServerProvider, OakSolrConfigurationProvider {
static final String SOLR_HOME_PATH = "/solr";
public static SolrClient createSolrServer() {
try {
File file = new File(TestUtils.class.getResource(SOLR_HOME_PATH).toURI());
EmbeddedSolrServerConfiguration configuration = new EmbeddedSolrServerConfiguration(
file.getAbsolutePath(), "oak");
EmbeddedSolrServerProvider provider = new EmbeddedSolrServerProvider(configuration);
return provider.getSolrServer();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
public static void cleanDataDir() {
String path = TestUtils.class.getResource("/solr/oak/data").getFile();
File file = new File(path);
if (file.exists()) {
assertTrue(file.delete());
}
}
public static OakSolrConfiguration getTestConfiguration() {
return new DefaultSolrConfiguration() {
@NotNull
@Override
public CommitPolicy getCommitPolicy() {
return CommitPolicy.HARD;
}
@Override
public boolean useForPropertyRestrictions() {
return true;
}
@Override
public boolean useForPrimaryTypes() {
return true;
}
@Override
public boolean useForPathRestrictions() {
return true;
}
};
}
private final SolrClient solrServer = createSolrServer();
private final OakSolrConfiguration configuration = getTestConfiguration();
@Nullable
@Override
public SolrClient getSolrServer() {
return solrServer;
}
@Nullable
@Override
public SolrClient getIndexingSolrServer() throws Exception {
return solrServer;
}
@Nullable
@Override
public SolrClient getSearchingSolrServer() throws Exception {
return solrServer;
}
@NotNull
@Override
public OakSolrConfiguration getConfiguration() {
return configuration;
}
@Override
public void close() throws IOException {
}
}