blob: 10415011c37cc8c72f28045212cfac6939953065 [file] [log] [blame]
/*
* 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.cache.spring;
import org.apache.ignite.IgniteCache;
import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.configuration.CacheConfiguration;
import org.apache.ignite.internal.util.typedef.internal.U;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Test;
/**
* Spring cache test.
*/
public abstract class GridSpringCacheManagerAbstractTest extends GridCommonAbstractTest {
/** */
protected static final String CACHE_NAME = "testCache";
/** */
protected static final String DYNAMIC_CACHE_NAME = "dynamicCache";
/** */
private static final Object NULL;
/**
*/
static {
try {
NULL = U.field(SpringCache.class, "NULL");
}
catch (IgniteCheckedException e) {
throw new RuntimeException(e);
}
}
/** */
protected GridSpringCacheTestService svc;
/** */
protected GridSpringDynamicCacheTestService dynamicSvc;
/** {@inheritDoc} */
@Override public String getTestIgniteInstanceName() {
return "testGrid";
}
/**
* @throws Exception If failed.
*/
@Test
public void testSimpleKey() throws Exception {
for (int i = 0; i < 3; i++) {
assertEquals("value" + i, svc.simpleKey(i));
assertEquals("value" + i, svc.simpleKey(i));
}
assertEquals(3, svc.called());
IgniteCache<Integer, String> c = grid().cache(CACHE_NAME);
assertEquals(3, c.size());
for (int i = 0; i < 3; i++)
assertEquals("value" + i, c.get(i));
}
/**
* @throws Exception If failed.
*/
@Test
public void testSimpleKeyNullValue() throws Exception {
for (int i = 0; i < 3; i++) {
assertNull(svc.simpleKeyNullValue(i));
assertNull(svc.simpleKeyNullValue(i));
}
assertEquals(3, svc.called());
IgniteCache<Integer, String> c = grid().cache(CACHE_NAME);
assertEquals(3, c.size());
for (int i = 0; i < 3; i++)
assertEquals(NULL, c.get(i));
}
/**
* @throws Exception If failed.
*/
@Test
public void testComplexKey() throws Exception {
for (int i = 0; i < 3; i++) {
assertEquals("value" + i + "suffix" + i, svc.complexKey(i, "suffix" + i));
assertEquals("value" + i + "suffix" + i, svc.complexKey(i, "suffix" + i));
}
assertEquals(3, svc.called());
IgniteCache<GridSpringCacheTestKey, String> c = grid().cache(CACHE_NAME);
assertEquals(3, c.size());
for (int i = 0; i < 3; i++)
assertEquals("value" + i + "suffix" + i, c.get(new GridSpringCacheTestKey(i, "suffix" + i)));
}
/**
* @throws Exception If failed.
*/
@Test
public void testComplexKeyNullValue() throws Exception {
for (int i = 0; i < 3; i++) {
assertNull(svc.complexKeyNullValue(i, "suffix" + i));
assertNull(svc.complexKeyNullValue(i, "suffix" + i));
}
assertEquals(3, svc.called());
IgniteCache<GridSpringCacheTestKey, String> c = grid().cache(CACHE_NAME);
assertEquals(3, c.size());
for (int i = 0; i < 3; i++)
assertEquals(NULL, c.get(new GridSpringCacheTestKey(i, "suffix" + i)));
}
/**
* @throws Exception If failed.
*/
@Test
public void testSimpleKeyPut() throws Exception {
IgniteCache<Integer, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++) {
assertEquals("value" + i + "odd", svc.simpleKeyPut(i));
assertEquals(i + 1, c.size());
assertEquals("value" + i + "odd", c.get(i));
assertEquals("value" + i + "even", svc.simpleKeyPut(i));
assertEquals(i + 1, c.size());
assertEquals("value" + i + "even", c.get(i));
}
assertEquals(6, svc.called());
}
/**
* @throws Exception If failed.
*/
@Test
public void testSimpleKeyPutNullValue() throws Exception {
IgniteCache<Integer, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++) {
assertNull(svc.simpleKeyPutNullValue(i));
assertEquals(i + 1, c.size());
assertEquals(NULL, c.get(i));
assertNull(svc.simpleKeyPutNullValue(i));
assertEquals(i + 1, c.size());
assertEquals(NULL, c.get(i));
}
assertEquals(6, svc.called());
}
/**
* @throws Exception If failed.
*/
@Test
public void testComplexKeyPut() throws Exception {
IgniteCache<GridSpringCacheTestKey, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++) {
assertEquals("value" + i + "suffix" + i + "odd", svc.complexKeyPut(i, "suffix" + i));
assertEquals(i + 1, c.size());
assertEquals("value" + i + "suffix" + i + "odd", c.get(new GridSpringCacheTestKey(i, "suffix" + i)));
assertEquals("value" + i + "suffix" + i + "even", svc.complexKeyPut(i, "suffix" + i));
assertEquals(i + 1, c.size());
assertEquals("value" + i + "suffix" + i + "even", c.get(new GridSpringCacheTestKey(i, "suffix" + i)));
}
assertEquals(6, svc.called());
}
/**
* @throws Exception If failed.
*/
@Test
public void testComplexKeyPutNullValue() throws Exception {
IgniteCache<GridSpringCacheTestKey, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++) {
assertNull(svc.complexKeyPutNullValue(i, "suffix" + i));
assertEquals(i + 1, c.size());
assertEquals(NULL, c.get(new GridSpringCacheTestKey(i, "suffix" + i)));
assertNull(svc.complexKeyPutNullValue(i, "suffix" + i));
assertEquals(i + 1, c.size());
assertEquals(NULL, c.get(new GridSpringCacheTestKey(i, "suffix" + i)));
}
assertEquals(6, svc.called());
}
/**
* @throws Exception If failed.
*/
@Test
public void testSimpleKeyEvict() throws Exception {
IgniteCache<Integer, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++)
c.put(i, "value" + i);
assertEquals(3, c.size());
assertEquals("value0", c.get(0));
assertEquals("value1", c.get(1));
assertEquals("value2", c.get(2));
svc.simpleKeyEvict(2);
assertEquals(2, c.size());
assertEquals("value0", c.get(0));
assertEquals("value1", c.get(1));
assertNull(c.get(2));
}
/**
* @throws Exception If failed.
*/
@Test
public void testComplexKeyEvict() throws Exception {
IgniteCache<GridSpringCacheTestKey, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++)
c.put(new GridSpringCacheTestKey(i, "suffix" + i), "value" + i);
assertEquals(3, c.size());
assertEquals("value0", c.get(new GridSpringCacheTestKey(0, "suffix" + 0)));
assertEquals("value1", c.get(new GridSpringCacheTestKey(1, "suffix" + 1)));
assertEquals("value2", c.get(new GridSpringCacheTestKey(2, "suffix" + 2)));
svc.complexKeyEvict(2, "suffix" + 2);
assertEquals(2, c.size());
assertEquals("value0", c.get(new GridSpringCacheTestKey(0, "suffix" + 0)));
assertEquals("value1", c.get(new GridSpringCacheTestKey(1, "suffix" + 1)));
assertNull(c.get(new GridSpringCacheTestKey(2, "suffix" + 2)));
}
/**
* @throws Exception If failed.
*/
@Test
public void testEvictAll() throws Exception {
IgniteCache<Integer, String> c = grid().cache(CACHE_NAME);
for (int i = 0; i < 3; i++)
c.put(i, "value" + i);
assertEquals(3, c.size());
assertEquals("value0", c.get(0));
assertEquals("value1", c.get(1));
assertEquals("value2", c.get(2));
svc.evictAll();
assertEquals(0, c.size());
}
/**
* @throws Exception If failed.
*/
@Test
public void testDynamicCache() throws Exception {
for (int i = 0; i < 3; i++) {
assertEquals("value" + i, dynamicSvc.cacheable(i));
assertEquals("value" + i, dynamicSvc.cacheable(i));
}
assertEquals(3, dynamicSvc.called());
IgniteCache<Integer, String> c = grid().cache(DYNAMIC_CACHE_NAME);
// Check that correct config is used.
assertEquals(2, c.getConfiguration(CacheConfiguration.class).getBackups());
assertEquals(3, c.size());
for (int i = 0; i < 3; i++)
assertEquals("value" + i, c.get(i));
}
/**
* @throws Exception If failed.
*/
@Test
public void testDynamicCachePut() throws Exception {
for (int i = 0; i < 3; i++) {
assertEquals("value" + i, dynamicSvc.cachePut(i));
assertEquals("value" + i, dynamicSvc.cachePut(i));
}
assertEquals(6, dynamicSvc.called());
IgniteCache<Integer, String> c = grid().cache(DYNAMIC_CACHE_NAME);
// Check that correct config is used.
assertEquals(2, c.getConfiguration(CacheConfiguration.class).getBackups());
assertEquals(3, c.size());
for (int i = 0; i < 3; i++)
assertEquals("value" + i, c.get(i));
}
/**
* @throws Exception If failed.
*/
@Test
public void testDynamicCacheEvict() throws Exception {
CacheConfiguration<Integer, String> cacheCfg = new CacheConfiguration<>(DEFAULT_CACHE_NAME);
cacheCfg.setName(DYNAMIC_CACHE_NAME);
IgniteCache<Integer, String> c = grid().createCache(cacheCfg);
for (int i = 0; i < 3; i++)
c.put(i, "value" + i);
assertEquals(3, c.size());
for (int i = 0; i < 2; i++) {
dynamicSvc.cacheEvict(i);
dynamicSvc.cacheEvict(i);
}
assertEquals(4, dynamicSvc.called());
assertEquals(1, c.size());
assertEquals("value2", c.get(2));
}
/**
* @throws Exception If failed.
*/
@Test
public void testDynamicCacheEvictAll() throws Exception {
CacheConfiguration<Integer, String> cacheCfg = new CacheConfiguration<>(DEFAULT_CACHE_NAME);
cacheCfg.setName(DYNAMIC_CACHE_NAME);
IgniteCache<Integer, String> c = grid().createCache(cacheCfg);
for (int i = 0; i < 3; i++)
c.put(i, "value" + i);
assertEquals(3, c.size());
dynamicSvc.cacheEvictAll();
dynamicSvc.cacheEvictAll();
assertEquals(2, dynamicSvc.called());
assertEquals(0, c.size());
}
}