Search in sources :

Example 96 with CodeType

use of org.hl7.fhir.dstu2016may.model.CodeType in project pathling by aehrc.

the class ImportTest method buildImportParameters.

@SuppressWarnings("SameParameterValue")
@Nonnull
Parameters buildImportParameters(@Nonnull final URL jsonURL, @Nonnull final ResourceType resourceType, @Nonnull final ImportMode mode) {
    final Parameters parameters = buildImportParameters(jsonURL, resourceType);
    final ParametersParameterComponent sourceParam = parameters.getParameter().stream().filter(p -> p.getName().equals("source")).findFirst().orElseThrow();
    sourceParam.addPart().setName("mode").setValue(new CodeType(mode.getCode()));
    return parameters;
}
Also used : Parameters(org.hl7.fhir.r4.model.Parameters) CodeType(org.hl7.fhir.r4.model.CodeType) ParametersParameterComponent(org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent) Nonnull(javax.annotation.Nonnull)

Example 97 with CodeType

use of org.hl7.fhir.dstu2016may.model.CodeType in project pathling by aehrc.

the class ImportTest method buildImportParameters.

@SuppressWarnings("SameParameterValue")
@Nonnull
Parameters buildImportParameters(@Nonnull final URL jsonURL, @Nonnull final ResourceType resourceType) {
    final Parameters parameters = new Parameters();
    final ParametersParameterComponent sourceParam = parameters.addParameter().setName("source");
    sourceParam.addPart().setName("resourceType").setValue(new CodeType(resourceType.toCode()));
    sourceParam.addPart().setName("url").setValue(new UrlType(jsonURL.toExternalForm()));
    return parameters;
}
Also used : Parameters(org.hl7.fhir.r4.model.Parameters) CodeType(org.hl7.fhir.r4.model.CodeType) UrlType(org.hl7.fhir.r4.model.UrlType) ParametersParameterComponent(org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent) Nonnull(javax.annotation.Nonnull)

Example 98 with CodeType

use of org.hl7.fhir.dstu2016may.model.CodeType in project pathling by aehrc.

the class DockerImageTest method importDataAndQuery.

