diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java index 06ac9d17..6e18981b 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.java @@ -18,21 +18,8 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest( - classes = { - FhirProperties.class, - ObdsConditionMapper.class, - ObdsMedicationStatementMapper.class, - ObdsObservationMapper.class, - ObdsProcedureMapper.class, - ObdsPatientMapper.class, - ObdsConditionMapper.class - }) -@EnableConfigurationProperties() -public class ObdsConditionProcessorTest extends ObdsProcessorTest { + +class ObdsConditionProcessorTest extends ObdsProcessorTest { private static final Logger log = LoggerFactory.getLogger(ObdsConditionProcessorTest.class); diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java index fa56e91b..e4d28806 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.java @@ -19,21 +19,8 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest( - classes = { - FhirProperties.class, - ObdsConditionMapper.class, - ObdsMedicationStatementMapper.class, - ObdsObservationMapper.class, - ObdsProcedureMapper.class, - ObdsPatientMapper.class, - ObdsConditionMapper.class - }) -@EnableConfigurationProperties() -public class ObdsMedicationStatementProcessorTest extends ObdsProcessorTest { + +class ObdsMedicationStatementProcessorTest extends ObdsProcessorTest { private static final Logger log = LoggerFactory.getLogger(ObdsMedicationStatementProcessorTest.class); diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java index 5112bb6d..8211a138 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.java @@ -18,21 +18,8 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest( - classes = { - FhirProperties.class, - ObdsConditionMapper.class, - ObdsMedicationStatementMapper.class, - ObdsObservationMapper.class, - ObdsProcedureMapper.class, - ObdsPatientMapper.class, - ObdsConditionMapper.class - }) -@EnableConfigurationProperties() -public class ObdsObservationProcessorTest extends ObdsProcessorTest { + +class ObdsObservationProcessorTest extends ObdsProcessorTest { private static final Logger log = LoggerFactory.getLogger(ObdsObservationProcessorTest.class); diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.java index e483f8d8..c7ad9d0a 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.java @@ -7,15 +7,10 @@ import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; -import org.miracum.streams.ume.obdstofhir.FhirProperties; import org.miracum.streams.ume.obdstofhir.mapper.*; import org.miracum.streams.ume.obdstofhir.model.Tupel; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.boot.test.context.SpringBootTest; -@SpringBootTest(classes = {ObdsPatientMapper.class, FhirProperties.class}) -@EnableConfigurationProperties() class ObdsPatientMapperTest extends ObdsProcessorTest { private final ObdsPatientMapper onkoPatientMapper; diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java index 1c6ae525..9f16c1e1 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.java @@ -19,21 +19,8 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest( - classes = { - FhirProperties.class, - ObdsConditionMapper.class, - ObdsMedicationStatementMapper.class, - ObdsObservationMapper.class, - ObdsProcedureMapper.class, - ObdsPatientMapper.class, - ObdsConditionMapper.class - }) -@EnableConfigurationProperties() -public class ObdsProcedureProcessorTest extends ObdsProcessorTest { + +class ObdsProcedureProcessorTest extends ObdsProcessorTest { private static final Logger log = LoggerFactory.getLogger(ObdsProcedureProcessorTest.class); diff --git a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcessorTest.java b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcessorTest.java index f2aefd60..ab9e4b20 100644 --- a/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcessorTest.java +++ b/src/test/java/org/miracum/streams/ume/obdstofhir/processor/ObdsProcessorTest.java @@ -10,13 +10,33 @@ import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.BeforeAll; +import org.miracum.streams.ume.obdstofhir.FhirProperties; +import org.miracum.streams.ume.obdstofhir.mapper.ObdsConditionMapper; +import org.miracum.streams.ume.obdstofhir.mapper.ObdsMedicationStatementMapper; +import org.miracum.streams.ume.obdstofhir.mapper.ObdsObservationMapper; +import org.miracum.streams.ume.obdstofhir.mapper.ObdsPatientMapper; +import org.miracum.streams.ume.obdstofhir.mapper.ObdsProcedureMapper; import org.miracum.streams.ume.obdstofhir.model.MeldungExport; import org.miracum.streams.ume.obdstofhir.model.MeldungExportList; import org.miracum.streams.ume.obdstofhir.model.Tupel; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.boot.test.context.SpringBootTest; import org.springframework.util.ResourceUtils; +@SpringBootTest( + classes = { + FhirProperties.class, + ObdsConditionMapper.class, + ObdsMedicationStatementMapper.class, + ObdsObservationMapper.class, + ObdsProcedureMapper.class, + ObdsPatientMapper.class, + ObdsConditionMapper.class + }, + properties = {"app.version=0.0.0-test"}) +@EnableConfigurationProperties() public abstract class ObdsProcessorTest { private static final Logger log = LoggerFactory.getLogger(ObdsProcessorTest.class); diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.003_P.009_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.003_P.009_P.approved.fhir.json index faf50f6e..f7386d38 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.003_P.009_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.003_P.009_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Condition", "id": "a90ae2425e2d00616e04da0617c3617740c6f11363cc31df696eef9c06235616", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Condition-Primaerdiagnose" ] }, "extension": [ { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.approved.fhir.json index 3cea4958..5a6938c5 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.001_1.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Condition", "id": "a90ae2425e2d00616e04da0617c3617740c6f11363cc31df696eef9c06235616", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Condition-Primaerdiagnose" ] }, "extension": [ { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.approved.fhir.json index 534cd37b..2f41c5b1 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsConditionProcessorTest.mapCondition_withGivenAdtXml.002_1.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Condition", "id": "438ded78a47f0cc1921fd82237f9c5aaca5fa381ef2e5b4e65538087dd08d47c", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Condition-Primaerdiagnose" ] }, "code": { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_P.approved.fhir.json index c912cf2f..5bfa2132 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsMedicationStatementProcessorTest.mapMedicationStatement_withGivenAdtXml.008_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "MedicationStatement", "id": "3a6f9e3df20464337ff932ea9833acdfc92c3dd4afa444f2d1bf900627eec020", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] }, "extension": [ { @@ -74,7 +74,7 @@ "resourceType": "MedicationStatement", "id": "ea3bdcd0ac67e6103589595775d905b521ca5ce5370018e7b738e0806fde2821", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] }, "extension": [ { @@ -141,7 +141,7 @@ "resourceType": "MedicationStatement", "id": "3eb18c984d23b8a3bbf02fe2c2cb385c5f9ec86602c8fb2749dae763b1ad79e5", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] }, "extension": [ { @@ -208,7 +208,7 @@ "resourceType": "MedicationStatement", "id": "328a01d32491f06ac6ab8564d059cc313390645329af4539a2185cafb7c92c8d", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] }, "extension": [ { @@ -275,7 +275,7 @@ "resourceType": "MedicationStatement", "id": "d2aa80723b3d9fa509c68ef373c0963fb20bffe801aeecc72c81c806160ddd0f", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-MedicationStatement-Systemtherapie" ] }, "extension": [ { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.003_P.010_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.003_P.010_P.approved.fhir.json index c340ac58..be450db8 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.003_P.010_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.003_P.010_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Observation", "id": "4d8b7cdb7f7e81ecfeceafb96ac5c4390ae37be6b3b38f21ba315389dccb040b", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Histologie" ] }, "status": "final", @@ -60,7 +60,7 @@ "resourceType": "Observation", "id": "98af71c27bc7328e3d2e184eca58d8e402a246efda16516f5382efba6fda4e50", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Grading" ] }, "status": "final", @@ -110,7 +110,7 @@ "resourceType": "Observation", "id": "fc7cabc6beffc1605c782aa46a8a32df94aa5ef01b9c828e0671e2a643d0a2bc", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-TNMc" ] }, "status": "final", @@ -229,7 +229,7 @@ "resourceType": "Observation", "id": "555236ab41f9cc4e258c40c578b4ffbcb355055b8977706c983a3f338b6298b1", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-TNMp" ] }, "status": "final", @@ -348,7 +348,7 @@ "resourceType": "Observation", "id": "7b3181b44891bb7bba0f7ebb2511285589df40eb54a6073e390ed8550fc3ad8d", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -405,7 +405,7 @@ "resourceType": "Observation", "id": "aa0f0ae0f151114fd167c207b9216685244dd8a17739f01e2e3fda9cada6491a", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -462,7 +462,7 @@ "resourceType": "Observation", "id": "a0bac97bc3de3b565faba74d49c0b6eb43751b07fa5deda2f63b75eb8db66147", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -519,7 +519,7 @@ "resourceType": "Observation", "id": "302e6b7f1b82d044c443cd186dad3eb3470351b10d6e0808fefcf9c99c354753", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -576,7 +576,7 @@ "resourceType": "Observation", "id": "734471546228b0e9385706399d6eeef9860ab8cb67536c07a0d9712d7bea302d", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -633,7 +633,7 @@ "resourceType": "Observation", "id": "caeb45a6afede2449dbf70201c0f5db2670dd8a0092432cfaa4f4b46bb4b4b18", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-TodUrsache" ] }, "status": "final", diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.approved.fhir.json index 27cef30e..5d9e92aa 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsObservationProcessorTest.mapObservation_withGivenAdtXml.001_1.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Observation", "id": "4d8b7cdb7f7e81ecfeceafb96ac5c4390ae37be6b3b38f21ba315389dccb040b", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Histologie" ] }, "status": "final", @@ -60,7 +60,7 @@ "resourceType": "Observation", "id": "98af71c27bc7328e3d2e184eca58d8e402a246efda16516f5382efba6fda4e50", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Grading" ] }, "status": "final", @@ -110,7 +110,7 @@ "resourceType": "Observation", "id": "fc7cabc6beffc1605c782aa46a8a32df94aa5ef01b9c828e0671e2a643d0a2bc", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-TNMc" ] }, "status": "final", @@ -229,7 +229,7 @@ "resourceType": "Observation", "id": "555236ab41f9cc4e258c40c578b4ffbcb355055b8977706c983a3f338b6298b1", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-TNMp" ] }, "status": "final", @@ -298,7 +298,7 @@ "resourceType": "Observation", "id": "7b3181b44891bb7bba0f7ebb2511285589df40eb54a6073e390ed8550fc3ad8d", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -355,7 +355,7 @@ "resourceType": "Observation", "id": "aa0f0ae0f151114fd167c207b9216685244dd8a17739f01e2e3fda9cada6491a", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -412,7 +412,7 @@ "resourceType": "Observation", "id": "a0bac97bc3de3b565faba74d49c0b6eb43751b07fa5deda2f63b75eb8db66147", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -469,7 +469,7 @@ "resourceType": "Observation", "id": "302e6b7f1b82d044c443cd186dad3eb3470351b10d6e0808fefcf9c99c354753", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", @@ -526,7 +526,7 @@ "resourceType": "Observation", "id": "734471546228b0e9385706399d6eeef9860ab8cb67536c07a0d9712d7bea302d", "meta": { - "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER_ONKOSTAR.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Observation-Fernmetastasen" ] }, "status": "final", diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.003_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.003_P.approved.fhir.json index cff17cd9..f6e017e1 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.003_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.003_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Patient", "id": "cb07d6456df4982ff6b8de92fc018b0d5fc9dab1d1e303e97bd0474699111b52", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/PatientPseudonymisiert" ] }, "identifier": [ { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.007_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.007_P.approved.fhir.json index 773d68ce..e60b579a 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.007_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsPatientMapperTest.mapOnkoResourcesToPatient_withGivenAdtXml.007_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Patient", "id": "d9d6b458471f3ff3d65af6021a10d1112718a032eec4b843606616c5faa29937", "meta": { - "source": "999999.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "999999.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/PatientPseudonymisiert" ] }, "identifier": [ { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_P.approved.fhir.json index db5f3346..28cf710c 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.003_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Procedure", "id": "504712505573445ca38a9af0bb977864d031e5934d0525f203f6e2a62a0cbb4b", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -74,7 +74,7 @@ "resourceType": "Procedure", "id": "8e57241123584a00f73ad564f8ddee4779bb11be6a1672667c6f7c25923eef6d", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -151,7 +151,7 @@ "resourceType": "Procedure", "id": "8c3586c870a05d3f8c8a8ce5ffda1e537b4d548222bab351cfcc538fcad1e202", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -228,7 +228,7 @@ "resourceType": "Procedure", "id": "d0771f7da8853d501a94c7d1421087cc4f125bd9007204e0309487f1cd6d9ef1", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -305,7 +305,7 @@ "resourceType": "Procedure", "id": "a6150ae1b4d941d69ac855964d198a35159849d355bd6f076ac05d3ac1ef362a", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -382,7 +382,7 @@ "resourceType": "Procedure", "id": "cf69ef139af8c0f17ea6bd94c97fd055f905d1659ebca02f1c2a7f46360c8012", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -459,7 +459,7 @@ "resourceType": "Procedure", "id": "605b70af168defb122c3d4a752e4f8b3ec0795fba5e089c9dd69d4c29458f4c8", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -536,7 +536,7 @@ "resourceType": "Procedure", "id": "a0a09ec8b53171d0a469e64b36281548b3a3695f876a2a238bd62523396c0679", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { @@ -613,7 +613,7 @@ "resourceType": "Procedure", "id": "b23a84e352ad4c3be35628c95c8daf97c5b9397d8e6cc61c5e50632a244307fd", "meta": { - "source": "UKER.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "UKER.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Operation" ] }, "extension": [ { diff --git a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_P.approved.fhir.json b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_P.approved.fhir.json index de7a4cb3..f4adf182 100644 --- a/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_P.approved.fhir.json +++ b/src/test/java/snapshots/org/miracum/streams/ume/obdstofhir/processor/ObdsProcedureProcessorTest.mapProcedure_withGivenAdtXml.007_P.approved.fhir.json @@ -7,7 +7,7 @@ "resourceType": "Procedure", "id": "4a4b6d61ed9f40f3d3c809e2ca3844a234684e87fa711262acf14ced88533567", "meta": { - "source": "999999.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "999999.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Strahlentherapie" ] }, "extension": [ { @@ -71,7 +71,7 @@ "resourceType": "Procedure", "id": "2fc2717fbb9ec3e8d54ec4ffe4817efc8de93dfcbd34db55f20ca53986227dc5", "meta": { - "source": "999999.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "999999.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Strahlentherapie" ] }, "extension": [ { @@ -138,7 +138,7 @@ "resourceType": "Procedure", "id": "5cc816ec84696364d264533059889822137ee92a943ad945eab1dbac304475ce", "meta": { - "source": "999999.ONKOSTAR:obds-to-fhir:2.0.3", + "source": "999999.ONKOSTAR:obds-to-fhir:0.0.0-test", "profile": [ "http://dktk.dkfz.de/fhir/StructureDefinition/onco-core-Procedure-Strahlentherapie" ] }, "extension": [ {