blob: 618c1876e57d044ae92dbcf9b9d2097bf33c7e37 [file] [log] [blame]
package org.apache.commons.jcs3.auxiliary.remote;
import org.apache.commons.jcs3.engine.CacheElement;
import org.apache.commons.jcs3.engine.ZombieCacheServiceNonLocal;
import org.apache.commons.jcs3.engine.behavior.ICacheElement;
/*
* 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.
*/
import junit.framework.TestCase;
/**
* Tests for the zombie remote cache service.
*/
public class ZombieRemoteCacheServiceUnitTest
extends TestCase
{
/**
* Verify that an update event gets added and then is sent to the service passed to propagate.
* <p>
* @throws Exception
*/
public void testUpdateThenWalk()
throws Exception
{
// SETUP
final MockRemoteCacheService<String, String> service = new MockRemoteCacheService<>();
final ZombieCacheServiceNonLocal<String, String> zombie = new ZombieCacheServiceNonLocal<>( 10 );
final String cacheName = "testUpdate";
// DO WORK
final ICacheElement<String, String> element = new CacheElement<>( cacheName, "key", "value" );
zombie.update( element, 123l );
zombie.propagateEvents( service );
// VERIFY
assertEquals( "Updated element is not as expected.", element, service.lastUpdate );
}
/**
* Verify that nothing is added if the max is set to 0.
* <p>
* @throws Exception
*/
public void testUpdateThenWalk_zeroSize()
throws Exception
{
// SETUP
final MockRemoteCacheService<String, String> service = new MockRemoteCacheService<>();
final ZombieCacheServiceNonLocal<String, String> zombie = new ZombieCacheServiceNonLocal<>( 0 );
final String cacheName = "testUpdate";
// DO WORK
final ICacheElement<String, String> element = new CacheElement<>( cacheName, "key", "value" );
zombie.update( element, 123l );
zombie.propagateEvents( service );
// VERIFY
assertNull( "Nothing should have been put to the service.", service.lastUpdate );
}
/**
* Verify that a remove event gets added and then is sent to the service passed to propagate.
* <p>
* @throws Exception
*/
public void testRemoveThenWalk()
throws Exception
{
// SETUP
final MockRemoteCacheService<String, String> service = new MockRemoteCacheService<>();
final ZombieCacheServiceNonLocal<String, String> zombie = new ZombieCacheServiceNonLocal<>( 10 );
final String cacheName = "testRemoveThenWalk";
final String key = "myKey";
// DO WORK
zombie.remove( cacheName, key, 123l );
zombie.propagateEvents( service );
// VERIFY
assertEquals( "Updated element is not as expected.", key, service.lastRemoveKey );
}
/**
* Verify that a removeAll event gets added and then is sent to the service passed to propagate.
* <p>
* @throws Exception
*/
public void testRemoveAllThenWalk()
throws Exception
{
// SETUP
final MockRemoteCacheService<String, String> service = new MockRemoteCacheService<>();
final ZombieCacheServiceNonLocal<String, String> zombie = new ZombieCacheServiceNonLocal<>( 10 );
final String cacheName = "testRemoveThenWalk";
// DO WORK
zombie.removeAll( cacheName, 123l );
zombie.propagateEvents( service );
// VERIFY
assertEquals( "Updated element is not as expected.", cacheName, service.lastRemoveAllCacheName);
}
}