/* * INESC-ID, Instituto de Engenharia de Sistemas e Computadores Investigação e Desevolvimento em Lisboa * Copyright 2013 INESC-ID 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 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 3.0 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.infinispan.remoting; import org.infinispan.commands.tx.PrepareCommand; import org.infinispan.configuration.cache.CacheMode; import org.infinispan.configuration.cache.ConfigurationBuilder; import org.infinispan.configuration.cache.VersioningScheme; import org.infinispan.context.impl.TxInvocationContext; import org.infinispan.interceptors.TxInterceptor; import org.infinispan.interceptors.base.CommandInterceptor; import org.infinispan.test.MultipleCacheManagersTest; import org.infinispan.util.concurrent.IsolationLevel; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import javax.transaction.NotSupportedException; import javax.transaction.SystemException; /** * Test timeout exception * * @author Pedro Ruivo * @since 5.2 */ @Test(groups = "functional", testName = "remoting.TimeoutTest") public class TimeoutTest extends MultipleCacheManagersTest { private static final String CACHE_NAME = "_timeout_cluster_"; @Override protected void createCacheManagers() throws Throwable { ConfigurationBuilder configurationBuilder = getDefaultClusteredCacheConfig(CacheMode.REPL_SYNC, true); configurationBuilder.locking().isolationLevel(IsolationLevel.REPEATABLE_READ).writeSkewCheck(true); configurationBuilder.versioning().enabled(true).scheme(VersioningScheme.SIMPLE); createClusteredCaches(4, CACHE_NAME, configurationBuilder); } @BeforeMethod public void setUp() { long timeout = cache(0, CACHE_NAME).getCacheConfiguration().clustering().sync().replTimeout(); cache(0, CACHE_NAME).getAdvancedCache().addInterceptorAfter(new BlockPrepareInterceptor(timeout), TxInterceptor.class); } public void testTimeout() throws SystemException, NotSupportedException { tm(1, CACHE_NAME).begin(); cache(1, CACHE_NAME).put("key", "value"); try { tm(1, CACHE_NAME).commit(); assert false; } catch (Exception e) { } } private class BlockPrepareInterceptor extends CommandInterceptor { private long timeout; public BlockPrepareInterceptor(long timeout) { this.timeout = timeout; } @Override public Object visitPrepareCommand(TxInvocationContext ctx, PrepareCommand command) throws Throwable { if (!ctx.isOriginLocal()) { synchronized (this) { this.wait(timeout * 2); } } return invokeNextInterceptor(ctx, command); } } }