org.picocontainer.lifecycle.StartableLifecycleStrategyTestCase 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. *
*****************************************************************************/
package org.picocontainer.lifecycle;
import static org.picocontainer.tck.MockFactory.mockeryWithCountingNamingScheme;
import java.io.Serializable;
import org.jmock.Expectations;
import org.jmock.Mockery;
import org.jmock.integration.junit4.JMock;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import org.junit.runner.RunWith;
import org.picocontainer.*;
import static org.picocontainer.Characteristics.CACHE;
import org.picocontainer.containers.EmptyPicoContainer;
import org.picocontainer.monitors.NullComponentMonitor;
/**
*
* @author Mauro Talevi
*/
@RunWith(JMock.class)
public class StartableLifecycleStrategyTestCase {
private Mockery mockery = mockeryWithCountingNamingScheme();
private StartableLifecycleStrategy strategy;
@Before
public void setUp(){
strategy = new StartableLifecycleStrategy(new NullComponentMonitor());
}
@Test public void testStartable(){
Object startable = mockComponent(true, false);
strategy.start(startable);
strategy.stop(startable);
}
@Test public void testDisposable(){
Object startable = mockComponent(false, true);
strategy.dispose(startable);
}
@Test public void testSerializable(){
Object serializable = mockComponent(false, false);
strategy.start(serializable);
strategy.stop(serializable);
strategy.dispose(serializable);
}
private Object mockComponent(boolean startable, boolean disposeable) {
if ( startable ) {
final Startable mock = mockery.mock(Startable.class);
mockery.checking(new Expectations() {{
one(mock).start();
one(mock).stop();
}});
return mock;
}
if ( disposeable ) {
final Disposable mock = mockery.mock(Disposable.class);
mockery.checking(new Expectations() {{
one(mock).dispose();
}});
return mock;
}
return mockery.mock(Serializable.class);
}
interface ThirdPartyStartable {
void sstart() throws Exception;
void sstop();
}
public static class ThirdPartyStartableComponent implements ThirdPartyStartable {
StringBuilder sb;
public ThirdPartyStartableComponent(StringBuilder sb) {
this.sb = sb;
}
public void sstart() {
sb.append("<");
}
public void sstop() {
sb.append(">");
}
}
public static class ThirdPartyStartableComponent2 implements ThirdPartyStartable {
public void sstart() {
throw new UnsupportedOperationException();
}
public void sstop() {
}
}
public static class ThirdPartyStartableComponent3 implements ThirdPartyStartable {
public void sstart() throws Exception {
throw new Exception("whoaa!");
}
public void sstop() {
}
}
@Test public void testThirdPartyStartable() {
DefaultPicoContainer pico = new DefaultPicoContainer(new MyStartableLifecycleStrategy(), new EmptyPicoContainer());
StringBuilder sb = new StringBuilder();
pico.addComponent(sb);
pico.as(CACHE).addComponent(ThirdPartyStartableComponent.class);
pico.start();
pico.stop();
assertEquals("<>", sb.toString());
}
@Test public void testThirdPartyStartableCanNoteLifecycleRuntimeException() {
DefaultPicoContainer pico = new DefaultPicoContainer(new MyStartableLifecycleStrategy(), new EmptyPicoContainer());
pico.as(CACHE).addComponent(ThirdPartyStartableComponent2.class);
try {
pico.start();
fail("should have barfed");
} catch (PicoLifecycleException e) {
assertTrue(e.getCause() instanceof UnsupportedOperationException);
assertTrue(e.getInstance() instanceof ThirdPartyStartableComponent2);
assertEquals("sstart", e.getMethod().getName());
// expected
}
}
@Test public void testThirdPartyStartableCanNoteLifecycleException() {
DefaultPicoContainer pico = new DefaultPicoContainer(new MyStartableLifecycleStrategy(), new EmptyPicoContainer());
pico.as(CACHE).addComponent(ThirdPartyStartableComponent3.class);
try {
pico.start();
fail("should have barfed");
} catch (PicoLifecycleException e) {
Throwable throwable = e.getCause();
assertTrue(throwable instanceof Exception);
String s = throwable.getMessage();
assertEquals("whoaa!", s);
assertTrue(e.getInstance() instanceof ThirdPartyStartableComponent3);
assertEquals("sstart", e.getMethod().getName());
// expected
}
}
private static class MyStartableLifecycleStrategy extends StartableLifecycleStrategy {
public MyStartableLifecycleStrategy() {
super(new NullComponentMonitor());
}
protected String getStopMethodName() {
return "sstop";
}
protected String getStartMethodName() {
return "sstart";
}
protected Class getStartableInterface() {
return ThirdPartyStartable.class;
}
}
}