org.mule.module.ibeans.annotations
Class AbstractIBeansTestCase

java.lang.Object
  extended by junit.framework.Assert
      extended by junit.framework.TestCase
          extended by org.mule.tck.AbstractMuleTestCase
              extended by org.mule.module.ibeans.annotations.AbstractIBeansTestCase
All Implemented Interfaces:
junit.framework.Test, TestCaseWatchdogTimeoutHandler
Direct Known Subclasses:
CallVoidReturnTestCase, ErrorFiltersTestCase, ExceptionListenerTestCase, IBeansHolderConfigBuilderTestCase, ImplicitPropertiesInFactoryTestCase, MockIBeanTestCase, OptionalParamsTestCase, ParamFactoryTestCase, ReturnAnnotationTestCase, TextUsageViewTestCase, UriEncodingTestCase, UriParamFilterTestCase

public abstract class AbstractIBeansTestCase
extends AbstractMuleTestCase

TODO


Nested Class Summary
 
Nested classes/interfaces inherited from class org.mule.tck.AbstractMuleTestCase
AbstractMuleTestCase.TestInfo
 
Field Summary
protected  org.ibeans.spi.IBeansPlugin plugin
           
 
Fields inherited from class org.mule.tck.AbstractMuleTestCase
callbackCalled, CLASSNAME_ANNOTATIONS_CONFIG_BUILDER, DEFAULT_MULE_TEST_TIMEOUT_SECS, IGNORED_DOT_MULE_DIRS, LOCK_TIMEOUT, logger, muleContext, numPorts, ports, PROPERTY_MULE_TEST_TIMEOUT, RECEIVE_TIMEOUT, TEST_MESSAGE, testTimeoutSecs
 
Constructor Summary
protected AbstractIBeansTestCase()
           
 
Method Summary
protected  org.ibeans.spi.IBeansPlugin createPlugin()
           
protected  void doSetUp()
          Exactly the same a AbstractMuleTestCase.setUp() in normal JUnit test cases.
protected
<T> T
getDataAs(java.io.InputStream data, org.ibeans.api.DataType<T> as)
           
protected
<T> T
loadData(java.lang.String resource, org.ibeans.api.DataType<T> type)
           
protected  org.mockito.stubbing.Answer withAtomData(java.lang.String resource, java.lang.Object ibean)
           
protected  org.mockito.stubbing.Answer withData(java.lang.String resource, java.lang.Class returnType)
          A mock return for a method call that will load data and transform it into the return type set on the iBean.
protected  org.mockito.stubbing.Answer withData(java.lang.String resource, org.ibeans.api.channel.MimeType mimeType, org.ibeans.impl.test.MockMessageCallback callback, java.lang.Object ibean)
          A mock return for a method call that will load data and transform it into the return type set on the iBean.
protected  org.mockito.stubbing.Answer withJsonData(java.lang.String resource, java.lang.Object ibean)
           
protected  org.mockito.stubbing.Answer withRssData(java.lang.String resource, java.lang.Object ibean)
           
protected  org.mockito.stubbing.Answer withTextData(java.lang.String resource, java.lang.Object ibean)
           
protected  org.mockito.stubbing.Answer withXmlData(java.lang.String resource, java.lang.Object ibean)
           
 
Methods inherited from class org.mule.tck.AbstractMuleTestCase
addBuilders, checkPorts, configureMuleContext, createMuleContext, createObject, createObject, createTestInfo, createWatchdog, disposeManager, doTearDown, findFreePorts, getBuilder, getConfigurationResources, getPorts, getSensingNullMessageProcessor, getStartUpProperties, getTestConnector, getTestEvent, getTestEvent, getTestEvent, getTestEvent, getTestEvent, getTestEvent, getTestEventContext, getTestEventContext, getTestInboundEndpoint, getTestInboundEndpoint, getTestInboundEndpoint, getTestInboundEndpoint, getTestInboundEndpoint, getTestInboundEvent, getTestInboundEvent, getTestInboundEvent, getTestInfo, getTestOutboundEndpoint, getTestOutboundEndpoint, getTestOutboundEndpoint, getTestOutboundEndpoint, getTestOutboundEndpoint, getTestService, getTestService, getTestService, getTestSession, getTestTimeoutSecs, getTestTransactedInboundEndpoint, getTestTransformer, getTriggerableMessageSource, getTriggerableMessageSource, giveTheTestSomeTimeToCleanUpAndThenKillIt, handleTimeout, initialiseObject, initTestTimeoutSecs, isDisabledInThisEnvironment, isDisabledInThisEnvironment, isDisposeManagerPerSuite, isExcluded, isGracefulShutdown, isOffline, isPortFree, isStartContext, registerTestMethod, run, runBare, setDisposeManagerPerSuite, setFailOnTimeout, setName, setStartContext, setUp, suitePostTearDown, suitePreSetUp, tearDown
 
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, runTest, toString
 
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame, format
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

plugin

protected org.ibeans.spi.IBeansPlugin plugin
Constructor Detail

AbstractIBeansTestCase

protected AbstractIBeansTestCase()
Method Detail

createPlugin

protected org.ibeans.spi.IBeansPlugin createPlugin()

doSetUp

protected void doSetUp()
                throws java.lang.Exception
Description copied from class: AbstractMuleTestCase
Exactly the same a AbstractMuleTestCase.setUp() in normal JUnit test cases. this is called before a test method has been called.

Overrides:
doSetUp in class AbstractMuleTestCase
Throws:
java.lang.Exception - if something fails that should halt the testcase

withXmlData

protected org.mockito.stubbing.Answer withXmlData(java.lang.String resource,
                                                  java.lang.Object ibean)

withRssData

protected org.mockito.stubbing.Answer withRssData(java.lang.String resource,
                                                  java.lang.Object ibean)

withAtomData

protected org.mockito.stubbing.Answer withAtomData(java.lang.String resource,
                                                   java.lang.Object ibean)

withJsonData

protected org.mockito.stubbing.Answer withJsonData(java.lang.String resource,
                                                   java.lang.Object ibean)

withTextData

protected org.mockito.stubbing.Answer withTextData(java.lang.String resource,
                                                   java.lang.Object ibean)

withData

protected org.mockito.stubbing.Answer withData(java.lang.String resource,
                                               java.lang.Class returnType)
A mock return for a method call that will load data and transform it into the return type set on the iBean.

Parameters:
resource - the resource file name that contains the data you wish to load
returnType - the Java type that the data should be converted to
Returns:
a Mockito Answer implementation that will load the data when requested

withData

protected org.mockito.stubbing.Answer withData(java.lang.String resource,
                                               org.ibeans.api.channel.MimeType mimeType,
                                               org.ibeans.impl.test.MockMessageCallback callback,
                                               java.lang.Object ibean)
A mock return for a method call that will load data and transform it into the return type set on the iBean.

Parameters:
resource - the resource file name that contains the data you wish to load
ibean - the ibean that is being tested
mimeType - the mime type of the data
callback - a callback can be used to manipulate the MuleMessage before it it gets returned
Returns:
a Mockito Answer implementation that will load the data when requested

loadData

protected <T> T loadData(java.lang.String resource,
                         org.ibeans.api.DataType<T> type)
              throws java.io.IOException,
                     TransformerException
Throws:
java.io.IOException
TransformerException

getDataAs

protected <T> T getDataAs(java.io.InputStream data,
                          org.ibeans.api.DataType<T> as)
               throws TransformerException
Throws:
TransformerException


Copyright © 2003-2010 MuleSoft, Inc.. All Rights Reserved.