use of io.crnk.legacy.queryParams.QueryParams in project crnk-framework by crnk-project.
the class JsonApiUrlBuilder method buildUrlInternal.
private String buildUrlInternal(ResourceInformation resourceInformation, Object id, Object query, String relationshipName) {
String url = resourceRegistry.getResourceUrl(resourceInformation);
if (id instanceof Collection) {
Collection<?> ids = (Collection<?>) id;
Collection<String> strIds = new ArrayList<>();
for (Object idElem : ids) {
String strIdElem = resourceInformation.toIdString(idElem);
strIds.add(strIdElem);
}
url += "/";
url += StringUtils.join(",", strIds);
} else if (id != null) {
String strId = resourceInformation.toIdString(id);
url += "/" + strId;
}
if (relationshipName != null) {
url += "/relationships/" + relationshipName;
}
UrlParameterBuilder urlBuilder = new UrlParameterBuilder(url);
if (query instanceof QuerySpec) {
QuerySpec querySpec = (QuerySpec) query;
urlBuilder.addQueryParameters(querySpecSerializer.serialize(querySpec));
} else if (query instanceof QueryParams) {
QueryParams queryParams = (QueryParams) query;
urlBuilder.addQueryParameters(queryParamsSerializer.serializeFilters(queryParams));
urlBuilder.addQueryParameters(queryParamsSerializer.serializeSorting(queryParams));
urlBuilder.addQueryParameters(queryParamsSerializer.serializeGrouping(queryParams));
urlBuilder.addQueryParameters(queryParamsSerializer.serializePagination(queryParams));
urlBuilder.addQueryParameters(queryParamsSerializer.serializeIncludedFields(queryParams));
urlBuilder.addQueryParameters(queryParamsSerializer.serializeIncludedRelations(queryParams));
}
return urlBuilder.toString();
}
use of io.crnk.legacy.queryParams.QueryParams in project crnk-framework by crnk-project.
the class CollectionGetTest method onGivenRequestResourceShouldNotLoadAutoIncludeFields.
@Test
public void onGivenRequestResourceShouldNotLoadAutoIncludeFields() throws Exception {
// GIVEN
Document newTaskBody = new Document();
Resource data = createTask();
newTaskBody.setData(Nullable.of((Object) data));
data.setType("tasks");
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/projects");
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, "projects", new QueryParams());
assertThat(project.getId()).isNotNull();
// 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("[\"projects\"]"));
QueryParams requestParams = new QueryParamsBuilder(new DefaultQueryParamsParser()).buildQueryParams(queryParams);
// WHEN
Response response = responseGetResp.handle(jsonPath, new QueryParamsAdapter(resourceRegistry.getEntry(Task.class).getResourceInformation(), requestParams, moduleRegistry), null, null);
// THEN
Assert.assertNotNull(response);
assertThat(response.getDocument().getSingleData().get().getType()).isEqualTo("tasks");
// eager loading but no inclusion
RegistryEntry entry = resourceRegistry.getEntry(Task.class);
ResourceField projectsField = entry.getResourceInformation().findFieldByUnderlyingName("projects");
Assert.assertEquals(SerializeType.ONLY_ID, projectsField.getSerializeType());
assertThat(response.getDocument().getSingleData().get().getRelationships().get("projects").getData().isPresent()).isTrue();
}
use of io.crnk.legacy.queryParams.QueryParams in project crnk-framework by crnk-project.
the class FieldResourcePostTest method onExistingParentResourceShouldSaveToToMany.
@Test
public void onExistingParentResourceShouldSaveToToMany() throws Exception {
// GIVEN
Document newTaskDocument = new Document();
newTaskDocument.setData(Nullable.of((Object) createTask()));
JsonPath taskPath = pathBuilder.build("/tasks");
ResourcePost resourcePost = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// WHEN
Response taskResponse = resourcePost.handle(taskPath, emptyTaskQuery, null, newTaskDocument);
// THEN
assertThat(taskResponse.getDocument().getSingleData().get().getType()).isEqualTo("tasks");
Long taskId = Long.parseLong(taskResponse.getDocument().getSingleData().get().getId());
assertThat(taskId).isNotNull();
/* ------- */
// GIVEN
Document newProjectDocument = new Document();
newProjectDocument.setData(Nullable.of((Object) createProject()));
JsonPath projectPath = pathBuilder.build("/tasks/" + taskId + "/projects");
FieldResourcePost sut = new FieldResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// WHEN
Response projectResponse = sut.handle(projectPath, emptyProjectQuery, null, newProjectDocument);
// THEN
assertThat(projectResponse.getHttpStatus()).isEqualTo(HttpStatus.CREATED_201);
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();
TaskToProjectRepository taskToProjectRepository = new TaskToProjectRepository();
Project project = taskToProjectRepository.findOneTarget(taskId, "projects", new QueryParams());
assertThat(project.getId()).isEqualTo(projectId);
}
use of io.crnk.legacy.queryParams.QueryParams in project crnk-framework by crnk-project.
the class FieldResourcePostTest method onExistingParentResourceShouldSaveIt.
@Test
public void onExistingParentResourceShouldSaveIt() throws Exception {
// GIVEN
Document newTaskDocument = new Document();
newTaskDocument.setData(Nullable.of((Object) createTask()));
JsonPath taskPath = pathBuilder.build("/tasks");
ResourcePost resourcePost = new ResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// WHEN
Response taskResponse = resourcePost.handle(taskPath, emptyTaskQuery, null, newTaskDocument);
// THEN
assertThat(taskResponse.getDocument().getSingleData().get().getType()).isEqualTo("tasks");
Long taskId = Long.parseLong(taskResponse.getDocument().getSingleData().get().getId());
assertThat(taskId).isNotNull();
/* ------- */
// GIVEN
Document newProjectDocument = new Document();
newProjectDocument.setData(Nullable.of((Object) createProject()));
JsonPath projectPath = pathBuilder.build("/tasks/" + taskId + "/project");
FieldResourcePost sut = new FieldResourcePost(resourceRegistry, PROPERTIES_PROVIDER, typeParser, objectMapper, documentMapper, modificationFilters);
// WHEN
Response projectResponse = sut.handle(projectPath, emptyProjectQuery, null, newProjectDocument);
// THEN
assertThat(projectResponse.getHttpStatus()).isEqualTo(HttpStatus.CREATED_201);
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();
TaskToProjectRepository taskToProjectRepository = new TaskToProjectRepository();
Project project = taskToProjectRepository.findOneTarget(taskId, "project", new QueryParams());
assertThat(project.getId()).isEqualTo(projectId);
}
use of io.crnk.legacy.queryParams.QueryParams in project crnk-framework by crnk-project.
the class ResourceGetTest method onGivenRequestResourceShouldLoadAutoIncludeFields.
@Test
public void onGivenRequestResourceShouldLoadAutoIncludeFields() throws Exception {
// GIVEN
JsonPath jsonPath = pathBuilder.build("/task-with-lookup/1");
ResourceGet responseGetResp = new ResourceGet(resourceRegistry, typeParser, documentMapper);
Map<String, Set<String>> queryParams = new HashMap<>();
queryParams.put(RestrictedQueryParamsMembers.include.name() + "[task-with-lookup]", new HashSet<>(Arrays.asList("project", "projectNull", "projectOverridden", "projectOverriddenNull")));
QueryParams queryParamsObject = new QueryParamsBuilder(new DefaultQueryParamsParser()).buildQueryParams(queryParams);
// WHEN
Response response = responseGetResp.handle(jsonPath, new QueryParamsAdapter(resourceRegistry.getEntry(TaskWithLookup.class).getResourceInformation(), queryParamsObject, moduleRegistry), null, null);
// THEN
Assert.assertNotNull(response);
assertThat(response.getDocument().getData().get()).isExactlyInstanceOf(Resource.class);
assertThat(response.getDocument().getSingleData().get().getType()).isEqualTo("task-with-lookup");
Resource responseData = response.getDocument().getSingleData().get();
assertThat(responseData.getRelationships().get("project").getSingleData().get().getId()).isEqualTo("42");
assertThat(responseData.getRelationships().get("projectNull").getSingleData().get().getId()).isEqualTo("1");
assertThat(responseData.getRelationships().get("projectOverridden").getSingleData().get().getId()).isEqualTo("1");
assertThat(responseData.getRelationships().get("projectOverriddenNull").getSingleData().get().getId()).isEqualTo("1");
}
Aggregations