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(org.opensaml.profile.context.ProfileRequestContext profileRequestContext, Object event)Checks that the request context contains an EventContext, and that the event content is as given.static voidassertProceedEvent(org.opensaml.profile.context.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 org.opensaml.profile.context.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 org.opensaml.profile.context.ProfileRequestContext profileRequestContext)Checks that the given request context does not contain an EventContext (thus signaling a "proceed" event).- Parameters:
profileRequestContext- the context to check
-
-