Search in sources :

Example 1 with Resource

use of io.crnk.core.engine.document.Resource in project crnk-framework by crnk-project.

the class ClientDocumentMapper method fromDocument.

public Object fromDocument(Document document, boolean getList) {
    ClientResourceUpsert upsert = new ClientResourceUpsert(resourceRegistry, propertiesProvider, typeParser, objectMapper, null, proxyFactory);
    PreconditionUtil.assertFalse("document contains json api errors and cannot be processed", document.getErrors() != null && !document.getErrors().isEmpty());
    if (!document.getData().isPresent()) {
        return null;
    }
    List<Resource> included = document.getIncluded();
    List<Resource> data = document.getCollectionData().get();
    List<Object> dataObjects = upsert.allocateResources(data);
    if (included != null) {
        upsert.allocateResources(included);
    }
    upsert.setRelations(data);
    if (included != null) {
        upsert.setRelations(included);
    }
    if (getList) {
        DefaultResourceList<Object> resourceList = new DefaultResourceList();
        resourceList.addAll(dataObjects);
        if (document.getLinks() != null) {
            resourceList.setLinks(new JsonLinksInformation(document.getLinks(), objectMapper));
        }
        if (document.getMeta() != null) {
            resourceList.setMeta(new JsonMetaInformation(document.getMeta(), objectMapper));
        }
        return resourceList;
    } else {
        if (dataObjects.isEmpty()) {
            return null;
        }
        PreconditionUtil.assertFalse("expected unique result", dataObjects.size() > 1);
        return dataObjects.get(0);
    }
}
Also used : JsonLinksInformation(io.crnk.client.response.JsonLinksInformation) DefaultResourceList(io.crnk.core.resource.list.DefaultResourceList) JsonMetaInformation(io.crnk.client.response.JsonMetaInformation) Resource(io.crnk.core.engine.document.Resource)

Example 2 with Resource

use of io.crnk.core.engine.document.Resource in project crnk-framework by crnk-project.

the class OperationTest method testHashCode.

@Test
public void testHashCode() throws NoSuchFieldException {
    Operation op1 = new Operation("a", "b", new Resource());
    Operation op2 = new Operation("a", "b", new Resource());
    Operation op3 = new Operation("x", "b", new Resource());
    Assert.assertEquals(op1, op2);
    Assert.assertNotEquals(op3.hashCode(), op2.hashCode());
}
Also used : Resource(io.crnk.core.engine.document.Resource) Test(org.junit.Test)

Example 3 with Resource

use of io.crnk.core.engine.document.Resource in project crnk-framework by crnk-project.

the class JsonApiRequestProcessorTest method getTasks.

@Test
public void getTasks() throws IOException {
    Mockito.when(requestContextBase.getMethod()).thenReturn("GET");
    Mockito.when(requestContextBase.getPath()).thenReturn("/tasks/");
    Mockito.when(requestContextBase.getRequestHeader("Accept")).thenReturn("*");
    processor.process(requestContext);
    ArgumentCaptor<byte[]> contentCaptor = ArgumentCaptor.forClass(byte[].class);
    Mockito.verify(requestContextBase, Mockito.times(1)).setResponse(Mockito.eq(200), contentCaptor.capture());
    String json = new String(contentCaptor.getValue());
    Document document = boot.getObjectMapper().readerFor(Document.class).readValue(json);
    Assert.assertTrue(document.getData().isPresent());
    List<Resource> resources = document.getCollectionData().get();
    Assert.assertEquals(1, resources.size());
    Resource resource = resources.get(0);
    Assert.assertEquals("http://localhost:8080/tasks/1", resource.getLinks().get("self").asText());
    Assert.assertNotNull(resource.getLinks().get("value"));
}
Also used : Resource(io.crnk.core.engine.document.Resource) Document(io.crnk.core.engine.document.Document) Test(org.junit.Test)

Example 4 with Resource

use of io.crnk.core.engine.document.Resource in project crnk-framework by crnk-project.

the class ResponseTest method testHashCodeEquals.

@Test
public void testHashCodeEquals() {
    Document r1 = new Document();
    Document r2 = new Document();
    r2.setData(Nullable.of((Object) new Resource()));
    Response c1 = new Response(r1, 201);
    Response c1copy = new Response(r1, 201);
    Response c2 = new Response(r2, 202);
    Response c3 = new Response(r1, 202);
    Assert.assertEquals(c1.hashCode(), c1copy.hashCode());
    Assert.assertTrue(c1.equals(c1));
    Assert.assertTrue(c1.equals(c1copy));
    Assert.assertFalse(c1.equals(c2));
    Assert.assertFalse(c1.equals(c3));
    Assert.assertFalse(c2.equals(c3));
    Assert.assertFalse(c2.equals("otherType"));
}
Also used : Response(io.crnk.core.engine.dispatcher.Response) Resource(io.crnk.core.engine.document.Resource) Document(io.crnk.core.engine.document.Document) Test(org.junit.Test)

Example 5 with Resource

use of io.crnk.core.engine.document.Resource in project crnk-framework by crnk-project.

the class CollectionGetTest method onGivenRequestResourceShouldNotLoadAutoIncludeFields.

