blob: e40edf6664bb1af2ff2b117ba1e560bb5450c160 [file] [log] [blame]
package org.apache.jcs.engine.control;
import java.util.Properties;
import junit.framework.TestCase;
import org.apache.jcs.auxiliary.AuxiliaryCacheConfigurator;
import org.apache.jcs.auxiliary.MockAuxiliaryCache;
import org.apache.jcs.auxiliary.MockAuxiliaryCacheAttributes;
import org.apache.jcs.auxiliary.MockAuxiliaryCacheFactory;
import org.apache.jcs.engine.CompositeCacheAttributes;
import org.apache.jcs.engine.ElementAttributes;
import org.apache.jcs.engine.logging.MockCacheEventLogger;
/** Unit tests for the configurator. */
public class CompositeCacheConfiguratorUnitTest
extends TestCase
{
/**
* Verify that we can parse the event logger correctly
*/
public void testParseAuxiliary_CacheEventLogger_Normal()
{
// SETUP
String regionName = "MyRegion";
String auxName = "MockAux";
String auxPrefix = "jcs.auxiliary." + auxName;
String auxiliaryClassName = MockAuxiliaryCacheFactory.class.getName();
String eventLoggerClassName = MockCacheEventLogger.class.getName();
String auxiliaryAttributeClassName = MockAuxiliaryCacheAttributes.class.getName();
Properties props = new Properties();
props.put( auxPrefix, auxiliaryClassName );
props.put( auxPrefix + CompositeCacheConfigurator.ATTRIBUTE_PREFIX, auxiliaryAttributeClassName );
props.put( auxPrefix + AuxiliaryCacheConfigurator.CACHE_EVENT_LOGGER_PREFIX, eventLoggerClassName );
System.out.print( props );
CompositeCacheManager manager = CompositeCacheManager.getUnconfiguredInstance();
CompositeCacheConfigurator configurator = new CompositeCacheConfigurator( manager );
CompositeCache cache = new CompositeCache( regionName, new CompositeCacheAttributes(), new ElementAttributes() );
// DO WORK
MockAuxiliaryCache result = (MockAuxiliaryCache) configurator
.parseAuxiliary( cache, props, auxName, regionName );
// VERIFY
assertNotNull( "Should have an auxcache.", result );
assertNotNull( "Should have an event logger.", result.getCacheEventLogger() );
}
/**
* Verify that we can parse the spool chunk size
*/
public void testParseSpoolChunkSize_Normal()
{
// SETUP
String regionName = "MyRegion";
int chunkSize = 5;
Properties props = new Properties();
props.put( "jcs.default", "" );
props.put( "jcs.default.cacheattributes.SpoolChunkSize", String.valueOf( chunkSize ) );
CompositeCacheManager manager = CompositeCacheManager.getUnconfiguredInstance();
// DO WORK
manager.configure( props );
// VERIFY
CompositeCache cache = manager.getCache( regionName );
assertEquals( "Wrong chunkSize", cache.getCacheAttributes().getSpoolChunkSize(), chunkSize );
}
}