use of org.springframework.webflow.engine.support.DefaultTransitionCriteria in project cas by apereo.
the class AbstractCasWebflowConfigurer method createTransition.
@Override
public Transition createTransition(final Expression criteriaOutcomeExpression, final String targetState) {
final TransitionCriteria criteria;
if (criteriaOutcomeExpression.toString().equals(WildcardTransitionCriteria.WILDCARD_EVENT_ID)) {
criteria = WildcardTransitionCriteria.INSTANCE;
} else {
criteria = new DefaultTransitionCriteria(criteriaOutcomeExpression);
}
final DefaultTargetStateResolver resolver = new DefaultTargetStateResolver(targetState);
final Transition t = new Transition(criteria, resolver);
return t;
}
use of org.springframework.webflow.engine.support.DefaultTransitionCriteria in project cas by apereo.
the class TimedMultifactorAuthenticationPolicyEventResolverTests method initialize.
@BeforeEach
public void initialize() {
this.context = new MockRequestContext();
val request = new MockHttpServletRequest();
request.setRemoteAddr("185.86.151.11");
request.setLocalAddr("195.88.151.11");
request.addHeader(HttpRequestUtils.USER_AGENT_HEADER, "MSIE");
ClientInfoHolder.setClientInfo(new ClientInfo(request));
val response = new MockHttpServletResponse();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, response));
val targetResolver = new DefaultTargetStateResolver(TestMultifactorAuthenticationProvider.ID);
val transition = new Transition(new DefaultTransitionCriteria(new LiteralExpression(TestMultifactorAuthenticationProvider.ID)), targetResolver);
context.getRootFlow().getGlobalTransitionSet().add(transition);
WebUtils.putServiceIntoFlowScope(context, CoreAuthenticationTestUtils.getWebApplicationService());
TestMultifactorAuthenticationProvider.registerProviderIntoApplicationContext(applicationContext);
WebUtils.putAuthentication(CoreAuthenticationTestUtils.getAuthentication(), context);
}
use of org.springframework.webflow.engine.support.DefaultTransitionCriteria in project cas by apereo.
the class DefaultMultifactorAuthenticationProviderWebflowEventResolverTests method verifyEventResolverWithMfa.
@Test
public void verifyEventResolverWithMfa() {
val context = new MockRequestContext();
val request = new MockHttpServletRequest();
val response = new MockHttpServletResponse();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, response));
val targetResolver = new DefaultTargetStateResolver(TestMultifactorAuthenticationProvider.ID);
val transition = new Transition(new DefaultTransitionCriteria(new LiteralExpression(TestMultifactorAuthenticationProvider.ID)), targetResolver);
context.getRootFlow().getGlobalTransitionSet().add(transition);
val tgt = new MockTicketGrantingTicket("casuser");
WebUtils.putTicketGrantingTicketInScopes(context, tgt);
WebUtils.putAuthentication(tgt.getAuthentication(), context);
val service = RegisteredServiceTestUtils.getService(UUID.randomUUID().toString());
WebUtils.putServiceIntoFlowScope(context, service);
val registeredService = RegisteredServiceTestUtils.getRegisteredService(Map.of());
registeredService.setServiceId(service.getId());
servicesManager.save(registeredService);
WebUtils.putRegisteredService(context, registeredService);
val builder = mock(AuthenticationResultBuilder.class);
when(builder.getInitialAuthentication()).thenReturn(Optional.of(tgt.getAuthentication()));
when(builder.collect(any(Authentication.class))).thenReturn(builder);
WebUtils.putAuthenticationResultBuilder(builder, context);
assertEquals(TestMultifactorAuthenticationProvider.ID, globalAuthenticationPolicyWebflowEventResolver.resolve(context).iterator().next().getId());
}
use of org.springframework.webflow.engine.support.DefaultTransitionCriteria in project cas by apereo.
the class RankedMultifactorAuthenticationProviderWebflowEventResolverWithCompositeTests method verifyOperation.
@Test
public void verifyOperation() throws Exception {
val context = new MockRequestContext();
val request = new MockHttpServletRequest();
val response = new MockHttpServletResponse();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, response));
val tgt = new MockTicketGrantingTicket("casuser");
WebUtils.putTicketGrantingTicketInScopes(context, tgt);
cas.addTicket(tgt);
val registeredService = RegisteredServiceTestUtils.getRegisteredService(Map.of());
val multifactorPolicy = new DefaultRegisteredServiceMultifactorPolicy();
registeredService.setMultifactorPolicy(multifactorPolicy);
servicesManager.save(registeredService);
WebUtils.putRegisteredService(context, registeredService);
val targetResolver = new DefaultTargetStateResolver(CasWebflowConstants.STATE_ID_MFA_COMPOSITE);
val transition = new Transition(new DefaultTransitionCriteria(new LiteralExpression(CasWebflowConstants.STATE_ID_MFA_COMPOSITE)), targetResolver);
context.getRootFlow().getGlobalTransitionSet().add(transition);
assertEquals(CasWebflowConstants.STATE_ID_MFA_COMPOSITE, resolver.resolveSingle(context).getId());
}
use of org.springframework.webflow.engine.support.DefaultTransitionCriteria in project cas by apereo.
the class BaseDuoSecurityTests method getMockRequestContext.
public static RequestContext getMockRequestContext(final ConfigurableApplicationContext applicationContext) {
val context = new MockRequestContext();
val request = new MockHttpServletRequest();
request.setRemoteAddr("185.86.151.11");
request.setLocalAddr("195.88.151.11");
request.addHeader(HttpRequestUtils.USER_AGENT_HEADER, "MSIE");
ClientInfoHolder.setClientInfo(new ClientInfo(request));
val response = new MockHttpServletResponse();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, response));
val provider = getDuoSecurityMultifactorAuthenticationProvider();
TestMultifactorAuthenticationProvider.registerProviderIntoApplicationContext(applicationContext, provider);
val targetResolver = new DefaultTargetStateResolver(provider.getId());
val transition = new Transition(new DefaultTransitionCriteria(new LiteralExpression(provider.getId())), targetResolver);
context.getRootFlow().getGlobalTransitionSet().add(transition);
WebUtils.putServiceIntoFlowScope(context, CoreAuthenticationTestUtils.getWebApplicationService());
val authentication = CoreAuthenticationTestUtils.getAuthentication();
WebUtils.putAuthentication(authentication, context);
val builder = mock(AuthenticationResultBuilder.class);
when(builder.getInitialAuthentication()).thenReturn(Optional.of(authentication));
when(builder.collect(any(Authentication.class))).thenReturn(builder);
WebUtils.putAuthenticationResultBuilder(builder, context);
return context;
}
Aggregations