use of org.hisp.dhis.jsontree.JsonNode in project dhis2-core by dhis2.
the class EventReportControllerTest method testPostForSingleEventDate.
@Test
void testPostForSingleEventDate() {
// Given
final String eventDateDimension = "eventDate";
final String eventDate = "2021-07-21_2021-08-01";
final String dimensionBody = "{'dimension': '" + eventDateDimension + "', 'items': [{'id': '" + eventDate + "'}]}";
final String body = "{'name': 'Name Test', 'type':'LINE_LIST', 'program':{'id':'" + mockProgram.getUid() + "'}, 'columns': [" + dimensionBody + "]}";
// When
final String uid = assertStatus(CREATED, POST("/eventReports/", body));
// Then
final JsonResponse response = GET("/eventVisualizations/" + uid).content();
final Map<String, JsonNode> nodeMap = (Map<String, JsonNode>) response.node().value();
assertThat(nodeMap.get("simpleDimensions").toString(), containsString("COLUMN"));
assertThat(nodeMap.get("simpleDimensions").toString(), containsString(eventDateDimension));
assertThat(nodeMap.get("simpleDimensions").toString(), containsString(eventDate));
assertThat(nodeMap.get("columns").toString(), containsString(eventDateDimension));
assertThat(nodeMap.get("rows").toString(), not(containsString(eventDateDimension)));
assertThat(nodeMap.get("filters").toString(), not(containsString(eventDateDimension)));
}
use of org.hisp.dhis.jsontree.JsonNode in project dhis2-core by dhis2.
the class EventReportControllerTest method testThatGetEventReportsDoesNotContainNewEventVisualizations.
@Test
void testThatGetEventReportsDoesNotContainNewEventVisualizations() {
// Given
final String body = "{'name': 'Name Test', 'type':'LINE_LIST', 'program':{'id':'" + mockProgram.getUid() + "'}}";
// When
final String uid = assertStatus(CREATED, POST("/eventVisualizations/", body));
// Then
final JsonResponse response = GET("/eventReports/" + uid).content();
final Map<String, JsonNode> nodeMap = (Map<String, JsonNode>) response.node().value();
assertThat(nodeMap.values(), is(empty()));
}
Aggregations