Package org.opensaml.profile.action
Class ActionTestingSupport
- java.lang.Object
-
- org.opensaml.profile.action.ActionTestingSupport
-
public class ActionTestingSupport extends Object
Helper methods for creating/testing objects within profile action tests.
-
-
Field Summary
Fields Modifier and Type Field Description static StringINBOUND_MSG_IDID of the inbound message.static StringINBOUND_MSG_ISSUERIssuer of the inbound message.static StringOUTBOUND_MSG_IDID of the outbound message.static StringOUTBOUND_MSG_ISSUERIssuer of the outbound message.
-
Constructor Summary
Constructors Constructor Description ActionTestingSupport()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidassertEvent(ProfileRequestContext profileRequestContext, Object event)Checks that the request context contains an EventContext, and that the event content is as given.static voidassertProceedEvent(ProfileRequestContext profileRequestContext)Checks that the given request context does not contain an EventContext (thus signaling a "proceed" event).
-
-
-
Field Detail
-
INBOUND_MSG_ID
public static final String INBOUND_MSG_ID
ID of the inbound message.- See Also:
- Constant Field Values
-
INBOUND_MSG_ISSUER
public static final String INBOUND_MSG_ISSUER
Issuer of the inbound message.- See Also:
- Constant Field Values
-
OUTBOUND_MSG_ID
public static final String OUTBOUND_MSG_ID
ID of the outbound message.- See Also:
- Constant Field Values
-
OUTBOUND_MSG_ISSUER
public static final String OUTBOUND_MSG_ISSUER
Issuer of the outbound message.- See Also:
- Constant Field Values
-
-
Method Detail
-
assertEvent
public static void assertEvent(@Nonnull ProfileRequestContext profileRequestContext, @Nonnull Object event)Checks that the request context contains an EventContext, and that the event content is as given.- Parameters:
profileRequestContext- the context to checkevent- event to check
-
assertProceedEvent
public static void assertProceedEvent(@Nonnull ProfileRequestContext profileRequestContext)Checks that the given request context does not contain an EventContext (thus signaling a "proceed" event).- Parameters:
profileRequestContext- the context to check
-
-