/* * 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.internal.processors.cache; import java.util.HashSet; import java.util.Map; import javax.cache.processor.EntryProcessorResult; import org.apache.ignite.IgniteCache; import org.apache.ignite.cache.CacheAtomicityMode; import org.apache.ignite.cache.CacheEntryProcessor; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.DeploymentMode; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.configuration.NearCacheConfiguration; 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.config.GridTestProperties; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import static org.apache.ignite.cache.CacheAtomicityMode.ATOMIC; import static org.apache.ignite.cache.CacheMode.PARTITIONED; import static org.apache.ignite.cache.CacheRebalanceMode.SYNC; import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC; /** * Cache EntryProcessor + Deployment. */ public class GridCacheAtomicEntryProcessorDeploymentSelfTest extends GridCommonAbstractTest { /** IP finder. */ private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); /** Test value. */ protected static String TEST_VALUE = "org.apache.ignite.tests.p2p.CacheDeploymentTestValue"; /** */ protected DeploymentMode depMode; /** */ protected boolean clientMode; /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); cfg.setClientMode(clientMode); if (clientMode) cfg.setClassLoader(getExternalClassLoader()); cfg.setDeploymentMode(depMode); cfg.setCacheConfiguration(cacheConfiguration()); TcpDiscoverySpi disco = new TcpDiscoverySpi(); disco.setIpFinder(IP_FINDER); cfg.setDiscoverySpi(disco); cfg.setConnectorConfiguration(null); return cfg; } /** * @return Cache configuration. * @throws Exception In case of error. */ protected CacheConfiguration cacheConfiguration() throws Exception { CacheConfiguration cfg = defaultCacheConfiguration(); cfg.setCacheMode(PARTITIONED); cfg.setWriteSynchronizationMode(FULL_SYNC); cfg.setRebalanceMode(SYNC); cfg.setAtomicityMode(atomicityMode()); cfg.setNearConfiguration(new NearCacheConfiguration()); cfg.setBackups(1); return cfg; } /** * @return Cache. */ protected IgniteCache getCache(){ return grid(1).cache(DEFAULT_CACHE_NAME); } /** * @return Entry Processor. */ protected String getEntryProcessor(){ return GridTestProperties.getProperty(GridTestProperties.ENTRY_PROCESSOR_CLASS_NAME) != null ? GridTestProperties.getProperty(GridTestProperties.ENTRY_PROCESSOR_CLASS_NAME) : "org.apache.ignite.tests.p2p.CacheDeploymentEntryProcessor"; } protected CacheAtomicityMode atomicityMode() { return ATOMIC; } /** * @throws Exception In case of error. */ public void testInvokeDeployment() throws Exception { depMode = DeploymentMode.CONTINUOUS; doTestInvoke(); } /** * @throws Exception In case of error. */ public void testInvokeDeployment2() throws Exception { depMode = DeploymentMode.SHARED; doTestInvoke(); } /** * @throws Exception In case of error. */ public void testInvokeAllDeployment() throws Exception { depMode = DeploymentMode.CONTINUOUS; doTestInvokeAll(); } /** * @throws Exception In case of error. */ public void testInvokeAllDeployment2() throws Exception { depMode = DeploymentMode.SHARED; doTestInvokeAll(); } /** * @throws Exception In case of error. */ private void doTestInvoke() throws Exception { try { clientMode = false; startGrid(0); clientMode = true; startGrid(1); Class procCls = grid(1).configuration().getClassLoader().loadClass(getEntryProcessor()); Class valCls = grid(1).configuration().getClassLoader().loadClass(TEST_VALUE); assertTrue(grid(1).configuration().isClientMode()); assertFalse(grid(0).configuration().isClientMode()); IgniteCache cache = getCache(); cache.put("key", valCls.newInstance()); Boolean res = (Boolean)cache.invoke("key", (CacheEntryProcessor)procCls.newInstance()); assertTrue(res); // Checks that get produces no exceptions. cache.get("key"); } finally { stopAllGrids(); } } /** * @throws Exception In case of error. */ private void doTestInvokeAll() throws Exception { try { clientMode = false; startGrid(0); clientMode = true; startGrid(1); Class procCls = grid(1).configuration().getClassLoader().loadClass(getEntryProcessor()); Class valCls = grid(1).configuration().getClassLoader().loadClass(TEST_VALUE); assertTrue(grid(1).configuration().isClientMode()); assertFalse(grid(0).configuration().isClientMode()); IgniteCache cache = getCache(); HashSet keys = new HashSet(); for (int i = 0; i < 3; i++) { String key = "key" + i; cache.put(key, valCls.newInstance()); keys.add(key); } Map<String, EntryProcessorResult> res = (Map<String, EntryProcessorResult>)cache.invokeAll(keys, (CacheEntryProcessor)procCls.newInstance()); assertEquals(3, res.size()); for (EntryProcessorResult result : res.values()) assertTrue((Boolean)result.get()); // Checks that get produces no exceptions. for (int i = 0; i < 3; i++) { String key = "key" + i; cache.get(key); } } finally { stopAllGrids(); } } }