blob: 0507214c8e1e3508c4c8058a3d9d3ad9fe1d4184 [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.geode.cache.lucene;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.DEFAULT_FIELD;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.INDEX_NAME;
import static org.apache.geode.cache.lucene.test.LuceneTestUtilities.REGION_NAME;
import static org.apache.geode.test.awaitility.GeodeAwaitility.await;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.util.Properties;
import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.TermQuery;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.lucene.internal.LuceneIndexFactoryImpl;
import org.apache.geode.cache.lucene.internal.LuceneQueryImpl;
import org.apache.geode.cache.lucene.internal.LuceneServiceImpl;
import org.apache.geode.cache.lucene.test.LuceneTestUtilities;
import org.apache.geode.distributed.ConfigurationProperties;
import org.apache.geode.test.dunit.SerializableRunnable;
import org.apache.geode.test.dunit.SerializableRunnableIF;
import org.apache.geode.test.junit.categories.LuceneTest;
/**
* This test class is intended to contain basic integration tests of the lucene query class that
* should be executed against a number of different regions types and topologies.
*
*/
@Category({LuceneTest.class})
@RunWith(JUnitParamsRunner.class)
public class LuceneQueriesDUnitTest extends LuceneQueriesAccessorBase {
private static final long serialVersionUID = 1L;
protected SerializableRunnable createIndex = new SerializableRunnable("createIndex") {
@Override
public void run() {
LuceneService luceneService = LuceneServiceProvider.get(getCache());
((LuceneIndexFactoryImpl) luceneService.createIndexFactory()).addField("text")
.create(INDEX_NAME, REGION_NAME, LuceneServiceImpl.LUCENE_REINDEX);
}
};
protected void createRegionAndIndexForAllDataStores(RegionTestableType regionTestType,
SerializableRunnableIF createIndex) throws Exception {
dataStore1.invoke(() -> initDataStore(createIndex, regionTestType));
dataStore2.invoke(() -> initDataStore(createIndex, regionTestType));
accessor.invoke(() -> initAccessor(createIndex, regionTestType));
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void transactionWithLuceneQueriesShouldThrowException(RegionTestableType regionTestType)
throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
accessor.invoke(() -> {
Cache cache = getCache();
try {
LuceneService service = LuceneServiceProvider.get(cache);
LuceneQuery<Integer, TestObject> query;
query = service.createLuceneQueryFactory().create(INDEX_NAME, REGION_NAME, "text:world",
DEFAULT_FIELD);
cache.getCacheTransactionManager().begin();
PageableLuceneQueryResults<Integer, TestObject> results = query.findPages();
fail();
} catch (LuceneQueryException e) {
if (!e.getMessage()
.equals(LuceneQueryImpl.LUCENE_QUERY_CANNOT_BE_EXECUTED_WITHIN_A_TRANSACTION)) {
fail();
}
} finally {
cache.getCacheTransactionManager().rollback();
}
});
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void afterLuceneIndexAndRegionIsCreatedShouldBeAbleToGetIndexingStatus(
RegionTestableType regionTestType) throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
accessor.invoke(
() -> await().untilAsserted(() -> assertFalse(
LuceneServiceProvider.get(getCache()).isIndexingInProgress(INDEX_NAME, REGION_NAME))));
executeTextSearch(accessor);
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void returnCorrectResultsFromStringQueryWithDefaultAnalyzer(
RegionTestableType regionTestType) throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
executeTextSearch(accessor);
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void defaultFieldShouldPropogateCorrectlyThroughFunction(RegionTestableType regionTestType)
throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
executeTextSearch(accessor, "world", "text", 3);
executeTextSearch(accessor, "world", "noEntriesMapped", 0);
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void canQueryWithCustomLuceneQueryObject(RegionTestableType regionTestType)
throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
// Execute a query with a custom lucene query object
accessor.invoke(() -> {
Cache cache = getCache();
LuceneService service = LuceneServiceProvider.get(cache);
LuceneQuery query =
service.createLuceneQueryFactory().create(INDEX_NAME, REGION_NAME, index -> {
return new TermQuery(new Term("text", "world"));
});
final PageableLuceneQueryResults results = query.findPages();
assertEquals(3, results.size());
});
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void verifyWaitForFlushedFunctionOnAccessor(RegionTestableType regionTestType)
throws InterruptedException, Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
dataStore1.invoke(() -> LuceneTestUtilities.pauseSender(getCache()));
dataStore2.invoke(() -> LuceneTestUtilities.pauseSender(getCache()));
putDataInRegion(accessor);
assertFalse(waitForFlushBeforeExecuteTextSearch(accessor, 200));
dataStore1.invoke(() -> LuceneTestUtilities.resumeSender(getCache()));
dataStore2.invoke(() -> LuceneTestUtilities.resumeSender(getCache()));
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
executeTextSearch(accessor, "world", "text", 3);
executeTextSearch(accessor, "world", "noEntriesMapped", 0);
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void verifyWildcardQueriesSucceed(RegionTestableType regionTestType) throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
executeTextSearch(accessor, "*", "*", 3);
executeTextSearch(accessor, "*:*", "text", 3);
executeTextSearch(accessor, "*:*", "XXX", 3);
executeTextSearch(accessor, "*", "text", 3);
}
@Test
@Parameters(method = "getListOfRegionTestTypes")
public void verifySpaceQueriesFail(RegionTestableType regionTestType) throws Exception {
createRegionAndIndexForAllDataStores(regionTestType, createIndex);
putDataInRegion(accessor);
assertTrue(waitForFlushBeforeExecuteTextSearch(accessor, 60000));
assertTrue(waitForFlushBeforeExecuteTextSearch(dataStore1, 60000));
executeTextSearchWithExpectedException(accessor, " ", "*", LuceneQueryException.class);
executeTextSearchWithExpectedException(accessor, " ", "text", LuceneQueryException.class);
executeTextSearchWithExpectedException(accessor, " ", "XXX", LuceneQueryException.class);
}
@Override
public Properties getDistributedSystemProperties() {
Properties result = super.getDistributedSystemProperties();
String filter = (String) result.get(ConfigurationProperties.SERIALIZABLE_OBJECT_FILTER);
filter += ";org.apache.geode.cache.lucene.LuceneQueriesDUnitTest*";
result.put(ConfigurationProperties.SERIALIZABLE_OBJECT_FILTER, filter);
return result;
}
}