@Test
void importDataAndQuery() throws JSONException {
    try {
        // Get the token endpoint from the CapabilityStatement.
        final CapabilityStatement capabilities = getCapabilityStatement();
        final String tokenUrl = capabilities.getRest().stream().findFirst().map(rest -> ((UriType) rest.getSecurity().getExtensionByUrl("http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris").getExtensionByUrl("token").getValue()).asStringValue()).orElseThrow();
        // Get an access token from the token endpoint.
        final HttpPost clientCredentialsGrant = new HttpPost(tokenUrl);
        final List<? extends NameValuePair> nameValuePairs = Arrays.asList(new BasicNameValuePair("grant_type", "client_credentials"), new BasicNameValuePair("client_id", CLIENT_ID), new BasicNameValuePair("client_secret", CLIENT_SECRET), new BasicNameValuePair("scope", REQUESTED_SCOPE));
        clientCredentialsGrant.setEntity(new UrlEncodedFormEntity(nameValuePairs));
        log.info("Requesting client credentials grant");
        final String accessToken;
        try (final CloseableHttpResponse response = (CloseableHttpResponse) httpClient.execute(clientCredentialsGrant)) {
            assertThat(response.getStatusLine().getStatusCode()).withFailMessage("Client credentials grant did not succeed").isEqualTo(200);
            final InputStream clientCredentialsStream = response.getEntity().getContent();
            final Gson gson = new GsonBuilder().setFieldNamingPolicy(FieldNamingPolicy.LOWER_CASE_WITH_UNDERSCORES).create();
            final ClientCredentialsResponse ccResponse = gson.fromJson(new InputStreamReader(clientCredentialsStream), ClientCredentialsResponse.class);
            accessToken = ccResponse.getAccessToken();
        }
        // Create a request to the $import operation, referencing the NDJSON files we have loaded into
        // the staging area.
        final InputStream requestStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("import/SystemTest/request.Parameters.json");
        assertThat(requestStream).isNotNull();
        final HttpPost importRequest = new HttpPost("http://localhost:8091/fhir/$import");
        importRequest.setEntity(new InputStreamEntity(requestStream));
        importRequest.addHeader("Content-Type", "application/json");
        importRequest.addHeader("Accept", "application/fhir+json");
        importRequest.addHeader("Authorization", "Bearer " + accessToken);
        log.info("Sending import request");
        final OperationOutcome importOutcome;
        try (final CloseableHttpResponse response = (CloseableHttpResponse) httpClient.execute(importRequest)) {
            final InputStream importResponseStream = response.getEntity().getContent();
            importOutcome = (OperationOutcome) jsonParser.parseResource(importResponseStream);
            assertThat(response.getStatusLine().getStatusCode()).withFailMessage(importOutcome.getIssueFirstRep().getDiagnostics()).isEqualTo(200);
        }
        assertThat(importOutcome.getIssueFirstRep().getDiagnostics()).isEqualTo("Data import completed successfully");
        log.info("Import completed successfully");
        final Parameters inParams = new Parameters();
        // Set subject resource parameter.
        final ParametersParameterComponent subjectResourceParam = new ParametersParameterComponent();
        subjectResourceParam.setName("subjectResource");
        subjectResourceParam.setValue(new CodeType("Patient"));
        // Add aggregation, number of patients.
        final ParametersParameterComponent aggregationParam = new ParametersParameterComponent();
        aggregationParam.setName("aggregation");
        aggregationParam.setValue(new StringType("count()"));
        // Add grouping, has the patient been diagnosed with a chronic disease?
        final ParametersParameterComponent groupingParam = new ParametersParameterComponent();
        groupingParam.setName("grouping");
        groupingParam.setValue(new StringType("reverseResolve(Condition.subject)" + ".code" + ".memberOf('http://snomed.info/sct?fhir_vs=ecl/" + "^ 32570581000036105 : " + "<< 263502005 = << 90734009')"));
        // Add filter, females only.
        final ParametersParameterComponent filterParam = new ParametersParameterComponent();
        filterParam.setName("filter");
        filterParam.setValue(new StringType("gender = 'female'"));
        inParams.getParameter().add(subjectResourceParam);
        inParams.getParameter().add(aggregationParam);
        inParams.getParameter().add(groupingParam);
        inParams.getParameter().add(filterParam);
        // Send a request to the `$aggregate` operation on the FHIR server.
        final String requestString = jsonParser.encodeResourceToString(inParams);
        final HttpPost queryRequest = new HttpPost("http://localhost:8091/fhir/Patient/$aggregate");
        queryRequest.setEntity(new StringEntity(requestString));
        queryRequest.addHeader("Content-Type", "application/fhir+json");
        queryRequest.addHeader("Accept", "application/fhir+json");
        queryRequest.addHeader("Authorization", "Bearer " + accessToken);
        log.info("Sending query request");
        try (final CloseableHttpResponse response = (CloseableHttpResponse) httpClient.execute(queryRequest)) {
            final int statusCode = response.getStatusLine().getStatusCode();
            final InputStream queryResponseStream = response.getEntity().getContent();
            if (statusCode == 200) {
                final StringWriter writer = new StringWriter();
                IOUtils.copy(queryResponseStream, writer, StandardCharsets.UTF_8);
                assertJson("responses/DockerImageTest/importDataAndQuery.Parameters.json", writer.toString());
            } else {
                captureLogs();
                final OperationOutcome opOutcome = (OperationOutcome) jsonParser.parseResource(queryResponseStream);
                assertEquals(200, statusCode, opOutcome.getIssueFirstRep().getDiagnostics());
            }
        }
    } catch (final Exception e) {
        captureLogs();
    } finally {
        stopContainer(dockerClient, fhirServerContainerId);
        fhirServerContainerId = null;
        getRuntime().removeShutdownHook(shutdownHook);
    }
}
Also used : HttpPost(org.apache.http.client.methods.HttpPost) BeforeEach(org.junit.jupiter.api.BeforeEach) CreateContainerResponse(com.github.dockerjava.api.command.CreateContainerResponse) Arrays(java.util.Arrays) UrlEncodedFormEntity(org.apache.http.client.entity.UrlEncodedFormEntity) URL(java.net.URL) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) GsonBuilder(com.google.gson.GsonBuilder) DockerClient(com.github.dockerjava.api.DockerClient) FhirContext(ca.uhn.fhir.context.FhirContext) JSONException(org.json.JSONException) CapabilityStatement(org.hl7.fhir.r4.model.CapabilityStatement) Gson(com.google.gson.Gson) StringType(org.hl7.fhir.r4.model.StringType) ExposedPort(com.github.dockerjava.api.model.ExposedPort) PortBinding(com.github.dockerjava.api.model.PortBinding) Binding(com.github.dockerjava.api.model.Ports.Binding) Tag(org.junit.jupiter.api.Tag) Awaitility.await(org.awaitility.Awaitility.await) StringEntity(org.apache.http.entity.StringEntity) StandardCharsets(java.nio.charset.StandardCharsets) Test(org.junit.jupiter.api.Test) IOUtils(org.apache.commons.io.IOUtils) List(java.util.List) Slf4j(lombok.extern.slf4j.Slf4j) HttpGet(org.apache.http.client.methods.HttpGet) ResultCallback(com.github.dockerjava.api.async.ResultCallback) UriType(org.hl7.fhir.r4.model.UriType) NameValuePair(org.apache.http.NameValuePair) HttpClients(org.apache.http.impl.client.HttpClients) BasicNameValuePair(org.apache.http.message.BasicNameValuePair) Assertions.assertNotNull(org.junit.jupiter.api.Assertions.assertNotNull) DockerClientBuilder(com.github.dockerjava.core.DockerClientBuilder) Getter(lombok.Getter) HttpUriRequest(org.apache.http.client.methods.HttpUriRequest) FieldNamingPolicy(com.google.gson.FieldNamingPolicy) DockerClientConfig(com.github.dockerjava.core.DockerClientConfig) HostConfig(com.github.dockerjava.api.model.HostConfig) HttpClient(org.apache.http.client.HttpClient) CloseableHttpResponse(org.apache.http.client.methods.CloseableHttpResponse) Frame(com.github.dockerjava.api.model.Frame) Assertions.assertJson(au.csiro.pathling.test.assertions.Assertions.assertJson) Assertions.assertEquals(org.junit.jupiter.api.Assertions.assertEquals) DefaultDockerClientConfig(com.github.dockerjava.core.DefaultDockerClientConfig) Nonnull(javax.annotation.Nonnull) IParser(ca.uhn.fhir.parser.IParser) Nullable(javax.annotation.Nullable) ParametersParameterComponent(org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent) StringWriter(java.io.StringWriter) IOException(java.io.IOException) InputStreamReader(java.io.InputStreamReader) File(java.io.File) TimeUnit(java.util.concurrent.TimeUnit) OperationOutcome(org.hl7.fhir.r4.model.OperationOutcome) AfterEach(org.junit.jupiter.api.AfterEach) Closeable(java.io.Closeable) Data(lombok.Data) Parameters(org.hl7.fhir.r4.model.Parameters) InputStreamEntity(org.apache.http.entity.InputStreamEntity) CodeType(org.hl7.fhir.r4.model.CodeType) Runtime.getRuntime(java.lang.Runtime.getRuntime) Builder(com.github.dockerjava.okhttp.OkDockerHttpClient.Builder) OkDockerHttpClient(com.github.dockerjava.okhttp.OkDockerHttpClient) InputStream(java.io.InputStream) HttpPost(org.apache.http.client.methods.HttpPost) Parameters(org.hl7.fhir.r4.model.Parameters) InputStreamReader(java.io.InputStreamReader) GsonBuilder(com.google.gson.GsonBuilder) StringType(org.hl7.fhir.r4.model.StringType) InputStream(java.io.InputStream) Gson(com.google.gson.Gson) UrlEncodedFormEntity(org.apache.http.client.entity.UrlEncodedFormEntity) JSONException(org.json.JSONException) IOException(java.io.IOException) UriType(org.hl7.fhir.r4.model.UriType) InputStreamEntity(org.apache.http.entity.InputStreamEntity) StringEntity(org.apache.http.entity.StringEntity) StringWriter(java.io.StringWriter) OperationOutcome(org.hl7.fhir.r4.model.OperationOutcome) BasicNameValuePair(org.apache.http.message.BasicNameValuePair) CapabilityStatement(org.hl7.fhir.r4.model.CapabilityStatement) CloseableHttpResponse(org.apache.http.client.methods.CloseableHttpResponse) CodeType(org.hl7.fhir.r4.model.CodeType) ParametersParameterComponent(org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent) Test(org.junit.jupiter.api.Test)

