Package org.exoplatform.services.jcr.lab.cluster.prepare

Source Code of org.exoplatform.services.jcr.lab.cluster.prepare.TestIndexUpdateMonitor

/*
* Copyright (C) 2009 eXo Platform SAS.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY 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 along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.exoplatform.services.jcr.lab.cluster.prepare;

import junit.framework.TestCase;

import org.exoplatform.services.jcr.impl.core.query.IndexerIoMode;
import org.exoplatform.services.jcr.impl.core.query.IndexerIoModeHandler;
import org.exoplatform.services.jcr.impl.core.query.jbosscache.JBossCacheIndexUpdateMonitor;
import org.exoplatform.services.jcr.impl.core.query.lucene.IndexUpdateMonitor;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;
import org.jboss.cache.Cache;
import org.jboss.cache.CacheFactory;
import org.jboss.cache.DefaultCacheFactory;
import org.jboss.cache.Fqn;

import java.io.Serializable;

/**
* @author <a href="mailto:Sergey.Kabashnyuk@exoplatform.org">Sergey Kabashnyuk</a>
* @version $Id: exo-jboss-codetemplates.xml 34360 2009-07-22 23:58:59Z ksm $
*
*/
public class TestIndexUpdateMonitor extends TestCase
{
   /**
    * Logger instance for this class
    */
   private final Log log = ExoLogger.getLogger("exo.jcr.component.core.TestIndexUpdateMonitor");

   private IndexUpdateMonitor indexUpdateMonitor;

   private Cache<Serializable, Object> cache;

   /**
    * @see org.exoplatform.services.jcr.BaseStandaloneTest#setUp()
    */
   @Override
   public void setUp() throws Exception
   {
      // TODO Auto-generated method stub
      super.setUp();
      cache = createCache();
      indexUpdateMonitor =
         new JBossCacheIndexUpdateMonitor(Fqn.fromString("root"),cache, false, new IndexerIoModeHandler(IndexerIoMode.READ_WRITE));
   }

   /**
    * @see junit.framework.TestCase#tearDown()
    */
   @Override
   protected void tearDown() throws Exception
   {
      // TODO Auto-generated method stub
      super.tearDown();
      cache.destroy();
   }

   public void testSimpleBoolean() throws Exception
   {
      //test default
      assertFalse(indexUpdateMonitor.getUpdateInProgress());

      //test set false
      indexUpdateMonitor.setUpdateInProgress(false, true);
      assertFalse(indexUpdateMonitor.getUpdateInProgress());

      //test set true
      indexUpdateMonitor.setUpdateInProgress(true, true);
      assertTrue(indexUpdateMonitor.getUpdateInProgress());

      //test set false
      indexUpdateMonitor.setUpdateInProgress(false, true);
      assertFalse(indexUpdateMonitor.getUpdateInProgress());

   }

   private Cache<Serializable, Object> createCache()
   {
      String jbcConfig = "conf/cluster/test-jbosscache-indexer-config-exoloader_db1_ws.xml";

      CacheFactory<Serializable, Object> factory = new DefaultCacheFactory<Serializable, Object>();
      log.info("JBoss Cache configuration used: " + jbcConfig);
      Cache<Serializable, Object> cache = factory.createCache(jbcConfig, false);

      cache.create();
      cache.start();

      return cache;
   }

}
TOP

Related Classes of org.exoplatform.services.jcr.lab.cluster.prepare.TestIndexUpdateMonitor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.