Search in sources :

Example 1 with Pojo

use of io.crnk.core.mock.models.Pojo in project crnk-framework by crnk-project.

the class ResourcePostTest method onResourceWithCustomNamesShouldSaveParametersCorrectly.

@Test
// TODO support inhertiance
@Ignore
public void onResourceWithCustomNamesShouldSaveParametersCorrectly() throws Exception {
    // GIVEN - creating sample project id
    Document newProjectBody = new Document();
    Resource data = createProject();
    newProjectBody.setData(Nullable.of((Object) data));
    JsonPath projectPath = pathBuilder.build("/projects");
    ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
    // WHEN
    Response projectResponse = sut.handle(projectPath, emptyProjectQuery, null, newProjectBody);
    // THEN
    assertThat(projectResponse.getDocument().getSingleData().get().getType()).isEqualTo("projects");
    assertThat(projectResponse.getDocument().getSingleData().get().getId()).isNotNull();
    assertThat(projectResponse.getDocument().getSingleData().get().getAttributes().get("name").asText()).isEqualTo("sample project");
    Long projectId = Long.parseLong(projectResponse.getDocument().getSingleData().get().getId());
    /* ------- */
    // GIVEN
    Document pojoBody = new Document();
    Resource pojoData = new Resource();
    pojoBody.setData(Nullable.of((Object) pojoData));
    pojoData.setType("pojo");
    JsonNode put = objectMapper.createObjectNode().put("value", "hello");
    pojoData.setAttribute("other-pojo", put);
    pojoData.getRelationships().put("some-project", new Relationship(new ResourceIdentifier(Long.toString(projectId), "projects")));
    pojoData.getRelationships().put("some-projects", new Relationship(Arrays.asList(new ResourceIdentifier(Long.toString(projectId), "projects"))));
    JsonPath pojoPath = pathBuilder.build("/pojo");
    // WHEN
    QueryParamsBuilder queryParamsBuilder = new QueryParamsBuilder(new DefaultQueryParamsParser());
    QueryParams queryParams = queryParamsBuilder.buildQueryParams(Collections.singletonMap("include[pojo]", Collections.singleton("projects")));
    Response pojoResponse = sut.handle(pojoPath, toQueryAdapter(queryParams, Pojo.class), null, pojoBody);
    // THEN
    assertThat(pojoResponse.getDocument().getSingleData().get().getType()).isEqualTo("pojo");
    Resource persistedPojo = pojoResponse.getDocument().getSingleData().get();
    assertThat(persistedPojo.getId()).isNotNull();
    assertThat(persistedPojo.getAttributes().get("other-pojo").get("value").asText()).isEqualTo("hello");
    assertThat(persistedPojo.getRelationships().get("some-project").getSingleData().get()).isNotNull();
    assertThat(persistedPojo.getRelationships().get("some-project").getSingleData().get().getId()).isEqualTo(projectId.toString());
    Relationship persistedProjectsRelationship = persistedPojo.getRelationships().get("some-projects");
    assertThat(persistedProjectsRelationship).isNotNull();
    // check lazy loaded relation
    PojoRepository repo = (PojoRepository) resourceRegistry.getEntry(Pojo.class).getResourceRepository(null).getResourceRepository();
    Pojo pojo = repo.findOne(null, null);
    assertThat(pojo.getProjects()).hasSize(1);
    assertThat(pojo.getProjects().get(0).getId()).isEqualTo(projectId);
}
Also used : PojoRepository(io.crnk.core.mock.repository.PojoRepository) Pojo(io.crnk.core.mock.models.Pojo) Resource(io.crnk.core.engine.document.Resource) JsonNode(com.fasterxml.jackson.databind.JsonNode) Document(io.crnk.core.engine.document.Document) JsonPath(io.crnk.core.engine.internal.dispatcher.path.JsonPath) ResourcePost(io.crnk.core.engine.internal.dispatcher.controller.ResourcePost) DefaultQueryParamsParser(io.crnk.legacy.queryParams.DefaultQueryParamsParser) Response(io.crnk.core.engine.dispatcher.Response) ResourceIdentifier(io.crnk.core.engine.document.ResourceIdentifier) Relationship(io.crnk.core.engine.document.Relationship) QueryParamsBuilder(io.crnk.legacy.queryParams.QueryParamsBuilder) QueryParams(io.crnk.legacy.queryParams.QueryParams) Ignore(org.junit.Ignore) BaseControllerTest(io.crnk.core.engine.internal.dispatcher.controller.BaseControllerTest) Test(org.junit.Test)

Aggregations

JsonNode (com.fasterxml.jackson.databind.JsonNode)1 Response (io.crnk.core.engine.dispatcher.Response)1 Document (io.crnk.core.engine.document.Document)1 Relationship (io.crnk.core.engine.document.Relationship)1 Resource (io.crnk.core.engine.document.Resource)1 ResourceIdentifier (io.crnk.core.engine.document.ResourceIdentifier)1 BaseControllerTest (io.crnk.core.engine.internal.dispatcher.controller.BaseControllerTest)1 ResourcePost (io.crnk.core.engine.internal.dispatcher.controller.ResourcePost)1 JsonPath (io.crnk.core.engine.internal.dispatcher.path.JsonPath)1 Pojo (io.crnk.core.mock.models.Pojo)1 PojoRepository (io.crnk.core.mock.repository.PojoRepository)1 DefaultQueryParamsParser (io.crnk.legacy.queryParams.DefaultQueryParamsParser)1 QueryParams (io.crnk.legacy.queryParams.QueryParams)1 QueryParamsBuilder (io.crnk.legacy.queryParams.QueryParamsBuilder)1 Ignore (org.junit.Ignore)1 Test (org.junit.Test)1