use of org.apereo.cas.util.MockWebServer in project cas by apereo.
the class PrincipalScimV1ProvisionerActionTests method verifyOperation.
@Test
public void verifyOperation() throws Exception {
val resources = new Resources(CollectionUtils.wrapList());
val stream = new ByteArrayOutputStream();
resources.marshal(new JsonMarshaller(), stream);
val data = stream.toString(StandardCharsets.UTF_8);
try (val webServer = new MockWebServer(8215, new ByteArrayResource(data.getBytes(StandardCharsets.UTF_8), "REST Output"), MediaType.APPLICATION_JSON_VALUE)) {
webServer.start();
val results = scimProvisioner.provision(RegisteredServiceTestUtils.getPrincipal(), RegisteredServiceTestUtils.getCredentialsWithSameUsernameAndPassword("casuser"));
assertFalse(results);
}
}
use of org.apereo.cas.util.MockWebServer in project cas by apereo.
the class PrincipalScimV1ProvisionerActionTests method verifyActionUserNotFound.
@Test
public void verifyActionUserNotFound() throws Exception {
val context = new MockRequestContext();
val request = new MockHttpServletRequest();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, new MockHttpServletResponse()));
WebUtils.putAuthentication(CoreAuthenticationTestUtils.getAuthentication(), context);
WebUtils.putCredential(context, CoreAuthenticationTestUtils.getCredentialsWithSameUsernameAndPassword());
val resources = new Resources(CollectionUtils.wrapList());
val stream = new ByteArrayOutputStream();
resources.marshal(new JsonMarshaller(), stream);
val data = stream.toString(StandardCharsets.UTF_8);
try (val webServer = new MockWebServer(8215, new ByteArrayResource(data.getBytes(StandardCharsets.UTF_8), "REST Output"), MediaType.APPLICATION_JSON_VALUE)) {
webServer.start();
assertEquals(CasWebflowConstants.TRANSITION_ID_SUCCESS, principalScimProvisionerAction.execute(context).getId());
}
}
use of org.apereo.cas.util.MockWebServer in project cas by apereo.
the class PrincipalScimV1ProvisionerActionTests method verifyAction.
@Test
public void verifyAction() throws Exception {
val context = new MockRequestContext();
val request = new MockHttpServletRequest();
context.setExternalContext(new ServletExternalContext(new MockServletContext(), request, new MockHttpServletResponse()));
WebUtils.putAuthentication(CoreAuthenticationTestUtils.getAuthentication(), context);
WebUtils.putCredential(context, CoreAuthenticationTestUtils.getCredentialsWithSameUsernameAndPassword());
val user = new UserResource(CoreSchema.USER_DESCRIPTOR);
user.setActive(true);
user.setDisplayName("CASUser");
user.setId("casuser");
val name = new Name("formatted", "family", "middle", "givenMame", "prefix", "prefix2");
name.setGivenName("casuser");
user.setName(name);
val meta = new Meta(new Date(), new Date(), new URI("http://localhost:8215"), "1");
meta.setCreated(new Date());
user.setMeta(meta);
val resources = new Resources(CollectionUtils.wrapList(user));
val stream = new ByteArrayOutputStream();
resources.marshal(new JsonMarshaller(), stream);
val data = stream.toString(StandardCharsets.UTF_8);
try (val webServer = new MockWebServer(8215, new ByteArrayResource(data.getBytes(StandardCharsets.UTF_8), "REST Output"), MediaType.APPLICATION_JSON_VALUE)) {
webServer.start();
assertEquals(CasWebflowConstants.TRANSITION_ID_SUCCESS, principalScimProvisionerAction.execute(context).getId());
}
}
use of org.apereo.cas.util.MockWebServer in project cas by apereo.
the class SurrogateRestAuthenticationServiceTests method verifyUserAllowedToProxy.
@Override
@Test
public void verifyUserAllowedToProxy() throws Exception {
var data = MAPPER.writeValueAsString(CollectionUtils.wrapList("casuser", "otheruser"));
try (val webServer = new MockWebServer(9301, new ByteArrayResource(data.getBytes(StandardCharsets.UTF_8), "REST Output"), MediaType.APPLICATION_JSON_VALUE)) {
this.webServer = webServer;
this.webServer.start();
assertTrue(this.webServer.isRunning());
super.verifyUserAllowedToProxy();
}
}
use of org.apereo.cas.util.MockWebServer in project cas by apereo.
the class SurrogateRestAuthenticationServiceTests method verifyProxying.
@Override
@Test
public void verifyProxying() throws Exception {
var data = MAPPER.writeValueAsString(CollectionUtils.wrapList("casuser", "otheruser"));
try (val webServer = new MockWebServer(9310, new ByteArrayResource(data.getBytes(StandardCharsets.UTF_8), "REST Output"), MediaType.APPLICATION_JSON_VALUE)) {
webServer.start();
val props = new CasConfigurationProperties();
props.getAuthn().getSurrogate().getRest().setUrl("http://localhost:9310");
val surrogateService = new SurrogateRestAuthenticationService(props.getAuthn().getSurrogate().getRest(), servicesManager);
val result = surrogateService.canAuthenticateAs("cassurrogate", CoreAuthenticationTestUtils.getPrincipal("casuser"), Optional.of(CoreAuthenticationTestUtils.getService()));
/*
* Can't use super() until the REST classes are
* completely refactored and don't need an actual server to connect to.
*/
assertTrue(result);
}
}
Aggregations