/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.ignite.spi.checkpoint.cache; import org.apache.ignite.IgniteCache; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi; import org.apache.ignite.spi.discovery.tcp.ipfinder.TcpDiscoveryIpFinder; import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import static org.apache.ignite.cache.CacheMode.REPLICATED; import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC; /** * Test for cache checkpoint SPI with second cache configured. */ public class CacheCheckpointSpiSecondCacheSelfTest extends GridCommonAbstractTest { /** IP finder. */ private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); /** Checkpoints cache name. */ private static final String CP_CACHE = "checkpoints"; /** Starts grid. */ public CacheCheckpointSpiSecondCacheSelfTest() { super(true); } /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); TcpDiscoverySpi disco = new TcpDiscoverySpi(); disco.setIpFinder(IP_FINDER); cfg.setDiscoverySpi(disco); CacheConfiguration cacheCfg1 = defaultCacheConfiguration(); cacheCfg1.setName(DEFAULT_CACHE_NAME); cacheCfg1.setCacheMode(REPLICATED); cacheCfg1.setWriteSynchronizationMode(FULL_SYNC); CacheConfiguration cacheCfg2 = defaultCacheConfiguration(); cacheCfg2.setName(CP_CACHE); cacheCfg2.setCacheMode(REPLICATED); cacheCfg2.setWriteSynchronizationMode(FULL_SYNC); cfg.setCacheConfiguration(cacheCfg1, cacheCfg2); CacheCheckpointSpi cp = new CacheCheckpointSpi(); cp.setCacheName(CP_CACHE); cfg.setCheckpointSpi(cp); return cfg; } /** * @throws Exception If failed. */ public void testSecondCachePutRemove() throws Exception { IgniteCache<Integer, Integer> data = grid().cache(DEFAULT_CACHE_NAME); IgniteCache<Integer, String> cp = grid().cache(CP_CACHE); data.put(1, 1); cp.put(1, "1"); Integer v = data.get(1); assertNotNull(v); assertEquals(Integer.valueOf(1), data.get(1)); data.remove(1); assertNull(data.get(1)); assertTrue(data.localSize() == 0); assertEquals(1, cp.size()); assertEquals("1", cp.get(1)); } }