use of io.crnk.core.engine.internal.dispatcher.path.JsonPath in project crnk-framework by crnk-project.
the class ResourceIdControllerTest method checkPatchResource.
private Resource checkPatchResource(Resource resource) {
JsonPath path = pathBuilder.build("/relationIdTest/" + resource.getId());
resource.getRelationships().put("testLookupAlways", new Relationship(schedule2Id));
Document newDocument = createDocument(resource);
// WHEN PATCH
ResourcePatch sut = new ResourcePatch(resourceRegistry, new NullPropertiesProvider(), typeParser, objectMapper, documentMapper, modificationFilters);
Response taskResponse = sut.handle(path, emptyTaskQuery, null, newDocument);
// THEN PATCH
assertThat(taskResponse.getHttpStatus()).isEqualTo(HttpStatus.OK_200);
Resource updatedResource = taskResponse.getDocument().getSingleData().get();
Assert.assertEquals(resource.getType(), updatedResource.getType());
Assert.assertEquals(resource.getId(), updatedResource.getId());
Assert.assertEquals(resource.getAttributes().get("name"), updatedResource.getAttributes().get("name"));
Relationship relationship = updatedResource.getRelationships().get("testLookupAlways");
Assert.assertTrue(relationship.getData().isPresent());
Assert.assertEquals(schedule2Id, relationship.getData().get());
// validate relationship not accessed, only id set => performance
RelationIdTestResource entity = repository.findOne(1L, new QuerySpec(RelationIdTestResource.class));
Assert.assertEquals(schedule2.getId(), entity.getTestLookupAlwaysId());
Assert.assertNull(entity.getTestLookupAlways());
return updatedResource;
}
use of io.crnk.core.engine.internal.dispatcher.path.JsonPath in project crnk-framework by crnk-project.
the class ResourcePostTest method onNewResourcesAndRelationshipsShouldPersistThoseData.
@Test
public void onNewResourcesAndRelationshipsShouldPersistThoseData() throws Exception {
// GIVEN
Document newProjectBody = new Document();
Resource data = createProject();
newProjectBody.setData(Nullable.of((Object) data));
data.setType("projects");
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());
Mockito.verify(modificationFilter, Mockito.times(1)).modifyAttribute(Mockito.any(), Mockito.any(ResourceField.class), Mockito.eq("name"), Mockito.eq("sample project"));
/* ------- */
// GIVEN
Document newUserBody = new Document();
data = new Resource();
newUserBody.setData(Nullable.of((Object) data));
data.setType("users");
data.setAttribute("name", objectMapper.readTree("\"some user\""));
List<ResourceIdentifier> projectIds = Collections.singletonList(new ResourceIdentifier(projectId.toString(), "projects"));
data.getRelationships().put("assignedProjects", new Relationship(projectIds));
JsonPath taskPath = pathBuilder.build("/users");
// WHEN
Response taskResponse = sut.handle(taskPath, emptyUserQuery, null, newUserBody);
// THEN
Resource task = taskResponse.getDocument().getSingleData().get();
assertThat(task.getType()).isEqualTo("users");
Long userId = Long.parseLong(task.getId());
assertThat(userId).isNotNull();
assertThat(task.getAttributes().get("name").asText()).isEqualTo("some user");
assertThat(task.getRelationships().get("assignedProjects").getCollectionData().get()).hasSize(1);
assertThat(task.getRelationships().get("assignedProjects").getCollectionData().get().get(0).getId()).isEqualTo(projectId.toString());
Mockito.verify(modificationFilter, Mockito.times(1)).modifyManyRelationship(Mockito.any(), Mockito.any(ResourceField.class), Mockito.eq(ResourceRelationshipModificationType.SET), Mockito.eq(projectIds));
}
use of io.crnk.core.engine.internal.dispatcher.path.JsonPath in project crnk-framework by crnk-project.
the class ResourcePostTest method onInconsistentResourceTypesShouldThrowException.
@Test
public void onInconsistentResourceTypesShouldThrowException() throws Exception {
// GIVEN
Document newProjectBody = new Document();
Resource data = createProject();
newProjectBody.setData(Nullable.of((Object) data));
JsonPath projectPath = pathBuilder.build("/tasks");
ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// THEN
expectedException.expect(RuntimeException.class);
// WHEN
sut.handle(projectPath, emptyTaskQuery, null, newProjectBody);
}
use of io.crnk.core.engine.internal.dispatcher.path.JsonPath in project crnk-framework by crnk-project.
the class ResourcePostTest method onUnchangedLazyRelationshipDataShouldNotReturnThatData.
@Test
public void onUnchangedLazyRelationshipDataShouldNotReturnThatData() throws Exception {
ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
Document newProjectBody = new Document();
Resource data = createProject();
data.setType("projects");
newProjectBody.setData(Nullable.of((Object) data));
JsonPath projectsPath = pathBuilder.build("/projects");
// WHEN
Response projectsResponse = sut.handle(projectsPath, emptyProjectQuery, null, newProjectBody);
// THEN
assertThat(projectsResponse.getDocument().getSingleData().get().getType()).isEqualTo("projects");
Long userId = Long.parseLong(projectsResponse.getDocument().getSingleData().get().getId());
assertThat(userId).isNotNull();
assertThat(projectsResponse.getDocument().getSingleData().get().getAttributes().get("name").asText()).isEqualTo("sample project");
assertThat(projectsResponse.getDocument().getSingleData().get().getRelationships().get("tasks").getData().isPresent()).isFalse();
}
use of io.crnk.core.engine.internal.dispatcher.path.JsonPath in project crnk-framework by crnk-project.
the class ResourcePostTest method onMultipleDataThrowException.
@Test
public void onMultipleDataThrowException() throws Exception {
// GIVEN
Document newProjectBody = new Document();
Resource data = createProject();
newProjectBody.setData(Nullable.of((Object) new ArrayList<>()));
JsonPath projectPath = pathBuilder.build("/tasks");
ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// THEN
expectedException.expect(RequestBodyException.class);
// WHEN
sut.handle(projectPath, emptyTaskQuery, null, newProjectBody);
}
Aggregations