/* * 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.io.Serializable; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.apache.ignite.IgniteCache; import org.apache.ignite.cache.CacheMode; import org.apache.ignite.cache.CacheWriteSynchronizationMode; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.IgniteEx; 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; /** * */ public class IgniteCacheGetCustomCollectionsSelfTest extends GridCommonAbstractTest { /** */ private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); /** {@inheritDoc} */ @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName); cfg.setMarshaller(null); final CacheConfiguration<String, MyMap> mapCacheConfig = new CacheConfiguration<>(DEFAULT_CACHE_NAME); mapCacheConfig.setCacheMode(CacheMode.PARTITIONED); mapCacheConfig.setWriteSynchronizationMode(CacheWriteSynchronizationMode.FULL_SYNC); mapCacheConfig.setBackups(1); mapCacheConfig.setName("cache"); cfg.setCacheConfiguration(mapCacheConfig); TcpDiscoverySpi discoSpi = new TcpDiscoverySpi(); discoSpi.setIpFinder(IP_FINDER); cfg.setDiscoverySpi(discoSpi); return cfg; } /** * @throws Exception If failed. */ public void testPutGet() throws Exception { startGrids(3); try { IgniteEx ignite = grid(0); IgniteCache<String, MyMap> cache = ignite.cache("cache"); Set<String> keys = new HashSet<>(); for (int i = 0; i < 100; i++) { String key = "a" + i;; MyMap map = new MyMap(); map.put("a", new Value()); cache.put(key, map); map = cache.get(key); keys.add(key); Object a = map.get("a"); assertNotNull(a); assertEquals(Value.class, a.getClass()); } Map<String, MyMap> vals = cache.getAll(keys); for (String key : keys) { MyMap map = vals.get(key); Object a = map.get("a"); assertNotNull(a); assertEquals(Value.class, a.getClass()); } } finally { stopAllGrids(); } } /** * */ private static class MyMap extends HashMap implements Serializable { } /** * */ private static class Value implements Serializable { private int val; } }