use of io.crnk.core.engine.internal.dispatcher.controller.RelationshipsResourceGet in project crnk-framework by crnk-project.
the class RelationshipsResourceGetTest method supportPolymorphicRelationshipTypes.
@Test
public void supportPolymorphicRelationshipTypes() throws JsonProcessingException {
// GIVEN
Long projectId = 1L;
String type = ClassUtils.getAnnotation(ProjectPolymorphic.class, JsonApiResource.class).get().type();
ProjectPolymorphic projectPolymorphic = new ProjectPolymorphic();
projectPolymorphic.setId(projectId);
ProjectPolymorphicToObjectRepository projectPolymorphicToObjectRepository = new ProjectPolymorphicToObjectRepository();
projectPolymorphicToObjectRepository.setRelation(projectPolymorphic, 42L, "task");
JsonPath jsonPath = pathBuilder.build("/" + type + "/" + projectId + "/relationships/task");
RelationshipsResourceGet resourceGet = new RelationshipsResourceGet(resourceRegistry, typeParser, documentMapper);
// WHEN
Response baseResponseContext = resourceGet.handle(jsonPath, emptyTaskQuery, null, null);
// THEN
Assert.assertNotNull(baseResponseContext);
String resultJson = objectMapper.writeValueAsString(baseResponseContext.getDocument());
assertThatJson(resultJson).node("data.id").isStringEqualTo("42");
assertThatJson(resultJson).node("data.type").isEqualTo("tasks");
// GIVEN
projectPolymorphicToObjectRepository.setRelations(projectPolymorphic, Arrays.asList(44L, 45L), "tasks");
jsonPath = pathBuilder.build("/" + type + "/" + projectId + "/relationships/tasks");
resourceGet = new RelationshipsResourceGet(resourceRegistry, typeParser, documentMapper);
// WHEN
baseResponseContext = resourceGet.handle(jsonPath, emptyTaskQuery, null, null);
Assert.assertNotNull(baseResponseContext);
resultJson = objectMapper.writeValueAsString(baseResponseContext.getDocument());
ReadContext resultCtx = com.jayway.jsonpath.JsonPath.parse(resultJson);
assertIncludeDoNotCareAboutOrder(new ArrayList<>(Arrays.asList("44", "45")), Arrays.asList(0, 1), resultCtx);
}
use of io.crnk.core.engine.internal.dispatcher.controller.RelationshipsResourceGet in project crnk-framework by crnk-project.
the class RelationshipsResourceGetTest method onValidRequestShouldAcceptIt.
@Test
public void onValidRequestShouldAcceptIt() {
// GIVEN
JsonPath jsonPath = pathBuilder.build("tasks/1/relationships/project");
ResourceRegistry resourceRegistry = mock(ResourceRegistry.class);
RelationshipsResourceGet sut = new RelationshipsResourceGet(resourceRegistry, typeParser, documentMapper);
// WHEN
boolean result = sut.isAcceptable(jsonPath, REQUEST_TYPE);
// THEN
assertThat(result).isTrue();
}
use of io.crnk.core.engine.internal.dispatcher.controller.RelationshipsResourceGet in project crnk-framework by crnk-project.
the class RelationshipsResourceGetTest method onGivenRequestLinkResourceGetShouldReturnDataField.
@Test
public void onGivenRequestLinkResourceGetShouldReturnDataField() throws Exception {
// GIVEN
JsonPath jsonPath = pathBuilder.build("/tasks/1/relationships/project");
RelationshipsResourceGet sut = new RelationshipsResourceGet(resourceRegistry, typeParser, documentMapper);
new TaskToProjectRepository().setRelation(new Task().setId(1L), 42L, "project");
// WHEN
Response response = sut.handle(jsonPath, emptyProjectQuery, null, null);
// THEN
Assert.assertNotNull(response);
String resultJson = objectMapper.writeValueAsString(response.getDocument());
assertThatJson(resultJson).node("data.id").isStringEqualTo("42");
assertThatJson(resultJson).node("data.type").isEqualTo("projects");
}
use of io.crnk.core.engine.internal.dispatcher.controller.RelationshipsResourceGet in project crnk-framework by crnk-project.
the class HttpRequestProcessorImplTest method shouldHandleRelationshipRequest.
@Test
public void shouldHandleRelationshipRequest() throws Exception {
// GIVEN
String path = "/tasks/1/relationships/project";
String requestType = "GET";
ControllerRegistry controllerRegistry = new ControllerRegistry(null);
RelationshipsResourceGet controller = mock(RelationshipsResourceGet.class);
controllerRegistry.addController(controller);
QuerySpecAdapterBuilder queryAdapterBuilder = new QuerySpecAdapterBuilder(new DefaultQuerySpecDeserializer(), moduleRegistry);
RequestDispatcher sut = new HttpRequestProcessorImpl(moduleRegistry, controllerRegistry, null, queryAdapterBuilder);
// WHEN
when(controller.isAcceptable(any(JsonPath.class), eq(requestType))).thenCallRealMethod();
Map<String, Set<String>> parameters = new HashMap<>();
sut.dispatchRequest(path, requestType, parameters, null, null);
// THEN
verify(controller, times(1)).handle(any(JsonPath.class), any(QueryAdapter.class), any(RepositoryMethodParameterProvider.class), any(Document.class));
}
use of io.crnk.core.engine.internal.dispatcher.controller.RelationshipsResourceGet in project crnk-framework by crnk-project.
the class RelationshipsResourceGetTest method onNonRelationRequestShouldDenyIt.
@Test
public void onNonRelationRequestShouldDenyIt() {
// GIVEN
JsonPath jsonPath = new ResourcePath("tasks");
ResourceRegistry resourceRegistry = mock(ResourceRegistry.class);
RelationshipsResourceGet sut = new RelationshipsResourceGet(resourceRegistry, typeParser, documentMapper);
// WHEN
boolean result = sut.isAcceptable(jsonPath, REQUEST_TYPE);
// THEN
assertThat(result).isFalse();
}
Aggregations