blob: eae195a51d09c1d3bf9ecbcb2657ed2d98783e48 [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 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.lucene.IndexCopier;
import org.apache.jackrabbit.oak.plugins.index.lucene.LuceneIndexConstants;
import org.apache.jackrabbit.oak.plugins.index.lucene.LuceneIndexEditorProvider;
import org.apache.jackrabbit.oak.plugins.index.lucene.LuceneIndexProvider;
import org.apache.jackrabbit.oak.spi.commit.Observer;
import org.apache.jackrabbit.oak.spi.query.QueryIndexProvider;
import javax.jcr.Repository;
import javax.jcr.query.Query;
import java.io.File;
import java.io.IOException;
import static com.google.common.collect.ImmutableSet.of;
public class LucenePropertySearchTest extends SearchTest {
private final boolean disableCopyOnRead = Boolean.getBoolean("disableCopyOnRead");
public LucenePropertySearchTest(File dump, boolean flat, boolean doReport, Boolean storageEnabled) {
super(dump, flat, doReport, storageEnabled);
}
@Override
protected String getQuery(String word) {
return "SELECT * FROM [nt:base] WHERE [title] = \"" + word + "\"";
}
@Override
protected String queryType() {
return Query.JCR_SQL2;
}
@Override
protected boolean isFullTextSearch() {
return false;
}
@Override
protected Repository[] createRepository(RepositoryFixture fixture) throws Exception {
if (fixture instanceof OakRepositoryFixture) {
return ((OakRepositoryFixture) fixture).setUpCluster(1, new JcrCreator() {
@Override
public Jcr customize(Oak oak) {
LuceneIndexProvider provider = createLuceneIndexProvider();
oak.with((QueryIndexProvider) provider)
.with((Observer) provider)
.with(new LuceneIndexEditorProvider())
.with(new PropertyFullTextTest.FullTextPropertyInitialiser("luceneTitle", of("title"),
LuceneIndexConstants.TYPE_LUCENE));
return new Jcr(oak);
}
});
}
return super.createRepository(fixture);
}
private LuceneIndexProvider createLuceneIndexProvider() {
if (!disableCopyOnRead) {
try {
IndexCopier copier = new IndexCopier(executorService, indexCopierDir, true);
return new LuceneIndexProvider(copier);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return new LuceneIndexProvider();
}
}