plan_executor 1.0.2 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +3 -2
- data/Gemfile +3 -6
- data/Gemfile.lock +52 -48
- data/README.md +2 -2
- data/fixtures/attachment/ccda_pdf.pdf +0 -0
- data/fixtures/attachment/ccda_pdf_base64.txt +2489 -0
- data/fixtures/attachment/ccda_structured.xml +1976 -0
- data/fixtures/attachment/ccda_unstructured.xml +2563 -0
- data/fixtures/daf/conformance-daf-query-responder.xml +2024 -193
- data/fixtures/diagnostic_report/diagnosticreport-familyhistory-create.xml +67 -0
- data/fixtures/diagnostic_report/diagnosticreport-hlatyping-create.xml +64 -0
- data/fixtures/diagnostic_report/diagnosticreport-pathologyreport-create.xml +312 -0
- data/fixtures/diagnostic_report/dr-100.xml +3 -3
- data/fixtures/diagnostic_report/dr-200.xml +5 -5
- data/fixtures/diagnostic_report/dr-300.xml +3 -3
- data/fixtures/diagnostic_report/dr-400.xml +3 -3
- data/fixtures/{diagnostic_order → diagnostic_request}/do-100.xml +57 -64
- data/fixtures/diagnostic_request/do-200.xml +73 -0
- data/fixtures/{diagnostic_order → diagnostic_request}/do-300.xml +73 -91
- data/{lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder → fixtures/diagnostic_request}/do-400.xml +74 -88
- data/fixtures/family_member_history/familymemberhistory-familyhistory-create.xml +27 -0
- data/fixtures/financial/claim-example-oral-average.xml +199 -0
- data/fixtures/financial/claim-example-oral-orthoplan.xml +298 -0
- data/fixtures/financial/claim-example.xml +98 -0
- data/fixtures/financial/eligibilityrequest-example.xml +40 -0
- data/fixtures/observation/obs-401.xml +7 -17
- data/fixtures/observation/obs-402.xml +7 -17
- data/fixtures/observation/obs-403.xml +4 -29
- data/fixtures/observation/obs-407.xml +4 -11
- data/fixtures/observation/observation-datawarehouse-create.xml +72 -0
- data/fixtures/observation/observation-familyhistory-create.xml +61 -0
- data/fixtures/observation/observation-germline-create.xml +72 -0
- data/fixtures/observation/observation-register-create.xml +72 -0
- data/fixtures/patch/medicationrequest-simple.xml +16 -0
- data/fixtures/patient/patient-example-updated.xml +1 -7
- data/fixtures/patient/patient-example-us-extensions.xml +119 -0
- data/fixtures/patient/patient-example.xml +46 -27
- data/fixtures/patient/patient-familyhistory-create.xml +45 -0
- data/fixtures/patient/patient-register-create.xml +47 -0
- data/fixtures/practitioner/practitioner-register-create.xml +32 -0
- data/fixtures/record/condition-example-f201-fever.xml +54 -49
- data/fixtures/record/condition-example-f205-infection.xml +16 -15
- data/fixtures/record/diagnosticreport-example-f201-brainct.xml +45 -18
- data/fixtures/record/encounter-example-f201-20130404.xml +42 -15
- data/fixtures/record/encounter-example-f202-20130128.xml +57 -15
- data/fixtures/record/observation-example-f202-temperature.xml +85 -60
- data/fixtures/record/organization-example-f201-aumc.xml +87 -4
- data/fixtures/record/organization-example-f203-bumc.xml +53 -4
- data/fixtures/record/patient-example-f201-roel.xml +108 -8
- data/fixtures/record/practitioner-example-f201-ab.xml +73 -14
- data/fixtures/record/procedure-example-f201-tpf.xml +39 -9
- data/fixtures/scheduling/slot-simple.xml +1 -1
- data/fixtures/sequence/sequence-register-create.xml +31 -0
- data/fixtures/specimen/spec-100.xml +8 -8
- data/fixtures/specimen/spec-400.xml +11 -11
- data/fixtures/specimen/spec-uslab-example1.xml +11 -11
- data/fixtures/specimen/specimen-familyhistory-create.xml +54 -0
- data/fixtures/specimen/specimen-register-create.xml +49 -0
- data/fixtures/terminology/codesystem-data-types.json +230 -0
- data/fixtures/terminology/codesystem-resource-types.json +482 -0
- data/fixtures/terminology/codesystem-simple.xml +129 -0
- data/fixtures/terminology/conceptmap-example.xml +141 -0
- data/fixtures/terminology/v2-codesystem.json +1297 -0
- data/fixtures/terminology/v2-valueset.json +16 -0
- data/fixtures/terminology/valueset-defined-types.json +25 -0
- data/fixtures/terminology/valueset-example.xml +111 -0
- data/fixtures/validation/observation.profile.xml +1534 -253
- data/fixtures/validation/observations/observation-example.xml +66 -0
- data/lib/FHIR_structure.json +129 -82
- data/lib/daf_resource_generator.rb +7 -7
- data/lib/data/resources.rb +50 -30
- data/lib/ext/client.rb +2 -2
- data/lib/plan_executor.rb +6 -1
- data/lib/resource_generator.rb +413 -212
- data/lib/tasks/tasks.rake +151 -20
- data/lib/tests/assertions.rb +24 -18
- data/lib/tests/base_test.rb +17 -3
- data/lib/tests/suites/argonaut_provider_connectathon_test.rb +234 -0
- data/lib/tests/suites/base_suite.rb +7 -3
- data/lib/tests/suites/connectathon_attachment_track_test.rb +124 -0
- data/lib/tests/suites/connectathon_audit_track.rb +113 -69
- data/lib/tests/suites/connectathon_care_plan_track.rb +237 -0
- data/lib/tests/suites/connectathon_fetch_patient_record.rb +40 -39
- data/lib/tests/suites/connectathon_financial_track.rb +231 -23
- data/lib/tests/suites/connectathon_genomics_track_test.rb +255 -0
- data/lib/tests/suites/connectathon_lab_order_track.rb +131 -104
- data/lib/tests/suites/connectathon_patch_track.rb +125 -0
- data/lib/tests/suites/connectathon_patient_track.rb +75 -68
- data/lib/tests/suites/connectathon_profile_validation.rb +9 -8
- data/lib/tests/suites/connectathon_scheduling_track.rb +127 -70
- data/lib/tests/suites/connectathon_terminology_track.rb +211 -34
- data/lib/tests/suites/daf_profiles_test.rb +112 -72
- data/lib/tests/suites/format_test.rb +113 -255
- data/lib/tests/suites/history_test.rb +72 -68
- data/lib/tests/suites/read_test.rb +31 -27
- data/lib/tests/suites/resource_test.rb +283 -85
- data/lib/tests/suites/search_test.rb +5 -3
- data/lib/tests/suites/search_test_robust.rb +8 -76
- data/lib/tests/suites/sprinkler_search_test.rb +104 -84
- data/lib/tests/suites/suite_engine.rb +17 -23
- data/lib/tests/suites/transaction_test.rb +117 -174
- data/lib/tests/testscripts/base_testscript.rb +425 -189
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-base-client-id-json.xml +517 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-base-client-id-xml.xml +517 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-bonus-client-id-json.xml +648 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-bonus-client-id-xml.xml +648 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/README.html +68 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-base-server-id-json.xml +515 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-base-server-id-xml.xml +515 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-bonus-server-id-json.xml +645 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-bonus-server-id-xml.xml +642 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/capabilities/PatientCapabilityStatement.xml +43 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers.json +5 -10
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers.xml +5 -5
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers.json +5 -10
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers.xml +4 -5
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-PeterChalmers.json +96 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-PeterChalmers.xml +103 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-bonus-PeterChalmers.json +104 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-bonus-PeterChalmers.xml +108 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers.json +6 -10
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers.xml +6 -5
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers-min.json +1 -3
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers-min.xml +0 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers.json +7 -11
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers.xml +5 -5
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers-min.json +2 -4
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers-min.xml +1 -1
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers.json +7 -11
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers.xml +8 -7
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/01-RegisterPatient/connectathon-14-patient-fhirclient-01-register-client-id-xml.xml +306 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/01-RegisterPatient/connectathon-14-patient-fhirclient-01-register-server-id-xml.xml +317 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/02-PatientUpdate/connectathon-14-patient-fhirclient-02-update-client-id-xml.xml +346 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/02-PatientUpdate/connectathon-14-patient-fhirclient-02-update-server-id-xml.xml +385 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/capabilities/PatientCapabilityStatement.json +50 -0
- data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient/_reference/conformance/PatientConformance.xml → scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/capabilities/PatientCapabilityStatement.xml} +10 -2
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-client-id.json +21 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-client-id.xml +15 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-server-id.json +20 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-server-id.xml +14 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-client-id.json +21 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-client-id.xml +15 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-server-id.json +20 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-server-id.xml +14 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-client-id-json.xml +262 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-client-id-xml.xml +262 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-server-id-json.xml +273 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-server-id-xml.xml +273 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-client-id-json.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-client-id-xml.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-server-id-json.xml +326 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-server-id-xml.xml +326 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-client-id-json.xml +247 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-client-id-xml.xml +247 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-server-id-json.xml +282 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-server-id-xml.xml +281 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-client-id-json.xml +330 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-client-id-xml.xml +330 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-server-id-json.xml +366 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-server-id-xml.xml +366 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-client-id-json.xml +527 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-client-id-xml.xml +527 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-server-id-json.xml +519 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-server-id-xml.xml +519 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-client-id-json.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-client-id-xml.xml +290 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-server-id-json.xml +288 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-server-id-xml.xml +288 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-client-id-json.xml +252 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-client-id-xml.xml +252 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-server-id-json.xml +284 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-server-id-xml.xml +284 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-client-id-json.xml +897 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-client-id-xml.xml +897 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-server-id-json.xml +963 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-server-id-xml.xml +963 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/capabilities/PatientCapabilityStatement.json +50 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/capabilities/PatientCapabilityStatement.xml +42 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-client-id.json +86 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-client-id.xml +62 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-server-id.json +85 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-server-id.xml +61 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-client-id.json +86 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-client-id.xml +62 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-server-id.json +86 -0
- data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-server-id.xml +62 -0
- data/lib/tests/testscripts/scripts/spec/_reference/resources/patient-example-update.json +145 -0
- data/lib/tests/testscripts/scripts/spec/_reference/resources/patient-example.json +146 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-history.xml +191 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-multisystem.xml +190 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-readtest.xml +178 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-rule.xml +266 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-search.xml +177 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example-update.xml +163 -0
- data/lib/tests/testscripts/scripts/spec/testscript-example.xml +228 -0
- data/lib/tests/testscripts/testscript_engine.rb +36 -22
- data/logs/.keep +0 -0
- data/plan_executor.gemspec +11 -3
- data/test/test_helper.rb +3 -3
- data/test/unit/fixtures_test.rb +24 -24
- data/test/unit/metadata_test.rb +19 -9
- data/test/unit/resource_generator_test.rb +20 -0
- metadata +244 -249
- data/fixtures/diagnostic_order/do-200.xml +0 -121
- data/fixtures/diagnostic_order/do-400.xml +0 -88
- data/fixtures/financial/claim-example-average.xml +0 -168
- data/fixtures/financial/claim-example-simple.xml +0 -67
- data/fixtures/order/order-100.xml +0 -61
- data/fixtures/order/order-200.xml +0 -61
- data/fixtures/order/order-300.xml +0 -61
- data/fixtures/order/order-400.xml +0 -61
- data/fixtures/order_response/ordresp-100.xml +0 -79
- data/fixtures/order_response/ordresp-110.xml +0 -79
- data/fixtures/order_response/ordresp-200.xml +0 -79
- data/fixtures/order_response/ordresp-210.xml +0 -79
- data/fixtures/order_response/ordresp-300.xml +0 -79
- data/fixtures/order_response/ordresp-310.xml +0 -79
- data/fixtures/order_response/ordresp-400.xml +0 -79
- data/fixtures/order_response/ordresp-410.xml +0 -79
- data/fixtures/patient/patient-example-us-extensions(us01).xml +0 -81
- data/fixtures/patient/patient-format-example.xml +0 -101
- data/fixtures/validation/observations/observation-example(example).xml +0 -50
- data/lib/tests/suites/argonaut_resprint_1_test.rb +0 -260
- data/lib/tests/suites/argonaut_resprint_2_test.rb +0 -369
- data/lib/tests/suites/argonaut_resprint_3_test.rb +0 -309
- data/lib/tests/suites/argonaut_sprint_1_test.rb +0 -187
- data/lib/tests/suites/argonaut_sprint_2_test.rb +0 -115
- data/lib/tests/suites/argonaut_sprint_3_test.rb +0 -208
- data/lib/tests/suites/argonaut_sprint_4_test.rb +0 -335
- data/lib/tests/suites/argonaut_sprint_5_test.rb +0 -196
- data/lib/tests/suites/argonaut_sprint_6_test.rb +0 -243
- data/lib/tests/suites/argonaut_sprint_7_test.rb +0 -161
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-json.xml +0 -348
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-xml.xml +0 -348
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-json.xml +0 -420
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-xml.xml +0 -420
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/README.html +0 -68
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-json.xml +0 -352
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-xml.xml +0 -352
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-json.xml +0 -421
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-xml.xml +0 -421
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/C-CDA_R2-1_CCD-ussg.xml +0 -3414
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A1-empty-on-instance.xml +0 -9
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A2-empty-by-ref.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A3-empty-by-identifier.xml +0 -13
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A4-empty-by-contained.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B1-CCDA-on-instance.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B2-CCDA-by-ref.xml +0 -21
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B3-CCDA-by-identifier.xml +0 -19
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B4-CCDA-by-contained.xml +0 -21
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaire-sdc-profile-example-ussg-fht.xml +0 -3905
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-CCDA.xml +0 -190
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-empty.xml +0 -177
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/track11-sdc-prepop-xml.xml +0 -142
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite1-expand-client-id.xml +0 -925
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite2-expand-filter-client-id.xml +0 -930
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite1-expand-server-id.xml +0 -953
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite2-expand-filter-server-id.xml +0 -958
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-loinc-lookup-xml.xml +0 -224
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-snomed-lookup-xml.xml +0 -224
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/README.html +0 -85
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Translate/track2-ts-suite6-translate-xml.xml +0 -224
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite3-validate-code-client-id.xml +0 -1807
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite4-validate-code-client-id.xml +0 -714
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite3-validate-code-server-id.xml +0 -1835
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite4-validate-code-server-id.xml +0 -742
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ConceptMapSuite6Conformance.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite1Conformance.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite2Conformance.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite3Conformance.xml +0 -14
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite4Conformance.xml +0 -14
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite5Conformance.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-a.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-b.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-a.xml +0 -13
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-b.xml +0 -13
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-a.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-b.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-2.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-3.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-2.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-3.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-2.xml +0 -14
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-3.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-expand-min.xml +0 -47
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-filter-min.xml +0 -23
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-expand-min.xml +0 -132
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-filter-min.xml +0 -38
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-expand-min.xml +0 -252
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-filter-min.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-expand-min.xml +0 -57
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-filter-min.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-expand-min.xml +0 -347
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-filter-min.xml +0 -33
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-expand-min.xml +0 -637
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-filter-min.xml +0 -33
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-3-filter-min.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-loinc-min.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-snomed-min.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-invalid-min.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-valid-min.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-invalid-min.xml +0 -10
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-valid-min.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/translate-conceptmap-min.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-1.xml +0 -55
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-2.xml +0 -122
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-3.xml +0 -222
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-4.xml +0 -65
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-1.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-2.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-3.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/translate-conceptmap-case-1.xml +0 -145
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/conformance/DecisionSupportServiceModule-Evaluate.xml +0 -17
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-request-payload.xml +0 -26
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-payload.xml +0 -332
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-request-payload.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-payload.xml +0 -20
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-request-payload.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-payload.xml +0 -332
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-request-payload.xml +0 -28
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-min-payload.xml +0 -7
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-payload.xml +0 -8
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-request-payload.xml +0 -176
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload-min.xml +0 -32
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload.xml +0 -80
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-cdc-immunization.xml +0 -290
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-gao-profile.xml +0 -110
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/Client_Assigned_Id/TestScript_FHIR-Genomics.xml +0 -170
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-1.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-2.xml +0 -31
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Actors.png +0 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder100-xml.xml +0 -590
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder200-xml.xml +0 -587
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder300-xml.xml +0 -612
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder400-xml.xml +0 -635
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Peer-to-Peer/track7-laborder100-peer2peer-xml.xml +0 -752
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Thumbs.db +0 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/LabOrderLabReport-CreateDeleteReadUpdate.xml +0 -187
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/html.xslt +0 -45
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100-update.xml +0 -64
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100.xml +0 -64
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200-update.xml +0 -121
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200.xml +0 -121
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300-update.xml +0 -91
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300.xml +0 -91
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-400-update.xml +0 -88
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-100.xml +0 -96
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-200.xml +0 -125
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-300.xml +0 -132
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-400.xml +0 -121
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-100.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-101.xml +0 -58
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-200.xml +0 -125
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-300.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-301.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-302.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-303.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-304.xml +0 -106
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-400.xml +0 -87
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-401.xml +0 -95
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-402.xml +0 -95
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-403.xml +0 -84
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-404.xml +0 -84
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-405.xml +0 -83
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-406.xml +0 -83
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-407.xml +0 -70
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-408.xml +0 -84
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-uslab-example5.xml +0 -102
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-100.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-200.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-300.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-400.xml +0 -61
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-100.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-110.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-200.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-210.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-300.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-310.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-400.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-410.xml +0 -79
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Organization/org-uslab-example3.xml +0 -49
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Patient/patient-uslab-example1.xml +0 -44
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example1.xml +0 -18
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example3.xml +0 -36
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/Thumbs.db +0 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-100.xml +0 -65
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-400.xml +0 -70
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-uslab-example1.xml +0 -82
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 1 Document.txt +0 -122
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 2 Document.txt +0 -103
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 3 Document.txt +0 -201
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 4 Document.txt +0 -310
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/MedicationStatementCreate.xml +0 -11
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/PatientSearchType.xml +0 -15
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-create.json +0 -39
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-patch.json +0 -3
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json-if-match.xml +0 -321
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json.xml +0 -303
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-peer2peer-patient-json.xml +0 -235
- data/test/fixtures/testscript-example.xml +0 -202
- data/test/fixtures/testscript-history.xml +0 -143
- data/test/fixtures/testscript-readtest.xml +0 -272
- data/test/fixtures/testscript-search.xml +0 -282
- data/test/fixtures/testscript-update.xml +0 -147
- data/test/unit/argonaut_sprint6_test.rb +0 -31
- data/test/unit/argonaut_sprint7_test.rb +0 -21
- data/test/unit/basic_test.rb +0 -27
- data/test/unit/fetch_patient_record_test.rb +0 -357
- data/test/unit/financial_test.rb +0 -41
@@ -0,0 +1,366 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<TestScript xmlns="http://hl7.org/fhir">
|
3
|
+
<id value="connectathon-14-patient-fhirserver-04-history-server-id-json"/>
|
4
|
+
|
5
|
+
<url value="http://wildfhir.aegis.net/fhir/TestScript/connectathon-14-patient-fhirserver-04-history-server-id-json"/>
|
6
|
+
<name value="FHIR Connectathon 14 - Patient - Formal Testing - FHIR Server - History - Server Assigned Resource Id - JSON"/>
|
7
|
+
<status value="draft"/>
|
8
|
+
<publisher value="AEGIS.net, Inc."/>
|
9
|
+
<contact>
|
10
|
+
<name value="Touchstone Support"/>
|
11
|
+
<telecom>
|
12
|
+
<system value="email"/>
|
13
|
+
<value value="Touchstone_Support@aegis.net"/>
|
14
|
+
<use value="work"/>
|
15
|
+
</telecom>
|
16
|
+
</contact>
|
17
|
+
<date value="2016-12-30"/>
|
18
|
+
<description value="Patient Track - Formal Testing - test FHIR Server using the JSON format to retrieve a Patient resource instance history. The test setup creates and updates a new Patient resource where the server assigns the resource id. The destination server must support create, read, update, vread, search and delete operations to insure the Patient resource does not exist or is removed prior to test execution."/>
|
19
|
+
<copyright value="© AEGIS.net, Inc. 2015+"/>
|
20
|
+
|
21
|
+
<metadata>
|
22
|
+
<capability>
|
23
|
+
<required value="true"/>
|
24
|
+
<description value="Patient create, read, search, update, delete and history-instance operations"/>
|
25
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#create"/>
|
26
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#read"/>
|
27
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#update"/>
|
28
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#delete"/>
|
29
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#search"/>
|
30
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#vread"/>
|
31
|
+
<link value="http://hl7.org/fhir/2017Jan/patient.html"/>
|
32
|
+
<capabilities>
|
33
|
+
<reference value="../_reference/capabilities/PatientCapabilityStatement.json" />
|
34
|
+
</capabilities>
|
35
|
+
</capability>
|
36
|
+
</metadata>
|
37
|
+
|
38
|
+
<fixture id="patient-create">
|
39
|
+
<resource>
|
40
|
+
<reference value="../_reference/resources/patient-create-server-id.json"/>
|
41
|
+
</resource>
|
42
|
+
</fixture>
|
43
|
+
<fixture id="patient-update">
|
44
|
+
<resource>
|
45
|
+
<reference value="../_reference/resources/patient-update-server-id.json"/>
|
46
|
+
</resource>
|
47
|
+
</fixture>
|
48
|
+
|
49
|
+
<profile id="bundle-profile">
|
50
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/Bundle"/>
|
51
|
+
</profile>
|
52
|
+
<profile id="patient-profile">
|
53
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/Patient"/>
|
54
|
+
</profile>
|
55
|
+
|
56
|
+
<variable>
|
57
|
+
<name value="patientResourceId"/>
|
58
|
+
<path value="Patient/id"/>
|
59
|
+
<sourceId value="patient-create-search-response"/>
|
60
|
+
</variable>
|
61
|
+
<variable>
|
62
|
+
<name value="patientVersionIdUpdated"/>
|
63
|
+
<path value="Patient/meta/versionId"/>
|
64
|
+
<sourceId value="patient-update-read-response"/>
|
65
|
+
</variable>
|
66
|
+
<variable>
|
67
|
+
<name value="patientIdentifier"/>
|
68
|
+
<path value="Patient/identifier/value"/>
|
69
|
+
<sourceId value="patient-create"/>
|
70
|
+
</variable>
|
71
|
+
<variable>
|
72
|
+
<name value="patientFamilyName"/>
|
73
|
+
<path value="Patient/name/family"/>
|
74
|
+
<sourceId value="patient-create"/>
|
75
|
+
</variable>
|
76
|
+
<variable>
|
77
|
+
<name value="patientGivenName"/>
|
78
|
+
<path value="Patient/name/given"/>
|
79
|
+
<sourceId value="patient-create"/>
|
80
|
+
</variable>
|
81
|
+
<variable>
|
82
|
+
<name value="patientGender"/>
|
83
|
+
<path value="Patient/gender"/>
|
84
|
+
<sourceId value="patient-create"/>
|
85
|
+
</variable>
|
86
|
+
<variable>
|
87
|
+
<name value="patientBirthDateUpdated"/>
|
88
|
+
<path value="Patient/birthDate"/>
|
89
|
+
<sourceId value="patient-update"/>
|
90
|
+
</variable>
|
91
|
+
|
92
|
+
<setup>
|
93
|
+
<action>
|
94
|
+
<operation>
|
95
|
+
<type>
|
96
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
97
|
+
<code value="delete"/>
|
98
|
+
</type>
|
99
|
+
<resource value="Patient"/>
|
100
|
+
<description value="System-generated search and delete operations from conditional delete to insure the patient does not exist on the server."/>
|
101
|
+
<accept value="json"/>
|
102
|
+
<contentType value="json"/>
|
103
|
+
<params value="?identifier=${patientIdentifier}&given=${patientGivenName}&family=${patientFamilyName}"/>
|
104
|
+
</operation>
|
105
|
+
</action>
|
106
|
+
|
107
|
+
<action>
|
108
|
+
<operation>
|
109
|
+
<type>
|
110
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
111
|
+
<code value="create"/>
|
112
|
+
</type>
|
113
|
+
<resource value="Patient"/>
|
114
|
+
<description value="Create the Patient resource in JSON format on the destination server for subsequent testing of the update operation."/>
|
115
|
+
<accept value="json"/>
|
116
|
+
<contentType value="json"/>
|
117
|
+
<sourceId value="patient-create"/>
|
118
|
+
</operation>
|
119
|
+
</action>
|
120
|
+
<action>
|
121
|
+
<assert>
|
122
|
+
<description value="Confirm that the returned HTTP status is 201(Created)."/>
|
123
|
+
<direction value="response"/>
|
124
|
+
<responseCode value="201"/>
|
125
|
+
</assert>
|
126
|
+
</action>
|
127
|
+
|
128
|
+
<action>
|
129
|
+
<operation>
|
130
|
+
<type>
|
131
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
132
|
+
<code value="search"/>
|
133
|
+
</type>
|
134
|
+
<resource value="Patient"/>
|
135
|
+
<description value="Search for the created Patient by the unique identifier."/>
|
136
|
+
<accept value="json"/>
|
137
|
+
<contentType value="json"/>
|
138
|
+
<params value="?identifier=${patientIdentifier}"/>
|
139
|
+
<responseId value="patient-create-search-response" />
|
140
|
+
</operation>
|
141
|
+
</action>
|
142
|
+
<action>
|
143
|
+
<assert>
|
144
|
+
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
145
|
+
<direction value="response"/>
|
146
|
+
<responseCode value="200"/>
|
147
|
+
</assert>
|
148
|
+
</action>
|
149
|
+
<action>
|
150
|
+
<assert>
|
151
|
+
<description value="Confirm that the returned HTTP Header Content-Type contains the FHIR mime-type 'application/fhir+json'."/>
|
152
|
+
<direction value="response"/>
|
153
|
+
<contentType value="json"/>
|
154
|
+
</assert>
|
155
|
+
</action>
|
156
|
+
<action>
|
157
|
+
<assert>
|
158
|
+
<description value="Confirm that the returned resource type is Bundle."/>
|
159
|
+
<direction value="response"/>
|
160
|
+
<resource value="Bundle"/>
|
161
|
+
</assert>
|
162
|
+
</action>
|
163
|
+
|
164
|
+
<action>
|
165
|
+
<operation>
|
166
|
+
<type>
|
167
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
168
|
+
<code value="update"/>
|
169
|
+
</type>
|
170
|
+
<resource value="Patient"/>
|
171
|
+
<description value="Update patient with server assigned resource id to generate a second version."/>
|
172
|
+
<accept value="json"/>
|
173
|
+
<contentType value="json"/>
|
174
|
+
<params value="/${patientResourceId}"/>
|
175
|
+
<sourceId value="patient-update"/>
|
176
|
+
</operation>
|
177
|
+
</action>
|
178
|
+
<action>
|
179
|
+
<assert>
|
180
|
+
<description value="Confirm that the returned HTTP status is 200(Ok)."/>
|
181
|
+
<direction value="response"/>
|
182
|
+
<responseCode value="200"/>
|
183
|
+
</assert>
|
184
|
+
</action>
|
185
|
+
|
186
|
+
<action>
|
187
|
+
<operation>
|
188
|
+
<type>
|
189
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
190
|
+
<code value="read"/>
|
191
|
+
</type>
|
192
|
+
<resource value="Patient"/>
|
193
|
+
<description value="Read the updated patient by the known patient resource id in order to save the last version id."/>
|
194
|
+
<accept value="json"/>
|
195
|
+
<contentType value="none"/>
|
196
|
+
<params value="/${patientResourceId}"/>
|
197
|
+
<responseId value="patient-update-read-response" />
|
198
|
+
</operation>
|
199
|
+
</action>
|
200
|
+
<action>
|
201
|
+
<assert>
|
202
|
+
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
203
|
+
<direction value="response"/>
|
204
|
+
<response value="okay"/>
|
205
|
+
</assert>
|
206
|
+
</action>
|
207
|
+
<action>
|
208
|
+
<assert>
|
209
|
+
<description value="Confirm that the returned format is the FHIR JSON format."/>
|
210
|
+
<direction value="response"/>
|
211
|
+
<contentType value="json"/>
|
212
|
+
</assert>
|
213
|
+
</action>
|
214
|
+
<action>
|
215
|
+
<assert>
|
216
|
+
<description value="Confirm that the returned resource type is Patient."/>
|
217
|
+
<direction value="response"/>
|
218
|
+
<resource value="Patient"/>
|
219
|
+
</assert>
|
220
|
+
</action>
|
221
|
+
<action>
|
222
|
+
<assert>
|
223
|
+
<description value="Validate that the returned resource conforms to the base FHIR Patient profile."/>
|
224
|
+
<direction value="response"/>
|
225
|
+
<validateProfileId value="patient-profile"/>
|
226
|
+
</assert>
|
227
|
+
</action>
|
228
|
+
<action>
|
229
|
+
<assert>
|
230
|
+
<description value="Confirm that the resource version is present. This is needed for the test step 01-PatientHistory."/>
|
231
|
+
<direction value="response"/>
|
232
|
+
<operator value="notEmpty"/>
|
233
|
+
<path value=".meta.versionId"/>
|
234
|
+
</assert>
|
235
|
+
</action>
|
236
|
+
</setup>
|
237
|
+
|
238
|
+
<test id="01-PatientHistory">
|
239
|
+
<name value="PatientHistory"/>
|
240
|
+
<description value="Test the history-instance operation with JSON content. The expected response content is a history Bundle resource containing all versions of the Patient resource in JSON format."/>
|
241
|
+
|
242
|
+
<action>
|
243
|
+
<operation>
|
244
|
+
<resource value="Patient"/>
|
245
|
+
<description value="Retrieve the history Bundle for the Patient instance and verify the first entry is the last updated version."/>
|
246
|
+
<accept value="json"/>
|
247
|
+
<contentType value="none"/>
|
248
|
+
<params value="/${patientResourceId}/_history"/>
|
249
|
+
</operation>
|
250
|
+
</action>
|
251
|
+
<action>
|
252
|
+
<assert>
|
253
|
+
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
254
|
+
<direction value="response"/>
|
255
|
+
<responseCode value="200"/>
|
256
|
+
</assert>
|
257
|
+
</action>
|
258
|
+
<action>
|
259
|
+
<assert>
|
260
|
+
<description value="Confirm that the returned HTTP Header Content-Type contains the FHIR mime-type 'application/fhir+json'."/>
|
261
|
+
<direction value="response"/>
|
262
|
+
<contentType value="json"/>
|
263
|
+
</assert>
|
264
|
+
</action>
|
265
|
+
<action>
|
266
|
+
<assert>
|
267
|
+
<description value="Confirm that the returned resource type is Bundle."/>
|
268
|
+
<direction value="response"/>
|
269
|
+
<resource value="Bundle"/>
|
270
|
+
</assert>
|
271
|
+
</action>
|
272
|
+
<action>
|
273
|
+
<assert>
|
274
|
+
<description value="Confirm that the returned Bundle conforms to the base FHIR specification."/>
|
275
|
+
<direction value="response"/>
|
276
|
+
<validateProfileId value="bundle-profile"/>
|
277
|
+
</assert>
|
278
|
+
</action>
|
279
|
+
<action>
|
280
|
+
<assert>
|
281
|
+
<description value="Confirm that the returned Bundle type is history."/>
|
282
|
+
<direction value="response"/>
|
283
|
+
<operator value="equals"/>
|
284
|
+
<path value="Bundle/type"/>
|
285
|
+
<value value="history"/>
|
286
|
+
</assert>
|
287
|
+
</action>
|
288
|
+
<action>
|
289
|
+
<assert>
|
290
|
+
<description value="Confirm that the returned history Bundle contains at least 2 entries (greater than 1)."/>
|
291
|
+
<direction value="response"/>
|
292
|
+
<operator value="greaterThan"/>
|
293
|
+
<path value="Bundle/total"/>
|
294
|
+
<value value="1"/>
|
295
|
+
</assert>
|
296
|
+
</action>
|
297
|
+
<action>
|
298
|
+
<assert>
|
299
|
+
<description value="Confirm that the Bundle total value matches or is greater than the number of entries in the Bundle. Warning only to provide users with reviewable results."/>
|
300
|
+
<direction value="response"/>
|
301
|
+
<expression value="Bundle.total.toInteger() >= entry.count()"/>
|
302
|
+
<warningOnly value="true"/>
|
303
|
+
</assert>
|
304
|
+
</action>
|
305
|
+
<action>
|
306
|
+
<assert>
|
307
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient meta versionId element and value. Warning only to provide users with reviewable results."/>
|
308
|
+
<direction value="response"/>
|
309
|
+
<operator value="equals"/>
|
310
|
+
<path value=".entry[0].resource.meta.versionId"/>
|
311
|
+
<value value="${patientVersionIdUpdated}"/>
|
312
|
+
<warningOnly value="true"/>
|
313
|
+
</assert>
|
314
|
+
</action>
|
315
|
+
<action>
|
316
|
+
<assert>
|
317
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient identifier element and value. Warning only to provide users with reviewable results."/>
|
318
|
+
<direction value="response"/>
|
319
|
+
<operator value="equals"/>
|
320
|
+
<path value=".entry[0].resource.identifier[0].value"/>
|
321
|
+
<value value="${patientIdentifier}"/>
|
322
|
+
<warningOnly value="true"/>
|
323
|
+
</assert>
|
324
|
+
</action>
|
325
|
+
<action>
|
326
|
+
<assert>
|
327
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient family name element and value. Warning only to provide users with reviewable results."/>
|
328
|
+
<direction value="response"/>
|
329
|
+
<operator value="equals"/>
|
330
|
+
<path value=".entry[0].resource.name[0].family"/>
|
331
|
+
<value value="${patientFamilyName}"/>
|
332
|
+
<warningOnly value="true"/>
|
333
|
+
</assert>
|
334
|
+
</action>
|
335
|
+
<action>
|
336
|
+
<assert>
|
337
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient given name element and value. Warning only to provide users with reviewable results."/>
|
338
|
+
<direction value="response"/>
|
339
|
+
<operator value="equals"/>
|
340
|
+
<path value=".entry[0].resource.name[0].given[0]"/>
|
341
|
+
<value value="${patientGivenName}"/>
|
342
|
+
<warningOnly value="true"/>
|
343
|
+
</assert>
|
344
|
+
</action>
|
345
|
+
<action>
|
346
|
+
<assert>
|
347
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient retained gender element and value. Warning only to provide users with reviewable results."/>
|
348
|
+
<direction value="response"/>
|
349
|
+
<operator value="equals"/>
|
350
|
+
<path value=".entry[0].resource.gender"/>
|
351
|
+
<value value="${patientGender}"/>
|
352
|
+
<warningOnly value="true"/>
|
353
|
+
</assert>
|
354
|
+
</action>
|
355
|
+
<action>
|
356
|
+
<assert>
|
357
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient updated birthDate element and value. Warning only to provide users with reviewable results."/>
|
358
|
+
<direction value="response"/>
|
359
|
+
<operator value="equals"/>
|
360
|
+
<path value=".entry[0].resource.birthDate"/>
|
361
|
+
<value value="${patientBirthDateUpdated}"/>
|
362
|
+
<warningOnly value="true"/>
|
363
|
+
</assert>
|
364
|
+
</action>
|
365
|
+
</test>
|
366
|
+
</TestScript>
|
@@ -0,0 +1,366 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<TestScript xmlns="http://hl7.org/fhir">
|
3
|
+
<id value="connectathon-14-patient-fhirserver-04-history-server-id-xml"/>
|
4
|
+
|
5
|
+
<url value="http://wildfhir.aegis.net/fhir/TestScript/connectathon-14-patient-fhirserver-04-history-server-id-xml"/>
|
6
|
+
<name value="FHIR Connectathon 14 - Patient - Formal Testing - FHIR Server - History - Server Assigned Resource Id - XML"/>
|
7
|
+
<status value="draft"/>
|
8
|
+
<publisher value="AEGIS.net, Inc."/>
|
9
|
+
<contact>
|
10
|
+
<name value="Touchstone Support"/>
|
11
|
+
<telecom>
|
12
|
+
<system value="email"/>
|
13
|
+
<value value="Touchstone_Support@aegis.net"/>
|
14
|
+
<use value="work"/>
|
15
|
+
</telecom>
|
16
|
+
</contact>
|
17
|
+
<date value="2016-12-30"/>
|
18
|
+
<description value="Patient Track - Formal Testing - test FHIR Server using the XML format to retrieve a Patient resource instance history. The test setup creates and updates a new Patient resource where the server assigns the resource id. The destination server must support create, read, update, vread, search and delete operations to insure the Patient resource does not exist or is removed prior to test execution."/>
|
19
|
+
<copyright value="© AEGIS.net, Inc. 2015+"/>
|
20
|
+
|
21
|
+
<metadata>
|
22
|
+
<capability>
|
23
|
+
<required value="true"/>
|
24
|
+
<description value="Patient create, read, search, update, delete and history-instance operations"/>
|
25
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#create"/>
|
26
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#read"/>
|
27
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#update"/>
|
28
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#delete"/>
|
29
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#search"/>
|
30
|
+
<link value="http://hl7.org/fhir/2017Jan/http.html#vread"/>
|
31
|
+
<link value="http://hl7.org/fhir/2017Jan/patient.html"/>
|
32
|
+
<capabilities>
|
33
|
+
<reference value="../_reference/capabilities/PatientCapabilityStatement.xml" />
|
34
|
+
</capabilities>
|
35
|
+
</capability>
|
36
|
+
</metadata>
|
37
|
+
|
38
|
+
<fixture id="patient-create">
|
39
|
+
<resource>
|
40
|
+
<reference value="../_reference/resources/patient-create-server-id.xml"/>
|
41
|
+
</resource>
|
42
|
+
</fixture>
|
43
|
+
<fixture id="patient-update">
|
44
|
+
<resource>
|
45
|
+
<reference value="../_reference/resources/patient-update-server-id.xml"/>
|
46
|
+
</resource>
|
47
|
+
</fixture>
|
48
|
+
|
49
|
+
<profile id="bundle-profile">
|
50
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/Bundle"/>
|
51
|
+
</profile>
|
52
|
+
<profile id="patient-profile">
|
53
|
+
<reference value="http://hl7.org/fhir/StructureDefinition/Patient"/>
|
54
|
+
</profile>
|
55
|
+
|
56
|
+
<variable>
|
57
|
+
<name value="patientResourceId"/>
|
58
|
+
<path value="Patient/id"/>
|
59
|
+
<sourceId value="patient-create-search-response"/>
|
60
|
+
</variable>
|
61
|
+
<variable>
|
62
|
+
<name value="patientVersionIdUpdated"/>
|
63
|
+
<path value="Patient/meta/versionId"/>
|
64
|
+
<sourceId value="patient-update-read-response"/>
|
65
|
+
</variable>
|
66
|
+
<variable>
|
67
|
+
<name value="patientIdentifier"/>
|
68
|
+
<path value="Patient/identifier/value"/>
|
69
|
+
<sourceId value="patient-create"/>
|
70
|
+
</variable>
|
71
|
+
<variable>
|
72
|
+
<name value="patientFamilyName"/>
|
73
|
+
<path value="Patient/name/family"/>
|
74
|
+
<sourceId value="patient-create"/>
|
75
|
+
</variable>
|
76
|
+
<variable>
|
77
|
+
<name value="patientGivenName"/>
|
78
|
+
<path value="Patient/name/given"/>
|
79
|
+
<sourceId value="patient-create"/>
|
80
|
+
</variable>
|
81
|
+
<variable>
|
82
|
+
<name value="patientGender"/>
|
83
|
+
<path value="Patient/gender"/>
|
84
|
+
<sourceId value="patient-create"/>
|
85
|
+
</variable>
|
86
|
+
<variable>
|
87
|
+
<name value="patientBirthDateUpdated"/>
|
88
|
+
<path value="Patient/birthDate"/>
|
89
|
+
<sourceId value="patient-update"/>
|
90
|
+
</variable>
|
91
|
+
|
92
|
+
<setup>
|
93
|
+
<action>
|
94
|
+
<operation>
|
95
|
+
<type>
|
96
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
97
|
+
<code value="delete"/>
|
98
|
+
</type>
|
99
|
+
<resource value="Patient"/>
|
100
|
+
<description value="System-generated search and delete operations from conditional delete to insure the patient does not exist on the server."/>
|
101
|
+
<accept value="xml"/>
|
102
|
+
<contentType value="xml"/>
|
103
|
+
<params value="?identifier=${patientIdentifier}&given=${patientGivenName}&family=${patientFamilyName}"/>
|
104
|
+
</operation>
|
105
|
+
</action>
|
106
|
+
|
107
|
+
<action>
|
108
|
+
<operation>
|
109
|
+
<type>
|
110
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
111
|
+
<code value="create"/>
|
112
|
+
</type>
|
113
|
+
<resource value="Patient"/>
|
114
|
+
<description value="Create the Patient resource in XML format on the destination server for subsequent testing of the update operation."/>
|
115
|
+
<accept value="xml"/>
|
116
|
+
<contentType value="xml"/>
|
117
|
+
<sourceId value="patient-create"/>
|
118
|
+
</operation>
|
119
|
+
</action>
|
120
|
+
<action>
|
121
|
+
<assert>
|
122
|
+
<description value="Confirm that the returned HTTP status is 201(Created)."/>
|
123
|
+
<direction value="response"/>
|
124
|
+
<responseCode value="201"/>
|
125
|
+
</assert>
|
126
|
+
</action>
|
127
|
+
|
128
|
+
<action>
|
129
|
+
<operation>
|
130
|
+
<type>
|
131
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
132
|
+
<code value="search"/>
|
133
|
+
</type>
|
134
|
+
<resource value="Patient"/>
|
135
|
+
<description value="Search for the created Patient by the unique identifier."/>
|
136
|
+
<accept value="xml"/>
|
137
|
+
<contentType value="xml"/>
|
138
|
+
<params value="?identifier=${patientIdentifier}"/>
|
139
|
+
<responseId value="patient-create-search-response" />
|
140
|
+
</operation>
|
141
|
+
</action>
|
142
|
+
<action>
|
143
|
+
<assert>
|
144
|
+
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
145
|
+
<direction value="response"/>
|
146
|
+
<responseCode value="200"/>
|
147
|
+
</assert>
|
148
|
+
</action>
|
149
|
+
<action>
|
150
|
+
<assert>
|
151
|
+
<description value="Confirm that the returned HTTP Header Content-Type contains the FHIR mime-type 'application/fhir+xml'."/>
|
152
|
+
<direction value="response"/>
|
153
|
+
<contentType value="xml"/>
|
154
|
+
</assert>
|
155
|
+
</action>
|
156
|
+
<action>
|
157
|
+
<assert>
|
158
|
+
<description value="Confirm that the returned resource type is Bundle."/>
|
159
|
+
<direction value="response"/>
|
160
|
+
<resource value="Bundle"/>
|
161
|
+
</assert>
|
162
|
+
</action>
|
163
|
+
|
164
|
+
<action>
|
165
|
+
<operation>
|
166
|
+
<type>
|
167
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
168
|
+
<code value="update"/>
|
169
|
+
</type>
|
170
|
+
<resource value="Patient"/>
|
171
|
+
<description value="Update patient with server assigned resource id to generate a second version."/>
|
172
|
+
<accept value="xml"/>
|
173
|
+
<contentType value="xml"/>
|
174
|
+
<params value="/${patientResourceId}"/>
|
175
|
+
<sourceId value="patient-update"/>
|
176
|
+
</operation>
|
177
|
+
</action>
|
178
|
+
<action>
|
179
|
+
<assert>
|
180
|
+
<description value="Confirm that the returned HTTP status is 200(Ok)."/>
|
181
|
+
<direction value="response"/>
|
182
|
+
<responseCode value="200"/>
|
183
|
+
</assert>
|
184
|
+
</action>
|
185
|
+
|
186
|
+
<action>
|
187
|
+
<operation>
|
188
|
+
<type>
|
189
|
+
<system value="http://hl7.org/fhir/testscript-operation-codes"/>
|
190
|
+
<code value="read"/>
|
191
|
+
</type>
|
192
|
+
<resource value="Patient"/>
|
193
|
+
<description value="Read the updated patient by the known patient resource id in order to save the last version id."/>
|
194
|
+
<accept value="xml"/>
|
195
|
+
<contentType value="none"/>
|
196
|
+
<params value="/${patientResourceId}"/>
|
197
|
+
<responseId value="patient-update-read-response" />
|
198
|
+
</operation>
|
199
|
+
</action>
|
200
|
+
<action>
|
201
|
+
<assert>
|
202
|
+
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
203
|
+
<direction value="response"/>
|
204
|
+
<response value="okay"/>
|
205
|
+
</assert>
|
206
|
+
</action>
|
207
|
+
<action>
|
208
|
+
<assert>
|
209
|
+
<description value="Confirm that the returned format is the FHIR XML format."/>
|
210
|
+
<direction value="response"/>
|
211
|
+
<contentType value="xml"/>
|
212
|
+
</assert>
|
213
|
+
</action>
|
214
|
+
<action>
|
215
|
+
<assert>
|
216
|
+
<description value="Confirm that the returned resource type is Patient."/>
|
217
|
+
<direction value="response"/>
|
218
|
+
<resource value="Patient"/>
|
219
|
+
</assert>
|
220
|
+
</action>
|
221
|
+
<action>
|
222
|
+
<assert>
|
223
|
+
<description value="Validate that the returned resource conforms to the base FHIR Patient profile."/>
|
224
|
+
<direction value="response"/>
|
225
|
+
<validateProfileId value="patient-profile"/>
|
226
|
+
</assert>
|
227
|
+
</action>
|
228
|
+
<action>
|
229
|
+
<assert>
|
230
|
+
<description value="Confirm that the resource version is present. This is needed for the test step 01-PatientHistory."/>
|
231
|
+
<direction value="response"/>
|
232
|
+
<operator value="notEmpty"/>
|
233
|
+
<path value="Patient/meta/versionId"/>
|
234
|
+
</assert>
|
235
|
+
</action>
|
236
|
+
</setup>
|
237
|
+
|
238
|
+
<test id="01-PatientHistory">
|
239
|
+
<name value="PatientHistory"/>
|
240
|
+
<description value="Test the history-instance operation with XML content. The expected response content is a history Bundle resource containing all versions of the Patient resource in XML format."/>
|
241
|
+
|
242
|
+
<action>
|
243
|
+
<operation>
|
244
|
+
<resource value="Patient"/>
|
245
|
+
<description value="Retrieve the history Bundle for the Patient instance and verify the first entry is the last updated version."/>
|
246
|
+
<accept value="xml"/>
|
247
|
+
<contentType value="none"/>
|
248
|
+
<params value="/${patientResourceId}/_history"/>
|
249
|
+
</operation>
|
250
|
+
</action>
|
251
|
+
<action>
|
252
|
+
<assert>
|
253
|
+
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
254
|
+
<direction value="response"/>
|
255
|
+
<responseCode value="200"/>
|
256
|
+
</assert>
|
257
|
+
</action>
|
258
|
+
<action>
|
259
|
+
<assert>
|
260
|
+
<description value="Confirm that the returned HTTP Header Content-Type contains the FHIR mime-type 'application/fhir+xml'."/>
|
261
|
+
<direction value="response"/>
|
262
|
+
<contentType value="xml"/>
|
263
|
+
</assert>
|
264
|
+
</action>
|
265
|
+
<action>
|
266
|
+
<assert>
|
267
|
+
<description value="Confirm that the returned resource type is Bundle."/>
|
268
|
+
<direction value="response"/>
|
269
|
+
<resource value="Bundle"/>
|
270
|
+
</assert>
|
271
|
+
</action>
|
272
|
+
<action>
|
273
|
+
<assert>
|
274
|
+
<description value="Confirm that the returned Bundle conforms to the base FHIR specification."/>
|
275
|
+
<direction value="response"/>
|
276
|
+
<validateProfileId value="bundle-profile"/>
|
277
|
+
</assert>
|
278
|
+
</action>
|
279
|
+
<action>
|
280
|
+
<assert>
|
281
|
+
<description value="Confirm that the returned Bundle type is history."/>
|
282
|
+
<direction value="response"/>
|
283
|
+
<operator value="equals"/>
|
284
|
+
<path value="Bundle/type"/>
|
285
|
+
<value value="history"/>
|
286
|
+
</assert>
|
287
|
+
</action>
|
288
|
+
<action>
|
289
|
+
<assert>
|
290
|
+
<description value="Confirm that the returned history Bundle contains at least 2 entries (greater than 1)."/>
|
291
|
+
<direction value="response"/>
|
292
|
+
<operator value="greaterThan"/>
|
293
|
+
<path value="Bundle/total"/>
|
294
|
+
<value value="1"/>
|
295
|
+
</assert>
|
296
|
+
</action>
|
297
|
+
<action>
|
298
|
+
<assert>
|
299
|
+
<description value="Confirm that the Bundle total value matches or is greater than the number of entries in the Bundle. Warning only to provide users with reviewable results."/>
|
300
|
+
<direction value="response"/>
|
301
|
+
<expression value="Bundle.total.toInteger() >= entry.count()"/>
|
302
|
+
<warningOnly value="true"/>
|
303
|
+
</assert>
|
304
|
+
</action>
|
305
|
+
<action>
|
306
|
+
<assert>
|
307
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient meta versionId element and value. Warning only to provide users with reviewable results."/>
|
308
|
+
<direction value="response"/>
|
309
|
+
<operator value="equals"/>
|
310
|
+
<path value="Bundle/entry[1]/resource/Patient/meta/versionId"/>
|
311
|
+
<value value="${patientVersionIdUpdated}"/>
|
312
|
+
<warningOnly value="true"/>
|
313
|
+
</assert>
|
314
|
+
</action>
|
315
|
+
<action>
|
316
|
+
<assert>
|
317
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient identifier element and value. Warning only to provide users with reviewable results."/>
|
318
|
+
<direction value="response"/>
|
319
|
+
<operator value="equals"/>
|
320
|
+
<path value="Bundle/entry[1]/resource/Patient/identifier/value"/>
|
321
|
+
<value value="${patientIdentifier}"/>
|
322
|
+
<warningOnly value="true"/>
|
323
|
+
</assert>
|
324
|
+
</action>
|
325
|
+
<action>
|
326
|
+
<assert>
|
327
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient family name element and value. Warning only to provide users with reviewable results."/>
|
328
|
+
<direction value="response"/>
|
329
|
+
<operator value="equals"/>
|
330
|
+
<path value="Bundle/entry[1]/resource/Patient/name/family"/>
|
331
|
+
<value value="${patientFamilyName}"/>
|
332
|
+
<warningOnly value="true"/>
|
333
|
+
</assert>
|
334
|
+
</action>
|
335
|
+
<action>
|
336
|
+
<assert>
|
337
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient given name element and value. Warning only to provide users with reviewable results."/>
|
338
|
+
<direction value="response"/>
|
339
|
+
<operator value="equals"/>
|
340
|
+
<path value="Bundle/entry[1]/resource/Patient/name/given"/>
|
341
|
+
<value value="${patientGivenName}"/>
|
342
|
+
<warningOnly value="true"/>
|
343
|
+
</assert>
|
344
|
+
</action>
|
345
|
+
<action>
|
346
|
+
<assert>
|
347
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient retained gender element and value. Warning only to provide users with reviewable results."/>
|
348
|
+
<direction value="response"/>
|
349
|
+
<operator value="equals"/>
|
350
|
+
<path value="Bundle/entry[1]/resource/Patient/gender"/>
|
351
|
+
<value value="${patientGender}"/>
|
352
|
+
<warningOnly value="true"/>
|
353
|
+
</assert>
|
354
|
+
</action>
|
355
|
+
<action>
|
356
|
+
<assert>
|
357
|
+
<description value="Confirm that the returned Bundle resource first entry contains the expected Patient updated birthDate element and value. Warning only to provide users with reviewable results."/>
|
358
|
+
<direction value="response"/>
|
359
|
+
<operator value="equals"/>
|
360
|
+
<path value="Bundle/entry[1]/resource/Patient/birthDate"/>
|
361
|
+
<value value="${patientBirthDateUpdated}"/>
|
362
|
+
<warningOnly value="true"/>
|
363
|
+
</assert>
|
364
|
+
</action>
|
365
|
+
</test>
|
366
|
+
</TestScript>
|