/*
* Copyright 2015 Open mHealth
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openmhealth.shim.ihealth.mapper;
import com.fasterxml.jackson.databind.JsonNode;
import org.openmhealth.schema.domain.omh.DataPoint;
import org.openmhealth.schema.domain.omh.HeartRate;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.List;
import static org.hamcrest.CoreMatchers.*;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.empty;
import static org.openmhealth.schema.domain.omh.DataPointModality.SELF_REPORTED;
import static org.openmhealth.schema.domain.omh.DataPointModality.SENSED;
import static org.openmhealth.schema.domain.omh.HeartRate.SCHEMA_ID;
/**
* @author Chris Schaefbauer
*/
public class IHealthBloodOxygenEndpointHeartRateDataPointMapperUnitTests extends IHealthDataPointMapperUnitTests {
private JsonNode responseNode;
private final IHealthBloodOxygenEndpointHeartRateDataPointMapper mapper =
new IHealthBloodOxygenEndpointHeartRateDataPointMapper();
private List<DataPoint<HeartRate>> dataPoints;
@BeforeClass
public void initializeResponseNode() throws IOException {
responseNode = asJsonNode("/org/openmhealth/shim/ihealth/mapper/ihealth-spo2.json");
}
@BeforeMethod
public void initializeDataPoints() {
dataPoints = mapper.asDataPoints(responseNode);
}
@Test
public void asDataPointsShouldReturnCorrectNumberOfDataPoints() {
assertThat(dataPoints.size(), equalTo(2));
}
@Test
public void asDataPointsShouldReturnCorrectSensedDataPoints() {
HeartRate expectedHeartRate = new HeartRate.Builder(80)
.setEffectiveTimeFrame(OffsetDateTime.parse("2015-09-23T15:46:00-06:00"))
.build();
assertThat(dataPoints.get(0).getBody(), equalTo(expectedHeartRate));
testDataPointHeader(dataPoints.get(0).getHeader(), SCHEMA_ID, SENSED,
"d7fb9db14b0fc3e8e1635720c28bda64", OffsetDateTime.parse("2015-09-23T21:46:00Z"));
}
@Test
public void asDataPointsShouldReturnCorrectSelfReportedDataPoints() {
HeartRate expectedHeartRate = new HeartRate.Builder(65)
.setEffectiveTimeFrame(OffsetDateTime.parse("2015-09-24T15:03:00-06:00"))
.setUserNotes("Satch on satch ")
.build();
assertThat(dataPoints.get(1).getBody(), equalTo(expectedHeartRate));
assertThat(dataPoints.get(1).getHeader().getAcquisitionProvenance().getModality(), equalTo(SELF_REPORTED));
}
@Test
public void asDataPointsShouldReturnCorrectUserNotesWithDataPoints() {
assertThat(dataPoints.get(0).getBody().getUserNotes(), nullValue());
assertThat(dataPoints.get(1).getBody().getUserNotes(), equalTo("Satch on satch "));
}
@Test
public void asDataPointsShouldReturnNoDataPointWhenHeartRateDataIsNotPresent() throws IOException {
JsonNode noHeartRateBloodOxygenNode = asJsonNode(
"org/openmhealth/shim/ihealth/mapper/ihealth-spo2-no-heart-rate.json");
assertThat(mapper.asDataPoints(noHeartRateBloodOxygenNode), is(empty()));
}
@Test
public void asDataPointsShouldReturnEmptyListWhenEmptyIHealthResponse() {
JsonNode emptyNode = asJsonNode("/org/openmhealth/shim/ihealth/mapper/ihealth-spo2-empty.json");
assertThat(mapper.asDataPoints(emptyNode), is(empty()));
}
}