package ca.uhn.fhir.rest.server; import static org.hamcrest.Matchers.stringContainsInOrder; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import java.util.concurrent.TimeUnit; import org.apache.commons.io.IOUtils; import org.apache.http.HttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.ContentType; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClientBuilder; import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.servlet.ServletHandler; import org.eclipse.jetty.servlet.ServletHolder; import org.hl7.fhir.dstu2016may.model.CodeType; import org.hl7.fhir.dstu2016may.model.IdType; import org.hl7.fhir.dstu2016may.model.OperationOutcome; import org.hl7.fhir.dstu2016may.model.Organization; import org.hl7.fhir.dstu2016may.model.Parameters; import org.hl7.fhir.dstu2016may.model.Patient; import org.hl7.fhir.dstu2016may.model.StringType; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.rest.annotation.IdParam; import ca.uhn.fhir.rest.annotation.ResourceParam; import ca.uhn.fhir.rest.annotation.Validate; import ca.uhn.fhir.rest.api.MethodOutcome; import ca.uhn.fhir.rest.api.ValidationModeEnum; import ca.uhn.fhir.util.PortUtil; import ca.uhn.fhir.util.TestUtil; public class ValidateDstu2_1Test { private static CloseableHttpClient ourClient; private static FhirContext ourCtx = FhirContext.forDstu2_1(); private static EncodingEnum ourLastEncoding; private static IdType ourLastId; private static ValidationModeEnum ourLastMode; public static Patient ourLastPatient; private static String ourLastProfile; private static String ourLastResourceBody; private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(ValidateDstu2_1Test.class); private static OperationOutcome ourOutcomeToReturn; private static int ourPort; private static Server ourServer; @Before() public void before() { ourLastResourceBody = null; ourLastEncoding = null; ourOutcomeToReturn = null; ourLastMode = null; ourLastProfile = null; } @Test public void testValidate() throws Exception { Patient patient = new Patient(); patient.addIdentifier().setValue("001"); patient.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("resource").setResource(patient); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Patient/$validate"); httpPost.setEntity(new StringEntity(ourCtx.newXmlParser().encodeResourceToString(params), ContentType.create(Constants.CT_FHIR_XML, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); String resp = IOUtils.toString(status.getEntity().getContent()); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(200, status.getStatusLine().getStatusCode()); assertThat(resp, stringContainsInOrder("<OperationOutcome")); } @Test public void testValidateBlankMode() throws Exception { Patient patient = new Patient(); patient.addIdentifier().setValue("001"); patient.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("resource").setResource(patient); params.addParameter().setName("mode").setValue(new CodeType(" ")); String encodedResource = ourCtx.newXmlParser().encodeResourceToString(params); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Patient/$validate"); httpPost.setEntity(new StringEntity(encodedResource, ContentType.create(Constants.CT_FHIR_XML, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); String resp = IOUtils.toString(status.getEntity().getContent()); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(200, status.getStatusLine().getStatusCode()); } @Test public void testValidateInvalidMode() throws Exception { Patient patient = new Patient(); patient.addIdentifier().setValue("001"); patient.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("resource").setResource(patient); params.addParameter().setName("mode").setValue(new CodeType("AAA")); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Patient/$validate"); httpPost.setEntity(new StringEntity(ourCtx.newXmlParser().encodeResourceToString(params), ContentType.create(Constants.CT_FHIR_XML, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); String resp = IOUtils.toString(status.getEntity().getContent()); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(400, status.getStatusLine().getStatusCode()); assertThat(resp, stringContainsInOrder("Invalid mode value: "AAA"")); } @Test public void testValidateMissingResource() throws Exception { Patient patient = new Patient(); patient.addIdentifier().setValue("001"); patient.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("mode").setValue(new CodeType("create")); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Patient/$validate"); httpPost.setEntity(new StringEntity(ourCtx.newXmlParser().encodeResourceToString(params), ContentType.create(Constants.CT_FHIR_XML, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); String resp = IOUtils.toString(status.getEntity().getContent()); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(null, ourLastPatient); assertEquals(200, status.getStatusLine().getStatusCode()); } @Test public void testValidateWithGet() throws Exception { ourOutcomeToReturn = new OperationOutcome(); ourOutcomeToReturn.addIssue().setDiagnostics("FOOBAR"); HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient/123/$validate"); HttpResponse status = ourClient.execute(httpGet); String resp = IOUtils.toString(status.getEntity().getContent()); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(200, status.getStatusLine().getStatusCode()); assertThat(resp, stringContainsInOrder("<OperationOutcome", "FOOBAR")); assertEquals(null, ourLastPatient); assertEquals("Patient", ourLastId.getResourceType()); assertEquals("123", ourLastId.getIdPart()); } @Test public void testValidateWithNoParsed() throws Exception { Organization org = new Organization(); org.addIdentifier().setValue("001"); org.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("resource").setResource(org); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Organization/$validate"); httpPost.setEntity(new StringEntity(ourCtx.newJsonParser().encodeResourceToString(params), ContentType.create(Constants.CT_FHIR_JSON, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); assertEquals(200, status.getStatusLine().getStatusCode()); assertThat(ourLastResourceBody, stringContainsInOrder("\"resourceType\":\"Organization\"", "\"identifier\"", "\"value\":\"001")); assertEquals(EncodingEnum.JSON, ourLastEncoding); } @Test public void testValidateWithOptions() throws Exception { Patient patient = new Patient(); patient.addIdentifier().setValue("001"); patient.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("resource").setResource(patient); params.addParameter().setName("profile").setValue(new StringType("http://foo")); params.addParameter().setName("mode").setValue(new StringType(ValidationModeEnum.CREATE.getCode())); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Patient/$validate"); httpPost.setEntity(new StringEntity(ourCtx.newXmlParser().encodeResourceToString(params), ContentType.create(Constants.CT_FHIR_XML, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); String resp = IOUtils.toString(status.getEntity().getContent()); ourLog.info(resp); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(200, status.getStatusLine().getStatusCode()); assertThat(resp, stringContainsInOrder("<OperationOutcome")); assertEquals("http://foo", ourLastProfile); assertEquals(ValidationModeEnum.CREATE, ourLastMode); } @Test public void testValidateWithResults() throws Exception { ourOutcomeToReturn = new OperationOutcome(); ourOutcomeToReturn.addIssue().setDiagnostics("FOOBAR"); Patient patient = new Patient(); patient.addIdentifier().setValue("001"); patient.addIdentifier().setValue("002"); Parameters params = new Parameters(); params.addParameter().setName("resource").setResource(patient); HttpPost httpPost = new HttpPost("http://localhost:" + ourPort + "/Patient/$validate"); httpPost.setEntity(new StringEntity(ourCtx.newXmlParser().encodeResourceToString(params), ContentType.create(Constants.CT_FHIR_XML, "UTF-8"))); HttpResponse status = ourClient.execute(httpPost); String resp = IOUtils.toString(status.getEntity().getContent()); IOUtils.closeQuietly(status.getEntity().getContent()); assertEquals(200, status.getStatusLine().getStatusCode()); assertThat(resp, stringContainsInOrder("<OperationOutcome", "FOOBAR")); } @AfterClass public static void afterClassClearContext() throws Exception { ourServer.stop(); TestUtil.clearAllStaticFieldsForUnitTest(); } @BeforeClass public static void beforeClass() throws Exception { ourPort = PortUtil.findFreePort(); ourServer = new Server(ourPort); PatientProvider patientProvider = new PatientProvider(); ServletHandler proxyHandler = new ServletHandler(); RestfulServer servlet = new RestfulServer(ourCtx); servlet.setResourceProviders(patientProvider, new OrganizationProvider()); ServletHolder servletHolder = new ServletHolder(servlet); proxyHandler.addServletWithMapping(servletHolder, "/*"); ourServer.setHandler(proxyHandler); ourServer.start(); PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager(5000, TimeUnit.MILLISECONDS); HttpClientBuilder builder = HttpClientBuilder.create(); builder.setConnectionManager(connectionManager); ourClient = builder.build(); } public static class OrganizationProvider implements IResourceProvider { @Override public Class<Organization> getResourceType() { return Organization.class; } @Validate() public MethodOutcome validate(@ResourceParam String theResourceBody, @ResourceParam EncodingEnum theEncoding) { ourLastResourceBody = theResourceBody; ourLastEncoding = theEncoding; return new MethodOutcome(new IdType("001")); } } public static class PatientProvider implements IResourceProvider { @Override public Class<Patient> getResourceType() { return Patient.class; } @Validate() public MethodOutcome validatePatient(@ResourceParam Patient thePatient, @IdParam(optional=true) IdType theId, @Validate.Mode ValidationModeEnum theMode, @Validate.Profile String theProfile) { ourLastPatient = thePatient; ourLastId = theId; IdType id; if (thePatient != null) { id = new IdType(thePatient.getIdentifier().get(0).getValue()); if (thePatient.getIdElement().isEmpty() == false) { id = thePatient.getIdElement(); } } else { id = new IdType("1"); } ourLastMode = theMode; ourLastProfile = theProfile; MethodOutcome outcome = new MethodOutcome(id.withVersion("002")); outcome.setOperationOutcome(ourOutcomeToReturn); return outcome; } } }