use of io.crnk.legacy.queryParams.QueryParamsBuilder in project crnk-framework by crnk-project.
the class ResourcePostTest method onResourceWithCustomNamesShouldSaveParametersCorrectly.
@Test
// TODO support inhertiance
@Ignore
public void onResourceWithCustomNamesShouldSaveParametersCorrectly() throws Exception {
// GIVEN - creating sample project id
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.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());
/* ------- */
// GIVEN
Document pojoBody = new Document();
Resource pojoData = new Resource();
pojoBody.setData(Nullable.of((Object) pojoData));
pojoData.setType("pojo");
JsonNode put = objectMapper.createObjectNode().put("value", "hello");
pojoData.setAttribute("other-pojo", put);
pojoData.getRelationships().put("some-project", new Relationship(new ResourceIdentifier(Long.toString(projectId), "projects")));
pojoData.getRelationships().put("some-projects", new Relationship(Arrays.asList(new ResourceIdentifier(Long.toString(projectId), "projects"))));
JsonPath pojoPath = pathBuilder.build("/pojo");
// WHEN
QueryParamsBuilder queryParamsBuilder = new QueryParamsBuilder(new DefaultQueryParamsParser());
QueryParams queryParams = queryParamsBuilder.buildQueryParams(Collections.singletonMap("include[pojo]", Collections.singleton("projects")));
Response pojoResponse = sut.handle(pojoPath, toQueryAdapter(queryParams, Pojo.class), null, pojoBody);
// THEN
assertThat(pojoResponse.getDocument().getSingleData().get().getType()).isEqualTo("pojo");
Resource persistedPojo = pojoResponse.getDocument().getSingleData().get();
assertThat(persistedPojo.getId()).isNotNull();
assertThat(persistedPojo.getAttributes().get("other-pojo").get("value").asText()).isEqualTo("hello");
assertThat(persistedPojo.getRelationships().get("some-project").getSingleData().get()).isNotNull();
assertThat(persistedPojo.getRelationships().get("some-project").getSingleData().get().getId()).isEqualTo(projectId.toString());
Relationship persistedProjectsRelationship = persistedPojo.getRelationships().get("some-projects");
assertThat(persistedProjectsRelationship).isNotNull();
// check lazy loaded relation
PojoRepository repo = (PojoRepository) resourceRegistry.getEntry(Pojo.class).getResourceRepository(null).getResourceRepository();
Pojo pojo = repo.findOne(null, null);
assertThat(pojo.getProjects()).hasSize(1);
assertThat(pojo.getProjects().get(0).getId()).isEqualTo(projectId);
}
use of io.crnk.legacy.queryParams.QueryParamsBuilder in project crnk-framework by crnk-project.
the class CollectionGetTest method onGivenRequestResourceShouldLoadAutoIncludeFields.
@Test
public void onGivenRequestResourceShouldLoadAutoIncludeFields() throws Exception {
// GIVEN
Document newTaskBody = new Document();
Resource data = createTask();
newTaskBody.setData(Nullable.of((Object) data));
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/includedProjects");
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, "includedProjects", new QueryParams());
assertThat(project.getId()).isEqualTo(projectId);
// 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("includedProjects"));
QueryParams queryParams1 = new QueryParamsBuilder(new DefaultQueryParamsParser()).buildQueryParams(queryParams);
// WHEN
Response response = responseGetResp.handle(jsonPath, new QueryParamsAdapter(resourceRegistry.getEntry(Task.class).getResourceInformation(), queryParams1, moduleRegistry), null, null);
// THEN
Assert.assertNotNull(response);
data = response.getDocument().getSingleData().get();
assertThat(data.getType()).isEqualTo("tasks");
Relationship relationship = data.getRelationships().get("includedProjects");
assertThat(relationship.getCollectionData()).isNotNull();
assertThat(relationship.getCollectionData().get().size()).isEqualTo(1);
assertThat(relationship.getCollectionData().get().get(0).getId()).isEqualTo(projectId.toString());
}
use of io.crnk.legacy.queryParams.QueryParamsBuilder in project crnk-framework by crnk-project.
the class CrnkBootTest method setQueryParamsBuilderErrorsWhenSettingDefaultPage.
@Test(expected = IllegalStateException.class)
public void setQueryParamsBuilderErrorsWhenSettingDefaultPage() {
CrnkBoot boot = new CrnkBoot();
QueryParamsBuilder deserializer = mock(QueryParamsBuilder.class);
boot.setQueryParamsBuilds(deserializer);
boot.setDefaultPageLimit(10L);
}
Aggregations