blob: 7c63f0f6c10cf60b495688172e7fe2c6f3cd995d [file] [log] [blame]
package org.apache.jcs.auxiliary;
import java.util.Properties;
import junit.framework.TestCase;
import org.apache.jcs.engine.behavior.IElementSerializer;
import org.apache.jcs.engine.control.MockElementSerializer;
import org.apache.jcs.engine.logging.MockCacheEventLogger;
import org.apache.jcs.utils.serialization.StandardSerializer;
/** Unit tests for the auxiliary cache configurator. */
public class AuxiliaryCacheConfiguratorUnitTest
extends TestCase
{
/**
* Verify that we don't get an error.
*/
public void testParseCacheEventLogger_Null()
{
// SETUP
Properties props = new Properties();
// DO WORK
MockCacheEventLogger result = (MockCacheEventLogger) AuxiliaryCacheConfigurator.parseCacheEventLogger( props,
"junk" );
// VERIFY
assertNull( "Should not have a logger.", result );
}
/**
* Verify that we don't get an error.
*/
public void testParseCacheEventLogger_NullName()
{
// SETUP
Properties props = new Properties();
// DO WORK
MockCacheEventLogger result = (MockCacheEventLogger) AuxiliaryCacheConfigurator.parseCacheEventLogger( props,
null );
// VERIFY
assertNull( "Should not have a logger.", result );
}
/**
* Verify that we can parse the event logger.
*/
public void testParseCacheEventLogger_Normal()
{
// SETUP
String auxPrefix = "jcs.auxiliary." + "MYAux";
String testPropertyValue = "This is the value";
String className = MockCacheEventLogger.class.getName();
Properties props = new Properties();
props.put( auxPrefix + AuxiliaryCacheConfigurator.CACHE_EVENT_LOGGER_PREFIX, className );
props.put( auxPrefix + AuxiliaryCacheConfigurator.CACHE_EVENT_LOGGER_PREFIX
+ AuxiliaryCacheConfigurator.ATTRIBUTE_PREFIX + ".testProperty", testPropertyValue );
// DO WORK
MockCacheEventLogger result = (MockCacheEventLogger) AuxiliaryCacheConfigurator
.parseCacheEventLogger( props, auxPrefix );
// VERIFY
assertNotNull( "Should have a logger.", result );
assertEquals( "Property should be set.", testPropertyValue, result.getTestProperty() );
}
/**
* Verify that we can parse the ElementSerializer.
*/
public void testParseElementSerializer_Normal()
{
// SETUP
String auxPrefix = "jcs.auxiliary." + "MYAux";
String testPropertyValue = "This is the value";
String className = MockElementSerializer.class.getName();
Properties props = new Properties();
props.put( auxPrefix + AuxiliaryCacheConfigurator.SERIALIZER_PREFIX, className );
props.put( auxPrefix + AuxiliaryCacheConfigurator.SERIALIZER_PREFIX
+ AuxiliaryCacheConfigurator.ATTRIBUTE_PREFIX + ".testProperty", testPropertyValue );
// DO WORK
MockElementSerializer result = (MockElementSerializer) AuxiliaryCacheConfigurator
.parseElementSerializer( props, auxPrefix );
// VERIFY
assertNotNull( "Should have a Serializer.", result );
assertEquals( "Property should be set.", testPropertyValue, result.getTestProperty() );
}
/**
* Verify that we can parse the ElementSerializer.
*/
public void testParseElementSerializer_Null()
{
// SETUP
Properties props = new Properties();
// DO WORK
IElementSerializer result = AuxiliaryCacheConfigurator
.parseElementSerializer( props, "junk" );
// VERIFY
assertTrue( "Should have the default Serializer.", result instanceof StandardSerializer );
}
}