/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @authors tag. 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.hibernate.search.test.directoryProvider; import java.io.File; import org.apache.lucene.store.Directory; import org.apache.lucene.store.FSDirectory; import org.apache.lucene.store.RAMDirectory; import org.hibernate.search.SearchException; import org.hibernate.search.engine.spi.EntityIndexBinder; import org.hibernate.search.indexes.impl.DirectoryBasedIndexManager; import org.hibernate.search.indexes.spi.IndexManager; import org.hibernate.search.spi.SearchFactoryIntegrator; import org.hibernate.search.test.util.FullTextSessionBuilder; import org.junit.After; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; import static org.hibernate.search.test.directoryProvider.FSSlaveAndMasterDPTest.masterCopy; import static org.hibernate.search.test.directoryProvider.FSSlaveAndMasterDPTest.masterMain; /** * Verifies basic behavior of FSSlaveDirectoryProvider around * {@link org.hibernate.search.store.impl.DirectoryProviderHelper#getRetryInitializePeriod(java.util.Properties, String)} * (HSEARCH-323) * * @author Sanne Grinovero <sanne@hibernate.org> (C) 2011 Red Hat Inc. */ public class RetryInitializeTest { private FullTextSessionBuilder slave; private FullTextSessionBuilder master; private File root; @Before public void setUp() throws Exception { root = FSSlaveAndMasterDPTest.prepareDirectories( getClass().getSimpleName() ); } @After public void tearDown() throws Exception { if ( slave != null ) slave.close(); if ( master != null ) master.close(); FSSlaveAndMasterDPTest.cleanupDirectories( root ); } @Test public void testStandardInitialization() { master = createMasterNode(); slave = createSlaveNode( false ); } @Test(expected=SearchException.class) public void testInitiallyFailing() { slave = createSlaveNode( false ); } @Test public void testMasterDelayedInitialization() { slave = createSlaveNode(true); assertNotNull( FSSlaveDirectoryProviderTestingExtension.taskScheduled ); Long scheduledPeriod = FSSlaveDirectoryProviderTestingExtension.taskScheduledPeriod; assertNotNull( scheduledPeriod ); assertEquals( Long.valueOf( 12000L ), scheduledPeriod ); SearchFactoryIntegrator searchFactory = (SearchFactoryIntegrator) slave.getSearchFactory(); EntityIndexBinder snowIndexBinder = searchFactory.getIndexBindingForEntity( SnowStorm.class ); IndexManager[] indexManagers = snowIndexBinder.getIndexManagers(); assertEquals( 1, indexManagers.length ); DirectoryBasedIndexManager indexManager = (DirectoryBasedIndexManager) indexManagers[0]; FSSlaveDirectoryProviderTestingExtension dp = (FSSlaveDirectoryProviderTestingExtension) indexManager.getDirectoryProvider(); // now as master wasn't started yet, it should return a "dummy" index a RAMDirectory Directory directory = dp.getDirectory(); assertTrue( directory instanceof RAMDirectory ); dp.triggerTimerAction(); // still didn't start it.. directory = dp.getDirectory(); assertTrue( directory instanceof RAMDirectory ); // now the master goes online, at first timer tick we'll switch to the real index master = createMasterNode(); dp.triggerTimerAction(); directory = dp.getDirectory(); assertTrue( directory instanceof FSDirectory ); } private FullTextSessionBuilder createMasterNode() { return new FullTextSessionBuilder() .addAnnotatedClass( SnowStorm.class ) .setProperty( "hibernate.search.default.sourceBase", root.getAbsolutePath() + masterCopy ) .setProperty( "hibernate.search.default.indexBase", root.getAbsolutePath() + masterMain ) .setProperty( "hibernate.search.default.directory_provider", "filesystem-master" ) .build(); } private FullTextSessionBuilder createSlaveNode(boolean enableRetryInitializePeriod) { FullTextSessionBuilder builder = new FullTextSessionBuilder() .addAnnotatedClass( SnowStorm.class ) .setProperty( "hibernate.search.default.sourceBase", root.getAbsolutePath() + masterCopy ) .setProperty( "hibernate.search.default.indexBase", root.getAbsolutePath() + "/slave" ) .setProperty( "hibernate.search.default.directory_provider", FSSlaveDirectoryProviderTestingExtension.class.getName() ); if ( enableRetryInitializePeriod ) { builder.setProperty( "hibernate.search.default.retry_initialize_period", "12" ); } return builder.build(); } }