org.picocontainer.tck.AbstractComponentFactoryTest 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.tck;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import java.util.Properties;
import org.junit.Before;
import org.junit.Test;
import org.picocontainer.Characteristics;
import org.picocontainer.ComponentAdapter;
import org.picocontainer.ComponentFactory;
import org.picocontainer.DefaultPicoContainer;
import org.picocontainer.PicoCompositionException;
import org.picocontainer.lifecycle.NullLifecycleStrategy;
import org.picocontainer.monitors.NullComponentMonitor;
import org.picocontainer.testmodel.SimpleTouchable;
import org.picocontainer.testmodel.Touchable;
/**
* @author Aslak Hellesøy
*/
public abstract class AbstractComponentFactoryTest {
protected DefaultPicoContainer picoContainer;
protected abstract ComponentFactory createComponentFactory();
@Before
public void setUp() throws Exception {
picoContainer = new DefaultPicoContainer();
}
@Test public void testEquals() throws PicoCompositionException {
ComponentAdapter componentAdapter = createComponentFactory().createComponentAdapter(new NullComponentMonitor(),
new NullLifecycleStrategy(),
new Properties(
Characteristics
.CDI),
Touchable.class,
SimpleTouchable.class);
assertEquals(componentAdapter, componentAdapter);
assertTrue(!componentAdapter.equals("blah"));
}
@Test public void testRegisterComponent() throws PicoCompositionException {
ComponentAdapter componentAdapter =
createComponentFactory().createComponentAdapter(new NullComponentMonitor(),
new NullLifecycleStrategy(),
new Properties(Characteristics
.CDI),
Touchable.class,
SimpleTouchable.class);
picoContainer.addAdapter(componentAdapter);
ComponentAdapter adapter = (ComponentAdapter)picoContainer.getComponentAdapters().toArray()[0];
assertSame(componentAdapter.getComponentKey(), adapter.getComponentKey());
}
@Test public void testUnregisterComponent() throws PicoCompositionException {
ComponentAdapter componentAdapter =
createComponentFactory().createComponentAdapter(new NullComponentMonitor(),
new NullLifecycleStrategy(),
new Properties(Characteristics
.CDI),
Touchable.class,
SimpleTouchable.class);
picoContainer.addAdapter(componentAdapter);
picoContainer.removeComponent(Touchable.class);
assertFalse(picoContainer.getComponentAdapters().contains(componentAdapter));
}
}