Search in sources :

Example 1 with JsonMarshaller

use of com.unboundid.scim.marshal.json.JsonMarshaller 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);
    }
}
Also used : lombok.val(lombok.val) MockWebServer(org.apereo.cas.util.MockWebServer) Resources(com.unboundid.scim.sdk.Resources) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ByteArrayResource(org.springframework.core.io.ByteArrayResource) JsonMarshaller(com.unboundid.scim.marshal.json.JsonMarshaller) Test(org.junit.jupiter.api.Test)

Example 2 with JsonMarshaller

use of com.unboundid.scim.marshal.json.JsonMarshaller 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());
    }
}
Also used : lombok.val(lombok.val) MockHttpServletRequest(org.springframework.mock.web.MockHttpServletRequest) ServletExternalContext(org.springframework.webflow.context.servlet.ServletExternalContext) MockWebServer(org.apereo.cas.util.MockWebServer) MockRequestContext(org.springframework.webflow.test.MockRequestContext) Resources(com.unboundid.scim.sdk.Resources) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ByteArrayResource(org.springframework.core.io.ByteArrayResource) MockServletContext(org.springframework.mock.web.MockServletContext) MockHttpServletResponse(org.springframework.mock.web.MockHttpServletResponse) JsonMarshaller(com.unboundid.scim.marshal.json.JsonMarshaller) Test(org.junit.jupiter.api.Test)

Example 3 with JsonMarshaller

use of com.unboundid.scim.marshal.json.JsonMarshaller 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());
    }
}
Also used : lombok.val(lombok.val) Meta(com.unboundid.scim.data.Meta) MockHttpServletRequest(org.springframework.mock.web.MockHttpServletRequest) UserResource(com.unboundid.scim.data.UserResource) MockRequestContext(org.springframework.webflow.test.MockRequestContext) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ByteArrayResource(org.springframework.core.io.ByteArrayResource) URI(java.net.URI) MockServletContext(org.springframework.mock.web.MockServletContext) Date(java.util.Date) Name(com.unboundid.scim.data.Name) ServletExternalContext(org.springframework.webflow.context.servlet.ServletExternalContext) MockWebServer(org.apereo.cas.util.MockWebServer) Resources(com.unboundid.scim.sdk.Resources) MockHttpServletResponse(org.springframework.mock.web.MockHttpServletResponse) JsonMarshaller(com.unboundid.scim.marshal.json.JsonMarshaller) Test(org.junit.jupiter.api.Test)

Aggregations

JsonMarshaller (com.unboundid.scim.marshal.json.JsonMarshaller)3 Resources (com.unboundid.scim.sdk.Resources)3 ByteArrayOutputStream (java.io.ByteArrayOutputStream)3 lombok.val (lombok.val)3 MockWebServer (org.apereo.cas.util.MockWebServer)3 Test (org.junit.jupiter.api.Test)3 ByteArrayResource (org.springframework.core.io.ByteArrayResource)3 MockHttpServletRequest (org.springframework.mock.web.MockHttpServletRequest)2 MockHttpServletResponse (org.springframework.mock.web.MockHttpServletResponse)2 MockServletContext (org.springframework.mock.web.MockServletContext)2 ServletExternalContext (org.springframework.webflow.context.servlet.ServletExternalContext)2 MockRequestContext (org.springframework.webflow.test.MockRequestContext)2 Meta (com.unboundid.scim.data.Meta)1 Name (com.unboundid.scim.data.Name)1 UserResource (com.unboundid.scim.data.UserResource)1 URI (java.net.URI)1 Date (java.util.Date)1