Search in sources :

Example 21 with Project

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

the class DocumentMapperTest method testRelationshipSingleValuedLazy.

@Test
public void testRelationshipSingleValuedLazy() {
    LazyTask task = createLazyTask(2);
    Project project = createProject(3, "sample project");
    task.setLazyProject(project);
    Document document = mapper.toDocument(toResponse(task), createAdapter(Task.class));
    Resource resource = document.getSingleData().get();
    Assert.assertEquals("2", resource.getId());
    Assert.assertEquals("lazy_tasks", resource.getType());
    Relationship relationship = resource.getRelationships().get("lazyProject");
    Assert.assertNotNull(relationship);
    Assert.assertEquals("https://service.local/lazy_tasks/2/relationships/lazyProject", getLinkText(relationship.getLinks().get("self")));
    Assert.assertEquals("https://service.local/lazy_tasks/2/lazyProject", getLinkText(relationship.getLinks().get("related")));
    Nullable<ResourceIdentifier> relationshipData = relationship.getSingleData();
    Assert.assertFalse(relationshipData.isPresent());
    Assert.assertTrue(document.getIncluded().isEmpty());
}
Also used : Project(io.crnk.core.mock.models.Project) ResourceIdentifier(io.crnk.core.engine.document.ResourceIdentifier) LazyTask(io.crnk.core.mock.models.LazyTask) Task(io.crnk.core.mock.models.Task) Relationship(io.crnk.core.engine.document.Relationship) Resource(io.crnk.core.engine.document.Resource) LazyTask(io.crnk.core.mock.models.LazyTask) Document(io.crnk.core.engine.document.Document) Test(org.junit.Test)

Example 22 with Project

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

the class DocumentMapperTest method testMultipleInclusions.

@Test
public void testMultipleInclusions() {
    Task task1 = createTask(1, "other task");
    Task task2 = createTask(2, "other task");
    Task task3 = createTask(3, "sample task");
    Project project = new Project();
    project.setName("someProject");
    project.setId(3L);
    project.setTask(task1);
    project.setTasks(Arrays.asList(task2, task3));
    QuerySpec querySpec = new QuerySpec(Project.class);
    querySpec.includeRelation(Arrays.asList("tasks"));
    querySpec.includeRelation(Arrays.asList("task"));
    QuerySpecAdapter queryAdapter = (QuerySpecAdapter) toAdapter(querySpec);
    Document document = mapper.toDocument(toResponse(project), queryAdapter);
    Resource resource = document.getSingleData().get();
    Assert.assertEquals("3", resource.getId());
    Assert.assertEquals("projects", resource.getType());
    Relationship taskRel = resource.getRelationships().get("task");
    Assert.assertNotNull(taskRel.getLinks());
    Assert.assertTrue(taskRel.getData().isPresent());
    Assert.assertNotNull(taskRel.getData().get());
    Relationship tasksRel = resource.getRelationships().get("tasks");
    Assert.assertNotNull(tasksRel.getLinks());
    Assert.assertTrue(tasksRel.getData().isPresent());
    Assert.assertNotNull(tasksRel.getData().get());
    Assert.assertEquals(2, tasksRel.getCollectionData().get().size());
    Assert.assertEquals(3, document.getIncluded().size());
}
Also used : Project(io.crnk.core.mock.models.Project) LazyTask(io.crnk.core.mock.models.LazyTask) Task(io.crnk.core.mock.models.Task) Relationship(io.crnk.core.engine.document.Relationship) Resource(io.crnk.core.engine.document.Resource) QuerySpec(io.crnk.core.queryspec.QuerySpec) QuerySpecAdapter(io.crnk.core.queryspec.internal.QuerySpecAdapter) Document(io.crnk.core.engine.document.Document) Test(org.junit.Test)

Example 23 with Project

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

the class DocumentMapperTest method testRelationshipIncludeRelation.

@Test
public void testRelationshipIncludeRelation() {
    LazyTask task = createLazyTask(2);
    Project project = createProject(3, "sample project");
    task.setProject(project);
    QuerySpec querySpec = new QuerySpec(LazyTask.class);
    querySpec.includeRelation(Arrays.asList("project"));
    Document document = mapper.toDocument(toResponse(task), toAdapter(querySpec));
    Resource resource = document.getSingleData().get();
    Assert.assertEquals("2", resource.getId());
    Relationship relationship = resource.getRelationships().get("project");
    Assert.assertNotNull(relationship);
    ResourceIdentifier relationshipData = relationship.getSingleData().get();
    Assert.assertNotNull(relationshipData);
    Assert.assertEquals("3", relationshipData.getId());
    Assert.assertEquals("projects", relationshipData.getType());
    List<Resource> included = document.getIncluded();
    Assert.assertEquals(1, included.size());
    Assert.assertEquals("3", included.get(0).getId());
    Assert.assertEquals("projects", included.get(0).getType());
    Assert.assertEquals("sample project", included.get(0).getAttributes().get("name").asText());
}
Also used : Project(io.crnk.core.mock.models.Project) ResourceIdentifier(io.crnk.core.engine.document.ResourceIdentifier) Relationship(io.crnk.core.engine.document.Relationship) Resource(io.crnk.core.engine.document.Resource) LazyTask(io.crnk.core.mock.models.LazyTask) QuerySpec(io.crnk.core.queryspec.QuerySpec) Document(io.crnk.core.engine.document.Document) Test(org.junit.Test)

Example 24 with Project

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

