/* * 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; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.concurrent.atomic.AtomicInteger; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.util.GridConcurrentHashSet; import org.apache.ignite.internal.util.typedef.C1; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.lang.IgniteCallable; import org.apache.ignite.lang.IgniteRunnable; 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.PARTITIONED; /** * Tests for methods that run job locally with multiple arguments. */ public class GridProjectionLocalJobMultipleArgumentsSelfTest extends GridCommonAbstractTest { /** IP finder. */ private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); /** */ private static Collection<Object> ids; /** */ private static AtomicInteger res; /** * Starts grid. */ public GridProjectionLocalJobMultipleArgumentsSelfTest() { super(true); } /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); CacheConfiguration cache = defaultCacheConfiguration(); cache.setCacheMode(PARTITIONED); cache.setBackups(1); cfg.setCacheConfiguration(cache); TcpDiscoverySpi disco = new TcpDiscoverySpi(); disco.setIpFinder(IP_FINDER); cfg.setDiscoverySpi(disco); return cfg; } /** {@inheritDoc} */ @Override protected void beforeTest() throws Exception { ids = new GridConcurrentHashSet<>(); res = new AtomicInteger(); } /** * @throws Exception If failed. */ public void testAffinityCall() throws Exception { Collection<Integer> res = new ArrayList<>(); for (int i : F.asList(1, 2, 3)) { res.add(grid().compute().affinityCall(DEFAULT_CACHE_NAME, i, new IgniteCallable<Integer>() { @Override public Integer call() { ids.add(this); return 10; } })); } assertEquals(30, F.sumInt(res)); assertEquals(3, ids.size()); } /** * @throws Exception If failed. */ public void testAffinityRun() throws Exception { for (int i : F.asList(1, 2, 3)) { grid().compute().affinityRun(DEFAULT_CACHE_NAME, i, new IgniteRunnable() { @Override public void run() { ids.add(this); res.addAndGet(10); } }); } assertEquals(30, res.get()); assertEquals(3, ids.size()); } /** * @throws Exception If failed. */ public void testCall() throws Exception { Collection<Integer> res = grid().compute().apply(new C1<Integer, Integer>() { @Override public Integer apply(Integer arg) { ids.add(this); return 10 + arg; } }, F.asList(1, 2, 3)); assertEquals(36, F.sumInt(res)); assertEquals(3, ids.size()); } /** * @throws Exception If failed. */ public void testCallWithProducer() throws Exception { Collection<Integer> args = Arrays.asList(1, 2, 3); Collection<Integer> res = grid().compute().apply(new C1<Integer, Integer>() { @Override public Integer apply(Integer arg) { ids.add(this); return 10 + arg; } }, args); assertEquals(36, F.sumInt(res)); assertEquals(3, ids.size()); } }