Example 99 with CodeType

use of org.hl7.fhir.dstu2016may.model.CodeType in project pathling by aehrc.

the class DefaultTerminologyServiceTest method testTranslateForValidAndInvalidCodings.

@Test
void testTranslateForValidAndInvalidCodings() {
    // Response bundle:
    // [1]  CODING1_VERSION1 -> None
    // [2]  CODING2_VERSION1 -> { equivalent: CODING3_VERSION1, wider: CODING1_VERSION1}
    final Bundle responseBundle = new Bundle().setType(BundleType.BATCHRESPONSE);
    // entry with no mapping
    final Parameters noTranslation = new Parameters().addParameter("result", false);
    responseBundle.addEntry().setResource(noTranslation).getResponse().setStatus("200");
    // entry with two mappings
    final Parameters withTranslation = new Parameters().addParameter("result", true);
    final ParametersParameterComponent equivalentMatch = withTranslation.addParameter().setName("match");
    equivalentMatch.addPart().setName("equivalence").setValue(new CodeType("equivalent"));
    equivalentMatch.addPart().setName("concept").setValue(CODING3_VERSION1.toCoding());
    final ParametersParameterComponent widerMatch = withTranslation.addParameter().setName("match");
    widerMatch.addPart().setName("equivalence").setValue(new CodeType("wider"));
    widerMatch.addPart().setName("concept").setValue(CODING1_VERSION1.toCoding());
    responseBundle.addEntry().setResource(withTranslation).getResponse().setStatus("200");
    when(terminologyClient.batch(any())).thenReturn(responseBundle);
    final ConceptTranslator actualTranslator = terminologyService.translate(Arrays.asList(CODING1_VERSION1, CODING2_VERSION1, new SimpleCoding(SYSTEM1, null), new SimpleCoding(null, "code1"), new SimpleCoding(null, null), null), "uuid:concept-map", false, Collections.singletonList(ConceptMapEquivalence.EQUIVALENT));
    assertEquals(ConceptTranslatorBuilder.empty().put(CODING2_VERSION1, CODING3_VERSION1.toCoding()).build(), actualTranslator);
    // expected request bundle
    final Bundle requestBundle = new Bundle().setType(BundleType.BATCH);
    requestBundle.addEntry().setResource(new Parameters().addParameter("url", new UriType("uuid:concept-map")).addParameter("reverse", false).addParameter("coding", CODING1_VERSION1.toCoding())).getRequest().setMethod(HTTPVerb.POST).setUrl("ConceptMap/$translate");
    requestBundle.addEntry().setResource(new Parameters().addParameter("url", new UriType("uuid:concept-map")).addParameter("reverse", false).addParameter("coding", CODING2_VERSION1.toCoding())).getRequest().setMethod(HTTPVerb.POST).setUrl("ConceptMap/$translate");
    verify(terminologyClient).batch(deepEq(requestBundle));
    verifyNoMoreInteractions(terminologyClient);
}
Also used : Parameters(org.hl7.fhir.r4.model.Parameters) SimpleCoding(au.csiro.pathling.fhirpath.encoding.SimpleCoding) Bundle(org.hl7.fhir.r4.model.Bundle) CodeType(org.hl7.fhir.r4.model.CodeType) ParametersParameterComponent(org.hl7.fhir.r4.model.Parameters.ParametersParameterComponent) UriType(org.hl7.fhir.r4.model.UriType) Test(org.junit.jupiter.api.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest)

