MapUndoTest.java :  » JBoss » JBossCache » org » jboss » cache » pojo » rollback » Java Open Source

Java Open Source » JBoss » JBossCache 
JBossCache » org » jboss » cache » pojo » rollback » MapUndoTest.java
/*
 * JBoss, Home of Professional Open Source
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */

package org.jboss.cache.pojo.rollback;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jboss.aop.proxy.ClassProxy;
import org.jboss.cache.pojo.PojoCache;
import org.jboss.cache.pojo.PojoCacheFactory;
import org.jboss.cache.pojo.interceptors.PojoFailedTxMockupInterceptor;
import org.jboss.cache.pojo.test.Person;
import org.jboss.cache.transaction.DummyTransactionManager;

import javax.transaction.TransactionManager;
import java.util.HashMap;

/**
 * Additional basic tests
 *
 * @author Ben Wang
 */

public class MapUndoTest extends TestCase
{
   Log log_ = LogFactory.getLog(MapUndoTest.class);
   PojoCache cache_;
   TransactionManager tx_mgr;

   public MapUndoTest(String name)
   {
      super(name);
   }

   protected void setUp() throws Exception
   {
      super.setUp();
      log_.info("setUp() ....");
      String configFile = "META-INF/local-service.xml";
      boolean toStart = false;
      cache_ = PojoCacheFactory.createCache(configFile, toStart);
      cache_.start();
      tx_mgr = DummyTransactionManager.getInstance();

   }

   protected void tearDown() throws Exception
   {
      super.tearDown();
      cache_.stop();
   }

//   public void testDummy() {}

   private void setTxRollback(boolean isTrue)
   {
      PojoFailedTxMockupInterceptor.TX_ROLLBACK = isTrue;
   }

   public void testSimple() throws Exception
   {
      HashMap map = new HashMap();
      map.put("1", "test1");

      setTxRollback(true);
      cache_.attach("/a", map);
      assertFalse("Should not have cache interceptor ", isProxy(map));

      cache_.attach("/a", map);
   }

   public void testSimpleTxWithRollback1() throws Exception
   {
      log_.info("testSimpleTxWithRollback1() ....");
      Person test = new Person();
      test.setName("Ben");
      test.setAge(10);
      HashMap map = new HashMap();
      map.put("1", "English");
      test.setHobbies(map);

      setTxRollback(true);
      cache_.attach("/a", test);
      assertFalse("Should not have cache interceptor ", isProxy(test.getHobbies()));

      cache_.attach("/a", test);
   }

   private boolean isProxy(Object pojo)
   {
      if (pojo instanceof ClassProxy) return true;
      return false;
   }

   public void testSimpleTxWithRollback2() throws Exception
   {
      log_.info("testSimpleTxWithRollback1() ....");
      Person test = new Person();
      test.setName("Ben");
      test.setAge(10);
      HashMap map = new HashMap();
      map.put("1", "English");
      test.setHobbies(map);

      cache_.attach("/a", test);

      setTxRollback(true);
      cache_.detach("/a");

      assertTrue("Should still have cache interceptor ", isProxy(test.getHobbies()));
      cache_.detach("/a");
   }

   public static Test suite() throws Exception
   {
      return new TestSuite(MapUndoTest.class);
   }


   public static void main(String[] args) throws Exception
   {
      junit.textui.TestRunner.run(MapUndoTest.suite());
   }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.