the class DocumentMapperTest method testRelationshipCyclicInclusion.

@Test
public void testRelationshipCyclicInclusion() {
    Task task = createTask(2, "sample task");
    Project project = createProject(3, "sample project");
    task.setProject(project);
    project.setTask(task);
    QuerySpec querySpec = new QuerySpec(Task.class);
    querySpec.includeRelation(Arrays.asList("project"));
    querySpec.getOrCreateQuerySpec(Project.class).includeRelation(Arrays.asList("task"));
    Document document = mapper.toDocument(toResponse(task), toAdapter(querySpec));
    Resource resource = document.getSingleData().get();
    Assert.assertEquals("2", resource.getId());
    Relationship relationship = resource.getRelationships().get("project");
    Assert.assertNotNull(relationship);
    ResourceIdentifier relationshipData = relationship.getSingleData().get();
    Assert.assertNotNull(relationshipData);
    Assert.assertEquals("3", relationshipData.getId());
    Assert.assertEquals("projects", relationshipData.getType());
    List<Resource> included = document.getIncluded();
    Assert.assertEquals(1, included.size());
    Assert.assertEquals("3", included.get(0).getId());
    Assert.assertEquals("projects", included.get(0).getType());
    Assert.assertEquals("sample project", included.get(0).getAttributes().get("name").asText());
    Assert.assertEquals("2", included.get(0).getRelationships().get("task").getSingleData().get().getId());
}
Also used : Project(io.crnk.core.mock.models.Project) ResourceIdentifier(io.crnk.core.engine.document.ResourceIdentifier) LazyTask(io.crnk.core.mock.models.LazyTask) Task(io.crnk.core.mock.models.Task) Relationship(io.crnk.core.engine.document.Relationship) Resource(io.crnk.core.engine.document.Resource) QuerySpec(io.crnk.core.queryspec.QuerySpec) Document(io.crnk.core.engine.document.Document) Test(org.junit.Test)

Example 25 with Project

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

the class IncludeLookupSetterBaseTest method includeByDefaultSerializeNLevels.

@Test
public void includeByDefaultSerializeNLevels() throws Exception {
    Project project = new Project();
    project.setId(1L);
    Task task = new Task().setId(2L);
    project.setTask(task);
    Project projectDefault = new Project().setId(3L);
    task.setProject(projectDefault);
    mapper = new DocumentMapper(resourceRegistry, objectMapper, new EmptyPropertiesProvider(), resourceFilterDirectory);
    QuerySpec querySpec = new QuerySpec(Project.class);
    querySpec.includeRelation(Collections.singletonList("task"));
    Document document = mapper.toDocument(toResponse(project), toAdapter(querySpec));
    Resource projectResource = document.getSingleData().get();
    Relationship relationship = projectResource.getRelationships().get("task");
    assertNotNull(relationship);
    assertEquals("2", relationship.getSingleData().get().getId());
    assertNotNull(document.getIncluded());
    assertEquals(2, document.getIncluded().size());
    List<Resource> resources = document.getIncluded();
    assertEquals("projects", resources.get(0).getType());
    assertEquals("3", resources.get(0).getId());
    assertEquals("tasks", resources.get(1).getType());
    assertEquals("2", resources.get(1).getId());
}
Also used : Project(io.crnk.core.mock.models.Project) HierarchicalTask(io.crnk.core.mock.models.HierarchicalTask) Task(io.crnk.core.mock.models.Task) DocumentMapper(io.crnk.core.engine.internal.document.mapper.DocumentMapper) Relationship(io.crnk.core.engine.document.Relationship) Resource(io.crnk.core.engine.document.Resource) QuerySpec(io.crnk.core.queryspec.QuerySpec) Document(io.crnk.core.engine.document.Document) EmptyPropertiesProvider(io.crnk.core.engine.properties.EmptyPropertiesProvider) AbstractDocumentMapperTest(io.crnk.core.engine.internal.document.mapper.AbstractDocumentMapperTest) Test(org.junit.Test)

Aggregations

Project (io.crnk.core.mock.models.Project)68 Test (org.junit.Test)54 Task (io.crnk.core.mock.models.Task)44 Document (io.crnk.core.engine.document.Document)27 QuerySpec (io.crnk.core.queryspec.QuerySpec)25 Resource (io.crnk.core.engine.document.Resource)24 Response (io.crnk.core.engine.dispatcher.Response)15 Relationship (io.crnk.core.engine.document.Relationship)14 JsonPath (io.crnk.core.engine.internal.dispatcher.path.JsonPath)14 BaseControllerTest (io.crnk.core.engine.internal.dispatcher.controller.BaseControllerTest)12 AnnotatedRelationshipRepositoryAdapter (io.crnk.legacy.internal.AnnotatedRelationshipRepositoryAdapter)12 ResourcePost (io.crnk.core.engine.internal.dispatcher.controller.ResourcePost)11 LazyTask (io.crnk.core.mock.models.LazyTask)11 ResourceRegistryTest (io.crnk.core.resource.registry.ResourceRegistryTest)10 ResourceIdentifier (io.crnk.core.engine.document.ResourceIdentifier)8 TaskToProjectRepository (io.crnk.core.mock.repository.TaskToProjectRepository)8 ProjectRepository (io.crnk.core.mock.repository.ProjectRepository)7 TaskRepository (io.crnk.core.mock.repository.TaskRepository)7 QueryParams (io.crnk.legacy.queryParams.QueryParams)7 ResourceField (io.crnk.core.engine.information.resource.ResourceField)6