FHIR Frog AU Core Conformance Tests
0.1.0 - draft
FHIR Frog AU Core Conformance Tests, published by FHIR Frog. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/jgsuess/au-core-tests/ and changes regularly. See the Directory of published versions
Covers the SHALL-level AU Core Immunization (2.0.0) requirements: read, search by patient, the SHALL search-combo patient+status, must-support element presence (including FHIRPath presence checks for the vaccineCode.coding:amtVaccineCode and vaccineCode.coding:airVaccineCode slices), and profile conformance validation. Reuses the shared au-core-patient-conformant fixture for the patient reference. Mirrors the SHALL subset of au-fhir-core-inferno's ImmunizationGroup (immunization_read_test, immunization_patient_search_test, immunization_patient_status_search_test, immunization_must_support_test, immunization_validation_test). Also includes standalone (MAY-level) SearchByDate and SearchByVaccineCode tests since date/status/vaccine-code/patient search were explicitly named in fhirfrog/au-core-compiler#11 — following the precedent set in #7/#8 of demonstrating an explicitly-called-out MAY/SHOULD-level mechanism alongside the SHALL-only core. The remaining SHOULD/MAY-level combinatorial coverage (patient+date, patient+vaccine-code, vaccine-code multiple-or, date multiple-and, the DVA/IHI/Medicare patient identifier chain searches, and the reference-resolution test) is not replicated here; see fhirfrog/au-core-compiler#6 for the original SHALL-only scope rationale. The amtVaccineCode and airVaccineCode slices are discriminated in the AU Core StructureDefinition by a pattern/$this rule bound to the amt-vaccine-1 and australian-immunisation-register-vaccine-1 ValueSets respectively rather than by a fixed coding.system element; in practice AMT codes are carried on the http://snomed.info/sct system and AIR codes on the https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats system (confirmed against the published au-core-immunization example Immunization-covid-1), so slice presence is asserted via a coding.where(system=...) FHIRPath check against those two systems.
patient-fixture: au-core-patient-conformant (created before, and removed after, the run)immunization-fixture: au-core-immunization-conformant (created before, and removed after, the run)${patientId} = Patient.id of patient-fixture${immunizationId} = Immunization.id of immunization-fixtureREAD Immunization/${immunizationId}
response = okay
SEARCH Immunization?patient=${patientId}
response = okay
expression = Bundle.entry.resource.ofType(Immunization).note.text.where($this.contains('Frog')).exists()
SEARCH Immunization?patient=${patientId}&status=completed
response = okay
expression = Bundle.entry.resource.ofType(Immunization).status.where($this = 'completed').exists()
SEARCH Immunization?date=ge2020-01-01
response = okay
expression = Bundle.entry.resource.ofType(Immunization).note.text.exists($this.contains('Frog'))
SEARCH Immunization?vaccine-code=https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats|COMIRN
response = okay
expression = Bundle.entry.resource.ofType(Immunization).vaccineCode.coding.where(code = 'COMIRN').exists()
READ Immunization/${immunizationId}
expression = Immunization.status.exists()
expression = Immunization.vaccineCode.exists()
expression = Immunization.vaccineCode.coding.where(system = 'http://snomed.info/sct').exists()
expression = Immunization.vaccineCode.coding.where(system = 'https://www.humanservices.gov.au/organisations/health-professionals/enablers/air-vaccine-code-formats').exists()
expression = Immunization.patient.exists()
expression = Immunization.occurrence.ofType(dateTime).exists()
expression = Immunization.primarySource.exists()
expression = Immunization.lotNumber.exists()
expression = Immunization.note.exists()
READ Immunization/${immunizationId}
validateProfileId = http://hl7.org.au/fhir/core/StructureDefinition/au-core-immunization