/* * 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.infinispan.distribution.rehash; import org.infinispan.Cache; import org.infinispan.config.Configuration; import org.infinispan.config.GlobalConfiguration; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.test.AbstractInfinispanTest; import org.infinispan.test.TestingUtil; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.testng.annotations.Test; /** * Tests data loss suring state transfer when a single data owner is configured. * @author Sanne Grinovero <sanne@infinispan.org> (C) 2011 Red Hat Inc. * @author Alex Heneveld * @author Manik Surtani */ @Test(groups = "functional", testName = "distribution.rehash.DataLossOnJoinOneOwnerTest") public class DataLossOnJoinOneOwnerTest extends AbstractInfinispanTest { private static final String VALUE = DataLossOnJoinOneOwnerTest.class.getName() + "value"; private static final String KEY = DataLossOnJoinOneOwnerTest.class.getName() + "key"; EmbeddedCacheManager cm1; EmbeddedCacheManager cm2; /** * It seems that sometimes when a new node joins, existing data is lost. * Can not reproduce with numOwners=2. */ public void testDataLossOnJoin() { try { cm1 = newCM(); Cache<String, String> c1 = cm1.getCache(); c1.put(KEY, VALUE); hasKey(c1); cm2 = newCM(); Cache<String, String> c2 = cm2.getCache(); TestingUtil.blockUntilViewsReceived(45000, cm1, cm2); hasKey(c1); hasKey(c2); } finally { TestingUtil.killCacheManagers(cm1, cm2); } } private void hasKey(Cache<String, String> cache) { Object object = cache.get(KEY); assert VALUE.equals(object); } public EmbeddedCacheManager newCM() { GlobalConfiguration gc = GlobalConfiguration.getClusteredDefault(); Configuration c = new Configuration().fluent() .mode(Configuration.CacheMode.DIST_SYNC) .hash().numOwners(1) .clustering().l1().disable() .build(); return TestCacheManagerFactory.createCacheManager(gc, c); } }