org.picocontainer.behaviors.CachingTestCase Maven / Gradle / Ivy
/*****************************************************************************
* Copyright (C) PicoContainer Organization. All rights reserved. *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD *
* style license a copy of which has been included with this distribution in *
* the LICENSE.txt file. *
* *
* Original code by *
*****************************************************************************/
package org.picocontainer.behaviors;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.picocontainer.Characteristics;
import org.picocontainer.ComponentAdapter;
import org.picocontainer.ComponentFactory;
import org.picocontainer.DefaultPicoContainer;
import org.picocontainer.adapters.InstanceAdapter;
import org.picocontainer.injectors.ConstructorInjection;
import org.picocontainer.injectors.ConstructorInjector;
import org.picocontainer.lifecycle.NullLifecycleStrategy;
import org.picocontainer.monitors.NullComponentMonitor;
import org.picocontainer.tck.AbstractComponentFactoryTest;
/**
* @author [email protected]
*/
public class CachingTestCase extends AbstractComponentFactoryTest {
protected ComponentFactory createComponentFactory() {
return new Caching().wrap(new ConstructorInjection());
}
@Test public void testAddComponentUsesCachingBehavior() {
DefaultPicoContainer pico =
new DefaultPicoContainer(new Caching().wrap(new ConstructorInjection()));
pico.addComponent("foo", String.class);
ComponentAdapter foo = pico.getComponentAdapter("foo");
assertEquals(Cached.class, foo.getClass());
assertEquals(ConstructorInjector.class, ((AbstractBehavior) foo).getDelegate().getClass());
}
@Test public void testAddComponentUsesCachingBehaviorWithRedundantCacheProperty() {
DefaultPicoContainer pico =
new DefaultPicoContainer(new Caching().wrap(new ConstructorInjection()));
pico.change(Characteristics.CACHE).addComponent("foo", String.class);
ComponentAdapter foo = pico.getComponentAdapter("foo");
assertEquals(Cached.class, foo.getClass());
assertEquals(ConstructorInjector.class, ((AbstractBehavior) foo).getDelegate().getClass());
}
@Test public void testAddComponentNoesNotUseCachingBehaviorWhenNoCachePropertyIsSpecified() {
DefaultPicoContainer pico =
new DefaultPicoContainer(new Caching().wrap(new ConstructorInjection()));
pico.change(Characteristics.NO_CACHE).addComponent("foo", String.class);
ComponentAdapter foo = pico.getComponentAdapter("foo");
assertEquals(ConstructorInjector.class, foo.getClass());
}
@Test public void testAddAdapterUsesCachingBehavior() {
DefaultPicoContainer pico =
new DefaultPicoContainer(new Caching().wrap(new ConstructorInjection()));
pico.addAdapter(new InstanceAdapter("foo", "bar", new NullLifecycleStrategy(), new NullComponentMonitor()));
ComponentAdapter foo = pico.getComponentAdapter("foo");
assertEquals(Cached.class, foo.getClass());
assertEquals(InstanceAdapter.class, ((AbstractBehavior) foo).getDelegate().getClass());
}
@Test public void testAddAdapterUsesCachingBehaviorWithRedundantCacheProperty() {
DefaultPicoContainer pico =
new DefaultPicoContainer(new Caching().wrap(new ConstructorInjection()));
pico.change(Characteristics.CACHE).addAdapter(new InstanceAdapter("foo", "bar", new NullLifecycleStrategy(), new NullComponentMonitor()));
ComponentAdapter foo = pico.getComponentAdapter("foo");
assertEquals(Cached.class, foo.getClass());
assertEquals(InstanceAdapter.class, ((AbstractBehavior) foo).getDelegate().getClass());
}
@Test public void testAddAdapterNoesNotUseCachingBehaviorWhenNoCachePropertyIsSpecified() {
DefaultPicoContainer pico =
new DefaultPicoContainer(new Caching().wrap(new ConstructorInjection()));
pico.change(Characteristics.NO_CACHE).addAdapter(new InstanceAdapter("foo", "bar", new NullLifecycleStrategy(), new NullComponentMonitor()));
ComponentAdapter foo = pico.getComponentAdapter("foo");
assertEquals(InstanceAdapter.class, foo.getClass());
}
}