예제 #1
0
 @Test
 public void testPutSameItemTwice() throws CacheException {
   cacheService.store(TEST1, "sameItem", "value");
   assertEquals("first element not added", 1, cacheService.getCacheSize(TEST1));
   cacheService.store(TEST1, "sameItem", "value");
   assertEquals("element added twice", 1, cacheService.getCacheSize(TEST1));
 }
예제 #2
0
 @Test
 public void testUpdateElementInCache() throws CacheException {
   cacheService.store(TEST1, "sameItem2", "value1");
   assertEquals("first element not added", 1, cacheService.getCacheSize(TEST1));
   cacheService.store(TEST1, "sameItem2", "value2");
   assertEquals("element added 2 times", 1, cacheService.getCacheSize(TEST1));
   assertEquals("element was not updated", "value2", cacheService.get(TEST1, "sameItem2"));
 }
예제 #3
0
 @Test
 public void testPutLotOfItems() throws CacheException {
   cacheService.store(TEST2, "testLotOfItems0", "value0");
   final int j = 20000;
   for (int i = 1; i <= j; i++) {
     cacheService.store(TEST2, "testLotOfItems" + i, "value" + i);
   }
   assertEquals("Not all elements were added", j + 1, cacheService.getCacheSize(TEST2));
 }
예제 #4
0
 @Test
 public void testGetSimpleObjectInCache() throws CacheException {
   final String myObject = "testObject";
   cacheService.store(TEST1, "test", myObject);
   final String inObject = (String) cacheService.get(TEST1, "test");
   assertEquals("we didn't retrieve the same object", myObject, inObject);
 }
예제 #5
0
 @Test
 public void testPutSimpleObjectInCache() throws CacheException {
   final int cacheSize = cacheService.getCacheSize(TEST1);
   final String myObject = "testObject";
   cacheService.store(TEST1, "test", myObject);
   assertEquals("cache size did not increased", cacheSize + 1, cacheService.getCacheSize(TEST1));
 }
예제 #6
0
 @Test(expected = CacheException.class)
 public void defaultConfigNotSerializablePutObject() throws CacheException {
   final String cacheName = "Should_use_default_config";
   final String key = "someObjectCacheKey";
   // We cannot store non-Serializable objects if copyOnRead or copyOnWrite is set to true:
   cacheService.store(cacheName, key, new Object());
 }
예제 #7
0
 @Test
 public void testClearAllCache() throws CacheException {
   cacheService.store(TEST1, "test1", "test1");
   assertTrue("cache was not empty", cacheService.getCacheSize(TEST1) > 0);
   cacheService.clearAll();
   assertTrue("cache was not cleared", cacheService.getCacheSize(TEST1) == 0);
 }
예제 #8
0
 @SuppressWarnings("unchecked")
 @Test
 public void testChangeCachedElementWithoutCopy() throws CacheException {
   final ArrayList<String> list = new ArrayList<String>();
   cacheService.store(TEST2, "mylist", list);
   list.add("kikoo");
   final ArrayList<String> cachedList = (ArrayList<String>) cacheService.get(TEST2, "mylist");
   assertTrue("object was copied in cached", cachedList.size() == 1);
 }
예제 #9
0
 @Test
 public void testPutComplexObjectInCache() throws CacheException {
   final int cacheSize = cacheService.getCacheSize(TEST1);
   final ArrayList<Map<String, String>> list = new ArrayList<Map<String, String>>();
   final HashMap<String, String> map = new HashMap<String, String>();
   map.put("bpm", "bonita");
   list.add(map);
   cacheService.store(TEST1, "complex", list);
   assertEquals("cache size did not increased", cacheSize + 1, cacheService.getCacheSize(TEST1));
 }
예제 #10
0
 @Test
 public void getKeysOfACache() throws CacheException {
   final List<?> keys = cacheService.getKeys(TEST1);
   assertFalse(keys.contains("aKeyThatMustBeHere"));
   final int cacheKeySize = keys.size();
   cacheService.store(TEST1, "aKeyThatMustBeHere", "value1");
   final List<?> keys2 = cacheService.getKeys(TEST1);
   assertEquals(cacheKeySize + 1, keys2.size());
   assertTrue(keys2.contains("aKeyThatMustBeHere"));
 }
예제 #11
0
 @Test
 public void shortTimeoutConfig() throws Exception {
   final String key = "shortTimeout";
   cacheService.store(SOME_DEFAULT_CACHE_NAME, key, new Object());
   Object object = cacheService.get(SOME_DEFAULT_CACHE_NAME, key);
   assertNotNull("Object should be in cache", object);
   Thread.sleep(1020);
   object = cacheService.get(SOME_DEFAULT_CACHE_NAME, key);
   assertNull("Object should not be in cache any longer", object);
 }
예제 #12
0
 @Test
 public void eternalCacheTest() throws Exception {
   final String key = "eternalCacheTest";
   final Object value = new Object();
   cacheService.store(ETERNAL_CACHE, key, value);
   Object object = cacheService.get(ETERNAL_CACHE, key);
   assertNotNull("Object should be in cache", object);
   Thread.sleep(1020);
   object = cacheService.get(ETERNAL_CACHE, key);
   assertEquals("Object should still be in cache", value, object);
 }
예제 #13
0
 @Test
 public void testPutLotOfItemsWithOverflow() throws CacheException {
   final int cacheSize = cacheService.getCacheSize(TEST1);
   final int j = 20000;
   for (int i = 0; i < j; i++) {
     cacheService.store(TEST1, "testLotOfItems" + i, "value" + i);
   }
   assertEquals(
       "Not all elements were added with the overflow",
       cacheSize + j,
       cacheService.getCacheSize(TEST1));
 }
예제 #14
0
 @SuppressWarnings("unchecked")
 @Test
 public void testGetComplexObjectInCache() throws CacheException {
   final ArrayList<Map<String, String>> list = new ArrayList<Map<String, String>>();
   final HashMap<String, String> map = new HashMap<String, String>();
   map.put("bpm", "bonita");
   list.add(map);
   cacheService.store(TEST1, "complex", list);
   final Object object = cacheService.get(TEST1, "complex");
   assertNotNull("the object does not exists", object);
   assertEquals(
       "Not the same object",
       "bonita",
       ((ArrayList<Map<String, String>>) object).get(0).get("bpm"));
 }
예제 #15
0
 @Test(expected = CacheException.class)
 public void cacheNotDefined() throws Exception {
   final String key = "defaultTimeout";
   final String anotherCacheName = "Should_use_default_config";
   cacheService.store(anotherCacheName, key, new String());
 }
예제 #16
0
 @Test
 public void testPutNullInCacheShouldWork() throws CacheException {
   cacheService.store(TEST1, "test2", null);
   assertEquals("Null should be added to the cache", 1, cacheService.getCacheSize(TEST1));
   assertTrue("Null value can't be put", cacheService.get(TEST1, "test2") == null);
 }
예제 #17
0
 @Test
 public void testPutInDifferentCache() throws CacheException {
   final int cacheSize = cacheService.getCacheSize(TEST1);
   cacheService.store(TEST2, "testdifferentCache", "value");
   assertEquals("element added in the wrong cache", cacheSize, cacheService.getCacheSize(TEST1));
 }