GEODE-11: Adding a test of queries with redundancy Adding a test of distributed queries on PRs with redundancy
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/13399301 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/13399301 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/13399301 Branch: refs/heads/feature/GEODE-1400 Commit: 133993016d3acad802cb52353c035d3059d453d4 Parents: cd295f5 Author: Dan Smith <[email protected]> Authored: Wed May 25 16:40:43 2016 -0700 Committer: Dan Smith <[email protected]> Committed: Fri May 27 13:37:01 2016 -0700 ---------------------------------------------------------------------- .../LuceneQueriesPeerPRRedundancyDUnitTest.java | 37 ++++++++++++++++++++ 1 file changed, 37 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/13399301/geode-lucene/src/test/java/com/gemstone/gemfire/cache/lucene/LuceneQueriesPeerPRRedundancyDUnitTest.java ---------------------------------------------------------------------- diff --git a/geode-lucene/src/test/java/com/gemstone/gemfire/cache/lucene/LuceneQueriesPeerPRRedundancyDUnitTest.java b/geode-lucene/src/test/java/com/gemstone/gemfire/cache/lucene/LuceneQueriesPeerPRRedundancyDUnitTest.java new file mode 100644 index 0000000..494cc9f --- /dev/null +++ b/geode-lucene/src/test/java/com/gemstone/gemfire/cache/lucene/LuceneQueriesPeerPRRedundancyDUnitTest.java @@ -0,0 +1,37 @@ +/* + * 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 com.gemstone.gemfire.cache.lucene; + +import static com.gemstone.gemfire.cache.lucene.test.LuceneTestUtilities.REGION_NAME; +import com.gemstone.gemfire.cache.RegionShortcut; +import com.gemstone.gemfire.test.dunit.SerializableRunnableIF; +import com.gemstone.gemfire.test.junit.categories.DistributedTest; + +import org.junit.experimental.categories.Category; + +@Category(DistributedTest.class) +public class LuceneQueriesPeerPRRedundancyDUnitTest extends LuceneQueriesPRBase { + + @Override protected void initDataStore(final SerializableRunnableIF createIndex) throws Exception { + createIndex.run(); + getCache().createRegionFactory(RegionShortcut.PARTITION_REDUNDANT).create(REGION_NAME); + } + + @Override protected void initAccessor(final SerializableRunnableIF createIndex) throws Exception { + initDataStore(createIndex); + } +}
