use of org.hl7.fhir.r4.model.Practitioner in project elexis-server by elexis.
the class ServiceRequestTest method createServiceRequest.
@Test
public void createServiceRequest() {
Condition problem = new Condition();
problem.setCode(new CodeableConcept().addCoding(new Coding("http://hl7.org/fhir/sid/icpc-2", "A04", "Müdigkeit")));
problem.setSubject(new Reference("Patient/" + AllTests.getTestDatabaseInitializer().getPatient().getId()));
problem.addCategory().addCoding(new Coding(ConditionCategory.PROBLEMLISTITEM.getSystem(), ConditionCategory.PROBLEMLISTITEM.toCode(), ConditionCategory.PROBLEMLISTITEM.getDisplay()));
MethodOutcome problemOutcome = client.create().resource(problem).execute();
Encounter encounter = new Encounter();
EncounterParticipantComponent participant = new EncounterParticipantComponent();
participant.setIndividual(new Reference("Practitioner/" + TestDatabaseInitializer.getMandant().getId()));
encounter.addParticipant(participant);
encounter.setPeriod(new Period().setStart(AllTests.getDate(LocalDate.of(2016, Month.DECEMBER, 1).atStartOfDay())).setEnd(AllTests.getDate(LocalDate.of(2016, Month.DECEMBER, 1).atTime(23, 59, 59))));
encounter.setSubject(new Reference("Patient/" + AllTests.getTestDatabaseInitializer().getPatient().getId()));
encounter.addDiagnosis().setCondition(new Reference(new IdType(problem.getResourceType().name(), problemOutcome.getId().getIdPart())));
encounter.addType(new CodeableConcept().addCoding(new Coding("www.elexis.info/encounter/type", "struct", "structured enconter")));
MethodOutcome encounterOutcome = client.create().resource(encounter).execute();
assertNotNull(encounterOutcome);
assertTrue(encounterOutcome.getCreated());
assertNotNull(encounterOutcome.getId());
// add subjective to the encounter
Observation subjective = new Observation();
Narrative narrative = new Narrative();
String divEncodedText = "Subjective\nTest".replaceAll("(\r\n|\r|\n)", "<br />");
narrative.setDivAsString(divEncodedText);
subjective.setText(narrative);
subjective.setSubject(new Reference("Patient/" + AllTests.getTestDatabaseInitializer().getPatient().getId()));
subjective.addCategory().addCoding(new Coding(IdentifierSystem.ELEXIS_SOAP.getSystem(), ObservationCategory.SOAP_SUBJECTIVE.getCode(), ObservationCategory.SOAP_SUBJECTIVE.getLocalized()));
subjective.setEncounter(new Reference(new IdType(encounter.getResourceType().name(), encounterOutcome.getId().getIdPart())));
MethodOutcome subjectiveOutcome = client.create().resource(subjective).execute();
assertTrue(subjectiveOutcome.getCreated());
// add procedure request to encounter
ServiceRequest serviceRequest = new ServiceRequest();
narrative = new Narrative();
divEncodedText = "Procedure\nTest".replaceAll("(\r\n|\r|\n)", "<br />");
narrative.setDivAsString(divEncodedText);
serviceRequest.setText(narrative);
serviceRequest.setSubject(new Reference("Patient/" + AllTests.getTestDatabaseInitializer().getPatient().getId()));
serviceRequest.setEncounter(new Reference(new IdType(encounter.getResourceType().name(), encounterOutcome.getId().getIdPart())));
MethodOutcome outcome = client.create().resource(serviceRequest).execute();
assertNotNull(outcome);
assertTrue(outcome.getCreated());
assertNotNull(outcome.getId());
ServiceRequest readServiceRequest = client.read().resource(ServiceRequest.class).withId(outcome.getId()).execute();
assertNotNull(readServiceRequest);
assertEquals(outcome.getId().getIdPart(), readServiceRequest.getIdElement().getIdPart());
assertEquals(serviceRequest.getSubject().getReferenceElement().getIdPart(), readServiceRequest.getSubject().getReferenceElement().getIdPart());
assertEquals(serviceRequest.getEncounter().getReferenceElement().getIdPart(), readServiceRequest.getEncounter().getReferenceElement().getIdPart());
assertTrue(readServiceRequest.getText().getDivAsString().contains("Test"));
// check if the consultation text has been updated
// search by patient and date
Bundle results = client.search().forResource(Encounter.class).where(Encounter.PATIENT.hasId(AllTests.getTestDatabaseInitializer().getPatient().getId())).and(Encounter.DATE.exactly().day(AllTests.getDate(LocalDate.of(2016, Month.DECEMBER, 1).atStartOfDay()))).returnBundle(Bundle.class).execute();
assertNotNull(results);
List<BundleEntryComponent> entries = results.getEntry();
assertFalse(entries.isEmpty());
Encounter readEncounter = (Encounter) entries.get(0).getResource();
assertNotNull(readEncounter);
assertEquals(readEncounter.getIdElement().getIdPart(), encounterOutcome.getId().getIdPart());
List<Identifier> identifier = readEncounter.getIdentifier();
String consultationId = null;
for (Identifier id : identifier) {
if (id.getSystem().equals(IdentifierSystem.ELEXIS_CONSID.getSystem())) {
consultationId = id.getValue();
}
}
assertNotNull(consultationId);
Optional<IEncounter> behandlung = AllTests.getModelService().load(consultationId, IEncounter.class);
assertTrue(behandlung.isPresent());
assertTrue(behandlung.get().getVersionedEntry().getHead().contains("Procedure"));
}
use of org.hl7.fhir.r4.model.Practitioner in project openmrs-module-fhir2 by openmrs.
the class PractitionerFhirResourceProviderTest method getPractitionerById_shouldReturnPractitioner.
@Test
public void getPractitionerById_shouldReturnPractitioner() {
IdType id = new IdType();
id.setValue(PRACTITIONER_UUID);
when(practitionerService.get(PRACTITIONER_UUID)).thenReturn(practitioner);
Practitioner result = resourceProvider.getPractitionerById(id);
assertThat(result.isResource(), is(true));
assertThat(result, notNullValue());
assertThat(result.getId(), notNullValue());
assertThat(result.getId(), equalTo(PRACTITIONER_UUID));
}
use of org.hl7.fhir.r4.model.Practitioner in project openmrs-module-fhir2 by openmrs.
the class PractitionerFhirResourceProviderTest method findPractitionersByAddressCity_shouldReturnMatchingBundleOfPractitioners.
@Test
public void findPractitionersByAddressCity_shouldReturnMatchingBundleOfPractitioners() {
StringAndListParam city = new StringAndListParam().addAnd(new StringParam(CITY));
when(practitionerService.searchForPractitioners(isNull(), isNull(), isNull(), isNull(), argThat(is(city)), isNull(), isNull(), isNull(), isNull(), isNull(), isNull())).thenReturn(new MockIBundleProvider<>(Collections.singletonList(practitioner), PREFERRED_PAGE_SIZE, COUNT));
IBundleProvider results = resourceProvider.searchForPractitioners(null, null, null, null, city, null, null, null, null, null, null);
List<IBaseResource> resultList = get(results);
assertThat(results, notNullValue());
assertThat(resultList.iterator().next().fhirType(), is(FhirConstants.PRACTITIONER));
assertThat(resultList, hasSize(greaterThanOrEqualTo(1)));
}
use of org.hl7.fhir.r4.model.Practitioner in project openmrs-module-fhir2 by openmrs.
the class PractitionerFhirResourceProviderTest method updatePractitioner_shouldUpdatePractitioner.
@Test
public void updatePractitioner_shouldUpdatePractitioner() {
when(practitionerService.update(eq(PRACTITIONER_UUID), any(org.hl7.fhir.r4.model.Practitioner.class))).thenReturn(practitioner);
MethodOutcome result = resourceProvider.updatePractitioner(new IdType().setValue(PRACTITIONER_UUID), Practitioner30_40.convertPractitioner(practitioner));
assertThat(result, notNullValue());
assertThat(result.getResource(), notNullValue());
assertThat(result.getResource().getIdElement().getIdPart(), equalTo(PRACTITIONER_UUID));
}
use of org.hl7.fhir.r4.model.Practitioner in project openmrs-module-fhir2 by openmrs.
the class PractitionerFhirResourceProviderTest method findPractitionersByAddressCountry_shouldReturnMatchingBundleOfPractitioners.
@Test
public void findPractitionersByAddressCountry_shouldReturnMatchingBundleOfPractitioners() {
StringAndListParam country = new StringAndListParam().addAnd(new StringParam(COUNTRY));
when(practitionerService.searchForPractitioners(isNull(), isNull(), isNull(), isNull(), isNull(), isNull(), isNull(), argThat(is(country)), isNull(), isNull(), isNull())).thenReturn(new MockIBundleProvider<>(Collections.singletonList(practitioner), PREFERRED_PAGE_SIZE, COUNT));
IBundleProvider results = resourceProvider.searchForPractitioners(null, null, null, null, null, null, null, country, null, null, null);
List<IBaseResource> resultList = get(results);
assertThat(results, notNullValue());
assertThat(resultList.iterator().next().fhirType(), is(FhirConstants.PRACTITIONER));
assertThat(resultList, hasSize(greaterThanOrEqualTo(1)));
}
Aggregations