Example 100 with CodeType

use of org.hl7.fhir.dstu2016may.model.CodeType in project kindling by HL7.

the class SpreadSheetReloader method parseStatus.

private void parseStatus(Element ed, String value) {
    ed.removeExtension(BuildExtensions.EXT_FMM_LEVEL);
    ed.removeExtension(BuildExtensions.EXT_STANDARDS_STATUS);
    ed.removeExtension(BuildExtensions.EXT_NORMATIVE_VERSION);
    if (!Utilities.noString(value) && value.contains("/")) {
        String[] p = value.split("\\/");
        if (Utilities.noString(p[0].trim())) {
            ed.removeExtension(BuildExtensions.EXT_FMM_LEVEL);
        } else {
            ed.addExtension(BuildExtensions.EXT_FMM_LEVEL, new IntegerType(p[0]));
        }
        if (p[1].contains(";")) {
            ed.addExtension(BuildExtensions.EXT_STANDARDS_STATUS, new CodeType(p[1].substring(0, p[1].indexOf(";"))));
            ed.addExtension(BuildExtensions.EXT_NORMATIVE_VERSION, new CodeType(p[1].substring(p[1].indexOf("from=") + 5)));
        } else {
            ed.addExtension(BuildExtensions.EXT_STANDARDS_STATUS, new CodeType(p[1]));
        }
    }
    sortExtensions(ed);
}
Also used : IntegerType(org.hl7.fhir.r5.model.IntegerType) CodeType(org.hl7.fhir.r5.model.CodeType)

Aggregations

CodeType (org.hl7.fhir.r5.model.CodeType)52 ArrayList (java.util.ArrayList)31 CodeType (org.hl7.fhir.r4.model.CodeType)28 XhtmlNode (org.hl7.fhir.utilities.xhtml.XhtmlNode)20 FHIRException (org.hl7.fhir.exceptions.FHIRException)18 CodeType (org.hl7.fhir.r4b.model.CodeType)17 Date (java.util.Date)15 CodeType (org.hl7.fhir.dstu3.model.CodeType)15 NotImplementedException (org.apache.commons.lang3.NotImplementedException)12 File (java.io.File)11 Extension (org.hl7.fhir.dstu3.model.Extension)10 XmlParser (org.hl7.fhir.r5.formats.XmlParser)10 StringType (org.hl7.fhir.r5.model.StringType)10 ValueSet (org.hl7.fhir.r5.model.ValueSet)10 Coding (org.hl7.fhir.r4.model.Coding)9 Coding (org.hl7.fhir.dstu3.model.Coding)8 FileOutputStream (java.io.FileOutputStream)7 List (java.util.List)7 Parameters (org.hl7.fhir.r4.model.Parameters)7 CodeSystem (org.hl7.fhir.r5.model.CodeSystem)7