/* * JBoss, Home of Professional Open Source * Copyright 2011 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 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.infinispan.client.hotrod.retry; import org.infinispan.config.Configuration; import org.infinispan.notifications.Listener; import org.infinispan.notifications.cachelistener.annotation.CacheEntryCreated; import org.infinispan.notifications.cachelistener.event.CacheEntryEvent; import org.infinispan.remoting.transport.jgroups.SuspectException; import org.testng.annotations.Test; import java.lang.reflect.Method; import static org.infinispan.test.TestingUtil.k; import static org.infinispan.test.TestingUtil.v; /** * Test different server error situations and check how clients behave under * those circumstances. Also verify whether failover is happening accordingly. * * @author Galder ZamarreƱo * @since 4.2 */ @Test(groups = "functional", testName = "client.hotrod.retry.ServerFailureRetryTest") public class ServerFailureRetryTest extends AbstractRetryTest { @Override protected Configuration getCacheConfig() { return getDefaultClusteredConfig(Configuration.CacheMode.REPL_SYNC); } public void testRetryWithSuspectException(Method m) { ErrorInducingListener listener = new ErrorInducingListener(); manager(0).getCache().addListener(listener); try { remoteCache.put(k(m), v(m)); } finally { manager(0).getCache().removeListener(listener); } } @Listener public static class ErrorInducingListener { boolean induceError = true; @CacheEntryCreated public void entryCreated(CacheEntryEvent event) throws Exception { if (!event.isPre() && event.isOriginLocal() && induceError) { throw new SuspectException("Simulated suspicion"); } } } }