/lucene/lucene-v3/src/test/java/org/infinispan/lucene/cachestore/IndexCacheLoaderTest.java
Java | 112 lines | 69 code | 13 blank | 30 comment | 2 complexity | 1c2dbfa4897aa71e0f76da69de1138d8 MD5 | raw file
- /*
- * JBoss, Home of Professional Open Source
- * Copyright 2012 Red Hat Inc. and/or its affiliates and other contributors
- * as indicated by the @author tags. All rights reserved.
- * See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This copyrighted material is made available to anyone wishing to use,
- * modify, copy, or redistribute it subject to the terms and conditions
- * of the GNU Lesser General Public License, v. 2.1.
- * This program is distributed in the hope that it will be useful, but WITHOUT A
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License,
- * v.2.1 along with this distribution; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA.
- */
- package org.infinispan.lucene.cachestore;
- import java.io.File;
- import java.io.IOException;
- import org.apache.lucene.store.Directory;
- import org.infinispan.Cache;
- import org.infinispan.configuration.cache.ConfigurationBuilder;
- import org.infinispan.lucene.cachestore.LuceneCacheLoader;
- import org.infinispan.lucene.cachestore.LuceneCacheLoaderConfig;
- import org.infinispan.lucene.directory.DirectoryBuilder;
- import org.infinispan.manager.EmbeddedCacheManager;
- import org.infinispan.test.CacheManagerCallable;
- import org.infinispan.test.TestingUtil;
- import org.infinispan.test.fwk.TestCacheManagerFactory;
- import org.testng.annotations.AfterMethod;
- import org.testng.annotations.BeforeMethod;
- import org.testng.annotations.Test;
- /**
- * Verify we can write to a FSDirectory, and when using it via the {@link LuceneCacheLoader}
- * we can find the same contents as by searching it directly.
- * This implicitly verifies configuration settings passed it, as it won't work if the CacheLoader
- * is unable to find the specific index path.
- *
- * @author Sanne Grinovero
- * @since 5.2
- */
- @Test(groups = "functional", testName = "lucene.cachestore.IndexCacheLoaderTest")
- public class IndexCacheLoaderTest {
- private static final int SCALE = 600;
- protected final String parentDir = ".";
- protected File rootDir = null;
- @BeforeMethod(alwaysRun = true)
- public void setUp() {
- rootDir = TestHelper.createRootDir(parentDir, getIndexPathName());
- }
- /**
- * @return a unique name for this test, where we store indexes
- */
- protected String getIndexPathName() {
- return this.getClass().getSimpleName();
- }
- @AfterMethod(alwaysRun = true)
- public void tearDown() {
- if(rootDir != null) {
- TestingUtil.recursiveFileRemove(rootDir);
- }
- }
- @Test
- public void testReadExistingIndex() throws IOException {
- TestHelper.createIndex(rootDir, "index-A", 10 * SCALE, true);
- TestHelper.createIndex(rootDir, "index-B", 20 * SCALE, false);
- TestHelper.verifyIndex(rootDir, "index-A", 10 * SCALE, true);
- verifyDirectory(rootDir, "index-A", 10 * SCALE, true);
- TestHelper.verifyIndex(rootDir, "index-B", 20 * SCALE, false);
- verifyDirectory(rootDir, "index-B", 20 * SCALE, false);
- }
- private void verifyDirectory (final File rootDir, final String indexName, final int termsAdded, final boolean inverted)
- throws IOException {
- final EmbeddedCacheManager cacheManager = initializeInfinispan(rootDir);
- TestingUtil.withCacheManager(new CacheManagerCallable(cacheManager) {
- public void call() {
- Cache<Object, Object> cache = cacheManager.getCache();
- Directory directory = DirectoryBuilder.newDirectoryInstance(cache, cache, cache, indexName).create();
- try {
- TestHelper.verifyOnDirectory(directory, termsAdded, inverted);
- } catch (IOException e) {
- throw new RuntimeException(e);
- }
- }
- });
- }
- protected EmbeddedCacheManager initializeInfinispan(File rootDir) {
- ConfigurationBuilder builder = new ConfigurationBuilder();
- builder
- .loaders()
- .addLoader()
- .cacheLoader( new LuceneCacheLoader() )
- .addProperty(LuceneCacheLoaderConfig.LOCATION_OPTION, rootDir.getAbsolutePath())
- .addProperty(LuceneCacheLoaderConfig.AUTO_CHUNK_SIZE_OPTION, "1024");
- return TestCacheManagerFactory.createCacheManager(builder);
- }
- }