use of io.crnk.core.engine.internal.dispatcher.controller.ResourcePost in project crnk-framework by crnk-project.
the class ResourcePostTest method onNewInheritedResourceShouldPersistThisResource.
@Test
// TODO
@Ignore
public void onNewInheritedResourceShouldPersistThisResource() throws Exception {
// GIVEN
Document newMemorandumBody = new Document();
Resource data = new Resource();
newMemorandumBody.setData(Nullable.of((Object) data));
data.setType("memoranda");
data.setAttribute("title", objectMapper.readTree("\"sample title\""));
data.setAttribute("body", objectMapper.readTree("\"sample body\""));
JsonPath projectPath = pathBuilder.build("/documents");
ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// WHEN
Response memorandumResponse = sut.handle(projectPath, emptyMemorandumQuery, null, newMemorandumBody);
// THEN
assertThat(memorandumResponse.getDocument().getSingleData().get().getType()).isEqualTo("memoranda");
Resource persistedMemorandum = memorandumResponse.getDocument().getSingleData().get();
assertThat(persistedMemorandum.getId()).isNotNull();
assertThat(persistedMemorandum.getAttributes().get("title").asText()).isEqualTo("sample title");
assertThat(persistedMemorandum.getAttributes().get("body").asText()).isEqualTo("sample body");
}
use of io.crnk.core.engine.internal.dispatcher.controller.ResourcePost in project crnk-framework by crnk-project.
the class ResourcePostTest method onNewResourcesAndRelationshipShouldPersistThoseData.
@Test
public void onNewResourcesAndRelationshipShouldPersistThoseData() throws Exception {
// GIVEN
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.getHttpStatus()).isEqualTo(HttpStatus.CREATED_201);
assertThat(projectResponse.getDocument().getData().get()).isExactlyInstanceOf(Resource.class);
assertThat(projectResponse.getDocument().getSingleData().get().getType()).isEqualTo("projects");
Resource persistedProject = projectResponse.getDocument().getSingleData().get();
assertThat(persistedProject.getId()).isNotNull();
assertThat(persistedProject.getAttributes().get("name").asText()).isEqualTo("sample project");
assertThat(persistedProject.getAttributes().get("data").get("data").asText()).isEqualTo("asd");
Long projectId = Long.parseLong(projectResponse.getDocument().getSingleData().get().getId());
Mockito.verify(modificationFilter, Mockito.times(1)).modifyAttribute(Mockito.any(), Mockito.any(ResourceField.class), Mockito.eq("data"), Mockito.any());
/* ------- */
// GIVEN
Document newTasksBody = new Document();
newTasksBody.setData(Nullable.of((Object) createTask()));
newTasksBody.getSingleData().get().getRelationships().put("project", new Relationship(new ResourceIdentifier(projectId.toString(), "projects")));
JsonPath taskPath = pathBuilder.build("/tasks");
// WHEN
Response taskResponse = sut.handle(taskPath, emptyTaskQuery, null, newTasksBody);
// THEN
assertThat(taskResponse.getHttpStatus()).isEqualTo(HttpStatus.CREATED_201);
assertThat(taskResponse.getDocument().getSingleData().get().getType()).isEqualTo("tasks");
String taskId = taskResponse.getDocument().getSingleData().get().getId();
assertThat(taskId).isNotNull();
assertThat(taskResponse.getDocument().getSingleData().get().getAttributes().get("name").asText()).isEqualTo("sample task");
TaskRepository taskRepository = new TaskRepository();
Task persistedTask = taskRepository.findOne(Long.parseLong(taskId), null);
assertThat(persistedTask.getProject().getId()).isEqualTo(projectId);
}
use of io.crnk.core.engine.internal.dispatcher.controller.ResourcePost in project crnk-framework by crnk-project.
the class ResourcePostTest method onNoBodyResourceShouldThrowException.
@Test
public void onNoBodyResourceShouldThrowException() throws Exception {
// GIVEN
ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// THEN
expectedException.expect(RequestBodyNotFoundException.class);
// WHEN
sut.handle(new ResourcePath("tasks"), emptyTaskQuery, null, null);
}
use of io.crnk.core.engine.internal.dispatcher.controller.ResourcePost in project crnk-framework by crnk-project.
the class ResourcePostTest method onPostingReadOnlyFieldReturnBadRequestWithFailBehavior.
@Test
public void onPostingReadOnlyFieldReturnBadRequestWithFailBehavior() throws Exception {
// GIVEN
Document requestDocument = new Document();
Resource data = createTask();
data.getAttributes().put("readOnlyValue", objectMapper.readTree("\"newValue\""));
requestDocument.setData(Nullable.of((Object) data));
JsonPath path = pathBuilder.build("/tasks");
PropertiesProvider propertiesProvider = new PropertiesProvider() {
@Override
public String getProperty(String key) {
if (CrnkProperties.RESOURCE_FIELD_IMMUTABLE_WRITE_BEHAVIOR.equals(key)) {
return ResourceFieldImmutableWriteBehavior.FAIL.toString();
}
return null;
}
};
ResourcePost sut = new ResourcePost(resourceRegistry, propertiesProvider, typeParser, objectMapper, documentMapper, modificationFilters);
// WHEN
try {
sut.handle(path, emptyTaskQuery, null, requestDocument);
Assert.fail("should not be allowed to update read-only field");
} catch (ForbiddenException e) {
Assert.assertEquals("field 'readOnlyValue' cannot be modified", e.getMessage());
}
}
use of io.crnk.core.engine.internal.dispatcher.controller.ResourcePost in project crnk-framework by crnk-project.
the class ResourcePostTest method onUnknownResourceTypeShouldThrowException.
@Test
public void onUnknownResourceTypeShouldThrowException() throws Exception {
// GIVEN
ResourcePost sut = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// THEN
expectedException.expect(RepositoryNotFoundException.class);
// WHEN
sut.handle(new ResourcePath("fridges"), emptyTaskQuery, null, null);
}
Aggregations