blob: 55d10e93eb2620940658373f0303f03e16e5896b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.component.fhir.dataformat;
import java.io.InputStream;
import java.io.InputStreamReader;
import ca.uhn.fhir.context.FhirContext;
import org.apache.camel.Exchange;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.hl7.fhir.dstu3.model.Address;
import org.hl7.fhir.dstu3.model.Base;
import org.hl7.fhir.dstu3.model.HumanName;
import org.hl7.fhir.dstu3.model.Patient;
import org.hl7.fhir.instance.model.api.IBaseResource;
import org.junit.Before;
import org.junit.Test;
public class FhirJsonDataFormatTest extends CamelTestSupport {
private static final String PATIENT = "{\"resourceType\":\"Patient\","
+ "\"name\":[{\"family\":\"Holmes\",\"given\":[\"Sherlock\"]}],"
+ "\"address\":[{\"line\":[\"221b Baker St, Marylebone, London NW1 6XE, UK\"]}]}";
private MockEndpoint mockEndpoint;
@Override
@Before
public void setUp() throws Exception {
super.setUp();
mockEndpoint = resolveMandatoryEndpoint("mock:result", MockEndpoint.class);
}
@Test
public void unmarshal() throws Exception {
mockEndpoint.expectedMessageCount(1);
template.sendBody("direct:unmarshal", PATIENT);
mockEndpoint.assertIsSatisfied();
Exchange exchange = mockEndpoint.getExchanges().get(0);
Patient patient = (Patient) exchange.getIn().getBody();
assertTrue("Patients should be equal!", patient.equalsDeep(getPatient()));
}
@Test
public void marshal() throws Exception {
mockEndpoint.expectedMessageCount(1);
Patient patient = getPatient();
template.sendBody("direct:marshal", patient);
mockEndpoint.assertIsSatisfied();
Exchange exchange = mockEndpoint.getExchanges().get(0);
InputStream inputStream = exchange.getIn().getBody(InputStream.class);
IBaseResource iBaseResource = FhirContext.forDstu3().newJsonParser().parseResource(new InputStreamReader(inputStream));
assertTrue("Patients should be equal!", patient.equalsDeep((Base) iBaseResource));
}
private Patient getPatient() {
Patient patient = new Patient();
patient.addName(new HumanName().addGiven("Sherlock").setFamily("Holmes")).addAddress(new Address().addLine("221b Baker St, Marylebone, London NW1 6XE, UK"));
return patient;
}
@Override
protected RouteBuilder createRouteBuilder() {
return new RouteBuilder() {
public void configure() {
from("direct:marshal")
.marshal().fhirJson("DSTU3")
.to("mock:result");
from("direct:unmarshal")
.unmarshal().fhirJson()
.to("mock:result");
}
};
}
}