@Test
public void onGivenRequestResourceShouldNotLoadAutoIncludeFields() throws Exception {
    // GIVEN
    Document newTaskBody = new Document();
    Resource data = createTask();
    newTaskBody.setData(Nullable.of((Object) data));
    data.setType("tasks");
    JsonPath taskPath = pathBuilder.build("/tasks");
    ResourcePost resourcePost = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, new ArrayList<ResourceModificationFilter>());
    // WHEN -- adding a task
    Response taskResponse = resourcePost.handle(taskPath, emptyTaskQuery, null, newTaskBody);
    // THEN
    assertThat(taskResponse.getDocument().getSingleData().get().getType()).isEqualTo("tasks");
    Long taskId = Long.parseLong(taskResponse.getDocument().getSingleData().get().getId());
    assertThat(taskId).isNotNull();
    /* ------- */
    // GIVEN
    Document newProjectBody = new Document();
    data = createProject();
    newProjectBody.setData(Nullable.of((Object) data));
    JsonPath projectPath = pathBuilder.build("/projects");
    // WHEN -- adding a project
    Response projectResponse = resourcePost.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());
    assertThat(projectId).isNotNull();
    /* ------- */
    // GIVEN
    Document newTaskToProjectBody = new Document();
    data = new Resource();
    newTaskToProjectBody.setData(Nullable.of((Object) Collections.singletonList(data)));
    data.setType("projects");
    data.setId(projectId.toString());
    JsonPath savedTaskPath = pathBuilder.build("/tasks/" + taskId + "/relationships/projects");
    RelationshipsResourcePost sut = new RelationshipsResourcePost(resourceRegistry, typeParser, new ArrayList<ResourceModificationFilter>());
    // WHEN -- adding a relation between task and project
    Response projectRelationshipResponse = sut.handle(savedTaskPath, emptyProjectQuery, null, newTaskToProjectBody);
    assertThat(projectRelationshipResponse).isNotNull();
    // THEN
    TaskToProjectRepository taskToProjectRepository = new TaskToProjectRepository();
    Project project = taskToProjectRepository.findOneTarget(taskId, "projects", new QueryParams());
    assertThat(project.getId()).isNotNull();
    // Given
    JsonPath jsonPath = pathBuilder.build("/tasks/" + taskId);
    ResourceGet responseGetResp = new ResourceGet(resourceRegistry, typeParser, documentMapper);
    Map<String, Set<String>> queryParams = new HashMap<>();
    queryParams.put(RestrictedQueryParamsMembers.include.name() + "[tasks]", Collections.singleton("[\"projects\"]"));
    QueryParams requestParams = new QueryParamsBuilder(new DefaultQueryParamsParser()).buildQueryParams(queryParams);
    // WHEN
    Response response = responseGetResp.handle(jsonPath, new QueryParamsAdapter(resourceRegistry.getEntry(Task.class).getResourceInformation(), requestParams, moduleRegistry), null, null);
    // THEN
    Assert.assertNotNull(response);
    assertThat(response.getDocument().getSingleData().get().getType()).isEqualTo("tasks");
    // eager loading but no inclusion
    RegistryEntry entry = resourceRegistry.getEntry(Task.class);
    ResourceField projectsField = entry.getResourceInformation().findFieldByUnderlyingName("projects");
    Assert.assertEquals(SerializeType.ONLY_ID, projectsField.getSerializeType());
    assertThat(response.getDocument().getSingleData().get().getRelationships().get("projects").getData().isPresent()).isTrue();
}
Also used : Task(io.crnk.core.mock.models.Task) Resource(io.crnk.core.engine.document.Resource) Document(io.crnk.core.engine.document.Document) JsonPath(io.crnk.core.engine.internal.dispatcher.path.JsonPath) RegistryEntry(io.crnk.core.engine.registry.RegistryEntry) DefaultQueryParamsParser(io.crnk.legacy.queryParams.DefaultQueryParamsParser) Response(io.crnk.core.engine.dispatcher.Response) Project(io.crnk.core.mock.models.Project) ResourceField(io.crnk.core.engine.information.resource.ResourceField) TaskToProjectRepository(io.crnk.core.mock.repository.TaskToProjectRepository) QueryParamsBuilder(io.crnk.legacy.queryParams.QueryParamsBuilder) ResourceModificationFilter(io.crnk.core.engine.filter.ResourceModificationFilter) QueryParams(io.crnk.legacy.queryParams.QueryParams) QueryParamsAdapter(io.crnk.legacy.internal.QueryParamsAdapter) Test(org.junit.Test)

Aggregations

Resource (io.crnk.core.engine.document.Resource)130 Document (io.crnk.core.engine.document.Document)86 Test (org.junit.Test)85 Relationship (io.crnk.core.engine.document.Relationship)48 Response (io.crnk.core.engine.dispatcher.Response)43 QuerySpec (io.crnk.core.queryspec.QuerySpec)43 ResourceIdentifier (io.crnk.core.engine.document.ResourceIdentifier)42 JsonPath (io.crnk.core.engine.internal.dispatcher.path.JsonPath)41 BaseControllerTest (io.crnk.core.engine.internal.dispatcher.controller.BaseControllerTest)37 Task (io.crnk.core.mock.models.Task)32 ResourcePost (io.crnk.core.engine.internal.dispatcher.controller.ResourcePost)31 Project (io.crnk.core.mock.models.Project)24 JsonApiResponse (io.crnk.core.repository.response.JsonApiResponse)17 LazyTask (io.crnk.core.mock.models.LazyTask)15 ResourceInformation (io.crnk.core.engine.information.resource.ResourceInformation)14 ResourcePatch (io.crnk.core.engine.internal.dispatcher.controller.ResourcePatch)14 RelationIdTestResource (io.crnk.core.mock.models.RelationIdTestResource)13 ResourceField (io.crnk.core.engine.information.resource.ResourceField)12 RegistryEntry (io.crnk.core.engine.registry.RegistryEntry)11 ResourceRepositoryAdapter (io.crnk.core.engine.internal.repository.ResourceRepositoryAdapter)10