Class Extension_MatsEndpoint<R,I>
- java.lang.Object
-
- io.mats3.test.abstractunit.AbstractMatsTestEndpoint<R,I>
-
- io.mats3.test.jupiter.Extension_MatsEndpoint<R,I>
-
- Type Parameters:
R- The reply class of the message generated by this endpoint. (Reply Class)I- The incoming message class for this endpoint. (Request Class)
- All Implemented Interfaces:
org.junit.jupiter.api.extension.AfterEachCallback,org.junit.jupiter.api.extension.BeforeEachCallback,org.junit.jupiter.api.extension.Extension
public class Extension_MatsEndpoint<R,I> extends io.mats3.test.abstractunit.AbstractMatsTestEndpoint<R,I> implements org.junit.jupiter.api.extension.BeforeEachCallback, org.junit.jupiter.api.extension.AfterEachCallbackExtension to create a single staged endpoint whose reply/processor can be changed throughout its life, i.e. per test (e.g. answer "Sorry, no can do." for the first test, and then "Yes, we can!" for the next test). Useful for mocking endpoints in tests where you need predictable replies, and may also be used to verify that an endpoint was not invoked.The endpoint processor can be changed on demand using
setProcessLambda(ProcessSingleLambda)Must be annotated with
@RegisterExtension.Retrieve the endpoint's received(incoming) message/messages by calling on of the following methods:
AbstractMatsTestEndpoint.waitForRequest()- Wait for a message(singular) using the default timeoutAbstractMatsTestEndpoint.waitForRequest(long)- Wait for a message(singular) with user specified timeoutAbstractMatsTestEndpoint.waitForRequests(int)- Wait for X messages using the default timeoutAbstractMatsTestEndpoint.waitForRequests(int, long)- Wait for X messages with user specified timeout
AbstractMatsTestEndpoint.verifyNotInvoked()to ensure that the endpoint was not in fact invoked during the test.If no process lambda is specified for the endpoint it will act as a terminator, thus it does not generate a reply.
@RegisterExtension public Extension_MatsEndpoint<String, String> _world = Extension_MatsEndpoint.single(endpointFactory, "World", String.class, String.class, (context, in) -> in + "World");Should one want to utilize this test endpoint approach in a test which brings up a Spring context which contains aMatsFactoryone can utilize the@SpringInjectRulesAndExtensions(in 'mats-spring-test') which will inject/autowire this class automatically by providing theMatsFactorylocated in said Spring context.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterEach(org.junit.jupiter.api.extension.ExtensionContext context)voidbeforeEach(org.junit.jupiter.api.extension.ExtensionContext context)static <R,I>
Extension_MatsEndpoint<R,I>create(Extension_Mats matsRule, java.lang.String endpointId, java.lang.Class<R> replyMsgClass, java.lang.Class<I> incomingMsgClass)Convenience variant ofcreate(endpointId, replyClass, incomingClass)taking aExtension_Matsas first argument for fetching theMatsFactory, for use in "pure Java" environments (read as: non-Spring).static <R,I>
Extension_MatsEndpoint<R,I>create(java.lang.String endpointId, java.lang.Class<R> replyMsgClass, java.lang.Class<I> incomingMsgClass)Creates a Jupiter Extension for a single-staged endpoint whose processor is not defined at start.Extension_MatsEndpoint<R,I>setMatsFactory(io.mats3.MatsFactory matsFactory)Sets the internalMatsFactoryto be utilized for the creation of this endpoint.Extension_MatsEndpoint<R,I>setProcessLambda(io.mats3.MatsEndpoint.ProcessSingleLambda<R,I> processLambda)
-
-
-
Method Detail
-
setMatsFactory
@Inject public Extension_MatsEndpoint<R,I> setMatsFactory(io.mats3.MatsFactory matsFactory)
Sets the internalMatsFactoryto be utilized for the creation of this endpoint.If not utilized explicitly can also be injected/autowired through the use of the test execution listener
SpringInjectRulesAndExtensionsshould this Extension be utilized in a test where a Spring context is in play.
-
setProcessLambda
public Extension_MatsEndpoint<R,I> setProcessLambda(io.mats3.MatsEndpoint.ProcessSingleLambda<R,I> processLambda)
-
create
public static <R,I> Extension_MatsEndpoint<R,I> create(java.lang.String endpointId, java.lang.Class<R> replyMsgClass, java.lang.Class<I> incomingMsgClass)
Creates a Jupiter Extension for a single-staged endpoint whose processor is not defined at start. Sets it up on JUnit lifecycle 'before' and tears it down on 'after'. Notice that aMatsFactorymust be set before it is usable! In a Spring environment, you should probably employ the@SpringInjectRulesAndExtensionsto make this happen automagically. In a "pure Java" environment, consider the convenience overloadcreate(Mats_Rule, endpointId, replyClass, incomingClass)to easily supply the corresponding@RegisterExtensionExtension_Matsfor fetching theMatsFactory.Do notice that you need to invoke
setProcessLambda(ProcessSingleLambda)- typically inside the @Test method - before sending messages to it, as there is no default.- Parameters:
endpointId- of the endpoint.replyMsgClass- the class of the reply message generated by this endpoint.incomingMsgClass- the incoming message class for this endpoint.- Returns:
Extension_Matswithout a predefined processLambda.
-
create
public static <R,I> Extension_MatsEndpoint<R,I> create(Extension_Mats matsRule, java.lang.String endpointId, java.lang.Class<R> replyMsgClass, java.lang.Class<I> incomingMsgClass)
Convenience variant ofcreate(endpointId, replyClass, incomingClass)taking aExtension_Matsas first argument for fetching theMatsFactory, for use in "pure Java" environments (read as: non-Spring).
-
beforeEach
public void beforeEach(org.junit.jupiter.api.extension.ExtensionContext context)
- Specified by:
beforeEachin interfaceorg.junit.jupiter.api.extension.BeforeEachCallback
-
afterEach
public void afterEach(org.junit.jupiter.api.extension.ExtensionContext context)
- Specified by:
afterEachin interfaceorg.junit.jupiter.api.extension.AfterEachCallback
-
-