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
@@ -1,925 +0,0 @@
|
|
1
|
-
<TestScript xmlns="http://hl7.org/fhir">
|
2
|
-
<id value="track2-ts-suite1-expand-client-id"/>
|
3
|
-
<text>
|
4
|
-
<status value="generated"/>
|
5
|
-
<div xmlns="http://www.w3.org/1999/xhtml">
|
6
|
-
<p>
|
7
|
-
Setup: The setup section defines the 7 value sets that are used to test the API
|
8
|
-
functionality. The 7 value sets span common extensional and intensional definition
|
9
|
-
styles and consequences.
|
10
|
-
</p>
|
11
|
-
<p>
|
12
|
-
Suite 1: 7 tests, for expanding the value sets as they are. The last one fails on
|
13
|
-
the grounds that it's too big. The tests require that the right set of codes
|
14
|
-
are returned, with the right display. The order of codes as dependent on the
|
15
|
-
server. Additional information about the value set or the codes may be returned,
|
16
|
-
but is not required to pass the tests. Overview of value sets:
|
17
|
-
</p>
|
18
|
-
<ul>
|
19
|
-
<li>extensional-case-1: An enumeration of codes from a FHIR defined code system</li>
|
20
|
-
<li>extensional-case-2: An enumeration of codes from LOINC</li>
|
21
|
-
<li>extensional-case-3: An enumeration of codes from SNOMED </li>
|
22
|
-
<li>extensional-case-4: An enumeration of codes the crosses code systems, with codes from a FHIR defined value set and the V3 Role code system</li>
|
23
|
-
<li>intensional-case-1: A selection of codes from LOINC by their system value</li>
|
24
|
-
<li>intensional-case-2: A selection of codes from SNOMED based on subsumption</li>
|
25
|
-
<li>intensional-case-3: All clinical findings from SNOMED (based on subsumption) - a value set that is too large to expand</li>
|
26
|
-
</ul>
|
27
|
-
</div>
|
28
|
-
</text>
|
29
|
-
|
30
|
-
<url value="http://wildfhir.aegis.net/fhir/TestScript/track2-ts-suite1-expand-client-id"/>
|
31
|
-
<name value="FHIR Connectathon 11 - Track 2 - Terminology Services - Suite 1"/>
|
32
|
-
<status value="draft"/>
|
33
|
-
<publisher value="AEGIS.net, Inc."/>
|
34
|
-
<contact>
|
35
|
-
<name value="Touchstone Support"/>
|
36
|
-
<telecom>
|
37
|
-
<system value="email"/>
|
38
|
-
<value value="Touchstone_Support@aegis.net"/>
|
39
|
-
<use value="work"/>
|
40
|
-
</telecom>
|
41
|
-
</contact>
|
42
|
-
<date value="2015-12-30"/>
|
43
|
-
<description value="FHIR Connectathon 11 - Track 2 - Terminology Services - Suite 1 - Simple expansion tests for each of the 7 ValueSet fixtures. Setup creates the ValueSet resources with client defined resource ids."/>
|
44
|
-
<useContext>
|
45
|
-
<coding>
|
46
|
-
<system value="urn:iso:std:iso:3166"/>
|
47
|
-
<code value="US"/>
|
48
|
-
<display value="United States of America (the)"/>
|
49
|
-
</coding>
|
50
|
-
</useContext>
|
51
|
-
<requirements value="ValueSet Create, Read and Expand Operations"/>
|
52
|
-
<copyright value="© AEGIS.net, Inc. 2015+"/>
|
53
|
-
|
54
|
-
<metadata>
|
55
|
-
<capability>
|
56
|
-
<required value="true"/>
|
57
|
-
<description value="ValueSet create, read and expand operations"/>
|
58
|
-
<link value="http://hl7.org/fhir/2016Jan/http.html#create"/>
|
59
|
-
<link value="http://hl7.org/fhir/2016Jan/http.html#read"/>
|
60
|
-
<link value="http://hl7.org/fhir/2016Jan/valueset-operations.html#expand"/>
|
61
|
-
<link value="http://hl7.org/fhir/2016Jan/valueset.html"/>
|
62
|
-
<conformance>
|
63
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite1Conformance.xml" />
|
64
|
-
</conformance>
|
65
|
-
</capability>
|
66
|
-
</metadata>
|
67
|
-
|
68
|
-
<fixture id="extensional-case-1">
|
69
|
-
<resource>
|
70
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-1.xml"/>
|
71
|
-
</resource>
|
72
|
-
</fixture>
|
73
|
-
<fixture id="extensional-case-2">
|
74
|
-
<resource>
|
75
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-2.xml"/>
|
76
|
-
</resource>
|
77
|
-
</fixture>
|
78
|
-
<fixture id="extensional-case-3">
|
79
|
-
<resource>
|
80
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-3.xml"/>
|
81
|
-
</resource>
|
82
|
-
</fixture>
|
83
|
-
<fixture id="extensional-case-4">
|
84
|
-
<resource>
|
85
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-4.xml"/>
|
86
|
-
</resource>
|
87
|
-
</fixture>
|
88
|
-
<fixture id="intensional-case-1">
|
89
|
-
<resource>
|
90
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-1.xml"/>
|
91
|
-
</resource>
|
92
|
-
</fixture>
|
93
|
-
<fixture id="intensional-case-2">
|
94
|
-
<resource>
|
95
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-2.xml"/>
|
96
|
-
</resource>
|
97
|
-
</fixture>
|
98
|
-
<fixture id="intensional-case-3">
|
99
|
-
<resource>
|
100
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-3.xml"/>
|
101
|
-
</resource>
|
102
|
-
</fixture>
|
103
|
-
|
104
|
-
<fixture id="extensional-case-1-expand-min">
|
105
|
-
<resource>
|
106
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-expand-min.xml"/>
|
107
|
-
</resource>
|
108
|
-
</fixture>
|
109
|
-
<fixture id="extensional-case-2-expand-min">
|
110
|
-
<resource>
|
111
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-expand-min.xml"/>
|
112
|
-
</resource>
|
113
|
-
</fixture>
|
114
|
-
<fixture id="extensional-case-3-expand-min">
|
115
|
-
<resource>
|
116
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-expand-min.xml"/>
|
117
|
-
</resource>
|
118
|
-
</fixture>
|
119
|
-
<fixture id="extensional-case-4-expand-min">
|
120
|
-
<resource>
|
121
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-expand-min.xml"/>
|
122
|
-
</resource>
|
123
|
-
</fixture>
|
124
|
-
<fixture id="intensional-case-1-expand-min">
|
125
|
-
<resource>
|
126
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-expand-min.xml"/>
|
127
|
-
</resource>
|
128
|
-
</fixture>
|
129
|
-
<fixture id="intensional-case-2-expand-min">
|
130
|
-
<resource>
|
131
|
-
<reference value="/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-expand-min.xml"/>
|
132
|
-
</resource>
|
133
|
-
</fixture>
|
134
|
-
|
135
|
-
<profile id="ValueSetProfile">
|
136
|
-
<reference value="http://hl7.org/fhir/StructureDefinition/ValueSet"/>
|
137
|
-
</profile>
|
138
|
-
<!--
|
139
|
-
<setup id="CreateRequiredResources">
|
140
|
-
<action>
|
141
|
-
<operation>
|
142
|
-
<type>
|
143
|
-
<code value="update"/>
|
144
|
-
</type>
|
145
|
-
<resource value="ValueSet"/>
|
146
|
-
<description value="Create ValueSet extensional-case-1."/>
|
147
|
-
<accept value="xml"/>
|
148
|
-
<params value="/extensional-case-1"/>
|
149
|
-
<sourceId value="extensional-case-1"/>
|
150
|
-
</operation>
|
151
|
-
</action>
|
152
|
-
<action>
|
153
|
-
<assert>
|
154
|
-
<operator value="in"/>
|
155
|
-
<responseCode value="200,201"/>
|
156
|
-
</assert>
|
157
|
-
</action>
|
158
|
-
|
159
|
-
<action>
|
160
|
-
<operation>
|
161
|
-
<type>
|
162
|
-
<code value="update"/>
|
163
|
-
</type>
|
164
|
-
<resource value="ValueSet"/>
|
165
|
-
<description value="Create ValueSet extensional-case-2."/>
|
166
|
-
<accept value="xml"/>
|
167
|
-
<params value="/extensional-case-2"/>
|
168
|
-
<sourceId value="extensional-case-2"/>
|
169
|
-
</operation>
|
170
|
-
</action>
|
171
|
-
<action>
|
172
|
-
<assert>
|
173
|
-
<operator value="in"/>
|
174
|
-
<responseCode value="200,201"/>
|
175
|
-
</assert>
|
176
|
-
</action>
|
177
|
-
|
178
|
-
<action>
|
179
|
-
<operation>
|
180
|
-
<type>
|
181
|
-
<code value="update"/>
|
182
|
-
</type>
|
183
|
-
<resource value="ValueSet"/>
|
184
|
-
<description value="Create ValueSet extensional-case-3."/>
|
185
|
-
<accept value="xml"/>
|
186
|
-
<params value="/extensional-case-3"/>
|
187
|
-
<sourceId value="extensional-case-3"/>
|
188
|
-
</operation>
|
189
|
-
</action>
|
190
|
-
<action>
|
191
|
-
<assert>
|
192
|
-
<operator value="in"/>
|
193
|
-
<responseCode value="200,201"/>
|
194
|
-
</assert>
|
195
|
-
</action>
|
196
|
-
|
197
|
-
<action>
|
198
|
-
<operation>
|
199
|
-
<type>
|
200
|
-
<code value="update"/>
|
201
|
-
</type>
|
202
|
-
<resource value="ValueSet"/>
|
203
|
-
<description value="Create ValueSet extensional-case-4."/>
|
204
|
-
<accept value="xml"/>
|
205
|
-
<params value="/extensional-case-4"/>
|
206
|
-
<sourceId value="extensional-case-4"/>
|
207
|
-
</operation>
|
208
|
-
</action>
|
209
|
-
<action>
|
210
|
-
<assert>
|
211
|
-
<operator value="in"/>
|
212
|
-
<responseCode value="200,201"/>
|
213
|
-
</assert>
|
214
|
-
</action>
|
215
|
-
|
216
|
-
<action>
|
217
|
-
<operation>
|
218
|
-
<type>
|
219
|
-
<code value="update"/>
|
220
|
-
</type>
|
221
|
-
<resource value="ValueSet"/>
|
222
|
-
<description value="Create ValueSet intensional-case-1."/>
|
223
|
-
<accept value="xml"/>
|
224
|
-
<params value="/intensional-case-1"/>
|
225
|
-
<sourceId value="intensional-case-1"/>
|
226
|
-
</operation>
|
227
|
-
</action>
|
228
|
-
<action>
|
229
|
-
<assert>
|
230
|
-
<operator value="in"/>
|
231
|
-
<responseCode value="200,201"/>
|
232
|
-
</assert>
|
233
|
-
</action>
|
234
|
-
|
235
|
-
<action>
|
236
|
-
<operation>
|
237
|
-
<type>
|
238
|
-
<code value="update"/>
|
239
|
-
</type>
|
240
|
-
<resource value="ValueSet"/>
|
241
|
-
<description value="Create ValueSet intensional-case-2."/>
|
242
|
-
<accept value="xml"/>
|
243
|
-
<params value="/intensional-case-2"/>
|
244
|
-
<sourceId value="intensional-case-2"/>
|
245
|
-
</operation>
|
246
|
-
</action>
|
247
|
-
<action>
|
248
|
-
<assert>
|
249
|
-
<operator value="in"/>
|
250
|
-
<responseCode value="200,201"/>
|
251
|
-
</assert>
|
252
|
-
</action>
|
253
|
-
|
254
|
-
<action>
|
255
|
-
<operation>
|
256
|
-
<type>
|
257
|
-
<code value="update"/>
|
258
|
-
</type>
|
259
|
-
<resource value="ValueSet"/>
|
260
|
-
<description value="Create ValueSet intensional-case-3."/>
|
261
|
-
<accept value="xml"/>
|
262
|
-
<params value="/intensional-case-3"/>
|
263
|
-
<sourceId value="intensional-case-3"/>
|
264
|
-
</operation>
|
265
|
-
</action>
|
266
|
-
<action>
|
267
|
-
<assert>
|
268
|
-
<operator value="in"/>
|
269
|
-
<responseCode value="200,201"/>
|
270
|
-
</assert>
|
271
|
-
</action>
|
272
|
-
</setup>
|
273
|
-
-->
|
274
|
-
<test id="1-1-SimpleExpansionExtensionalCase1">
|
275
|
-
<name value="Simple Expansion Test extensional-case-1"/>
|
276
|
-
<description value="Simple $expand operation test for ValueSet extensional-case-1."/>
|
277
|
-
|
278
|
-
<action>
|
279
|
-
<operation>
|
280
|
-
<type>
|
281
|
-
<code value="read"/>
|
282
|
-
</type>
|
283
|
-
<resource value="ValueSet"/>
|
284
|
-
<description value="Test read operation for ValueSet extensional-case-1."/>
|
285
|
-
<accept value="xml"/>
|
286
|
-
<params value="/extensional-case-1"/>
|
287
|
-
</operation>
|
288
|
-
</action>
|
289
|
-
<action>
|
290
|
-
<assert>
|
291
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
292
|
-
<response value="okay"/>
|
293
|
-
</assert>
|
294
|
-
</action>
|
295
|
-
<action>
|
296
|
-
<assert>
|
297
|
-
<description value="Confirm that the returned format is XML."/>
|
298
|
-
<contentType value="xml"/>
|
299
|
-
<warningOnly value="true"/>
|
300
|
-
</assert>
|
301
|
-
</action>
|
302
|
-
<action>
|
303
|
-
<assert>
|
304
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
305
|
-
<resource value="ValueSet"/>
|
306
|
-
<warningOnly value="true"/>
|
307
|
-
</assert>
|
308
|
-
</action>
|
309
|
-
<action>
|
310
|
-
<assert>
|
311
|
-
<validateProfileId value="ValueSetProfile"/>
|
312
|
-
<warningOnly value="true"/>
|
313
|
-
</assert>
|
314
|
-
</action>
|
315
|
-
|
316
|
-
<action>
|
317
|
-
<operation>
|
318
|
-
<type>
|
319
|
-
<code value="$expand"/>
|
320
|
-
</type>
|
321
|
-
<resource value="ValueSet"/>
|
322
|
-
<description value="Test simple $expand operation on ValueSet extensional-case-1."/>
|
323
|
-
<accept value="xml"/>
|
324
|
-
<encodeRequestUrl value="false"/>
|
325
|
-
<params value="/extensional-case-1/$expand"/>
|
326
|
-
</operation>
|
327
|
-
</action>
|
328
|
-
<action>
|
329
|
-
<assert>
|
330
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
331
|
-
<response value="okay"/>
|
332
|
-
</assert>
|
333
|
-
</action>
|
334
|
-
<action>
|
335
|
-
<assert>
|
336
|
-
<description value="Confirm that the returned format is XML."/>
|
337
|
-
<contentType value="xml"/>
|
338
|
-
<warningOnly value="true"/>
|
339
|
-
</assert>
|
340
|
-
</action>
|
341
|
-
<action>
|
342
|
-
<assert>
|
343
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
344
|
-
<resource value="ValueSet"/>
|
345
|
-
<warningOnly value="true"/>
|
346
|
-
</assert>
|
347
|
-
</action>
|
348
|
-
<action>
|
349
|
-
<assert>
|
350
|
-
<description value="Confirm that the returned ValueSet minimally contains the information in extensional-case-1-expand-min."/>
|
351
|
-
<minimumId value="extensional-case-1-expand-min"/>
|
352
|
-
<warningOnly value="true"/>
|
353
|
-
</assert>
|
354
|
-
</action>
|
355
|
-
</test>
|
356
|
-
|
357
|
-
<test id="1-2-SimpleExpansionExtensionalCase2">
|
358
|
-
<name value="Simple Expansion Test extensional-case-2"/>
|
359
|
-
<description value="Simple $expand operation test for ValueSet extensional-case-2."/>
|
360
|
-
|
361
|
-
<action>
|
362
|
-
<operation>
|
363
|
-
<type>
|
364
|
-
<code value="read"/>
|
365
|
-
</type>
|
366
|
-
<resource value="ValueSet"/>
|
367
|
-
<description value="Test read operation for ValueSet extensional-case-2."/>
|
368
|
-
<accept value="xml"/>
|
369
|
-
<params value="/extensional-case-2"/>
|
370
|
-
</operation>
|
371
|
-
</action>
|
372
|
-
<action>
|
373
|
-
<assert>
|
374
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
375
|
-
<response value="okay"/>
|
376
|
-
</assert>
|
377
|
-
</action>
|
378
|
-
<action>
|
379
|
-
<assert>
|
380
|
-
<description value="Confirm that the returned format is XML."/>
|
381
|
-
<contentType value="xml"/>
|
382
|
-
<warningOnly value="true"/>
|
383
|
-
</assert>
|
384
|
-
</action>
|
385
|
-
<action>
|
386
|
-
<assert>
|
387
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
388
|
-
<resource value="ValueSet"/>
|
389
|
-
<warningOnly value="true"/>
|
390
|
-
</assert>
|
391
|
-
</action>
|
392
|
-
<action>
|
393
|
-
<assert>
|
394
|
-
<validateProfileId value="ValueSetProfile"/>
|
395
|
-
<warningOnly value="true"/>
|
396
|
-
</assert>
|
397
|
-
</action>
|
398
|
-
|
399
|
-
<action>
|
400
|
-
<operation>
|
401
|
-
<type>
|
402
|
-
<code value="$expand"/>
|
403
|
-
</type>
|
404
|
-
<resource value="ValueSet"/>
|
405
|
-
<description value="Test simple $expand operation on ValueSet extensional-case-2."/>
|
406
|
-
<accept value="xml"/>
|
407
|
-
<encodeRequestUrl value="false"/>
|
408
|
-
<params value="/extensional-case-2/$expand"/>
|
409
|
-
</operation>
|
410
|
-
</action>
|
411
|
-
<action>
|
412
|
-
<assert>
|
413
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
414
|
-
<response value="okay"/>
|
415
|
-
</assert>
|
416
|
-
</action>
|
417
|
-
<action>
|
418
|
-
<assert>
|
419
|
-
<description value="Confirm that the returned format is XML."/>
|
420
|
-
<contentType value="xml"/>
|
421
|
-
<warningOnly value="true"/>
|
422
|
-
</assert>
|
423
|
-
</action>
|
424
|
-
<action>
|
425
|
-
<assert>
|
426
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
427
|
-
<resource value="ValueSet"/>
|
428
|
-
<warningOnly value="true"/>
|
429
|
-
</assert>
|
430
|
-
</action>
|
431
|
-
<action>
|
432
|
-
<assert>
|
433
|
-
<description value="Confirm that the returned ValueSet minimally contains the information in extensional-case-2-expand-min."/>
|
434
|
-
<minimumId value="extensional-case-2-expand-min"/>
|
435
|
-
<warningOnly value="true"/>
|
436
|
-
</assert>
|
437
|
-
</action>
|
438
|
-
</test>
|
439
|
-
|
440
|
-
<test id="1-3-SimpleExpansionExtensionalCase3">
|
441
|
-
<name value="Simple Expansion Test extensional-case-3"/>
|
442
|
-
<description value="Simple $expand operation test for ValueSet extensional-case-3."/>
|
443
|
-
|
444
|
-
<action>
|
445
|
-
<operation>
|
446
|
-
<type>
|
447
|
-
<code value="read"/>
|
448
|
-
</type>
|
449
|
-
<resource value="ValueSet"/>
|
450
|
-
<description value="Test read operation for ValueSet extensional-case-3."/>
|
451
|
-
<accept value="xml"/>
|
452
|
-
<params value="/extensional-case-3"/>
|
453
|
-
</operation>
|
454
|
-
</action>
|
455
|
-
<action>
|
456
|
-
<assert>
|
457
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
458
|
-
<response value="okay"/>
|
459
|
-
</assert>
|
460
|
-
</action>
|
461
|
-
<action>
|
462
|
-
<assert>
|
463
|
-
<description value="Confirm that the returned format is XML."/>
|
464
|
-
<contentType value="xml"/>
|
465
|
-
<warningOnly value="true"/>
|
466
|
-
</assert>
|
467
|
-
</action>
|
468
|
-
<action>
|
469
|
-
<assert>
|
470
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
471
|
-
<resource value="ValueSet"/>
|
472
|
-
<warningOnly value="true"/>
|
473
|
-
</assert>
|
474
|
-
</action>
|
475
|
-
<action>
|
476
|
-
<assert>
|
477
|
-
<validateProfileId value="ValueSetProfile"/>
|
478
|
-
<warningOnly value="true"/>
|
479
|
-
</assert>
|
480
|
-
</action>
|
481
|
-
|
482
|
-
<action>
|
483
|
-
<operation>
|
484
|
-
<type>
|
485
|
-
<code value="$expand"/>
|
486
|
-
</type>
|
487
|
-
<resource value="ValueSet"/>
|
488
|
-
<description value="Test simple $expand operation on ValueSet extensional-case-3."/>
|
489
|
-
<accept value="xml"/>
|
490
|
-
<encodeRequestUrl value="false"/>
|
491
|
-
<params value="/extensional-case-3/$expand"/>
|
492
|
-
</operation>
|
493
|
-
</action>
|
494
|
-
<action>
|
495
|
-
<assert>
|
496
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
497
|
-
<response value="okay"/>
|
498
|
-
</assert>
|
499
|
-
</action>
|
500
|
-
<action>
|
501
|
-
<assert>
|
502
|
-
<description value="Confirm that the returned format is XML."/>
|
503
|
-
<contentType value="xml"/>
|
504
|
-
<warningOnly value="true"/>
|
505
|
-
</assert>
|
506
|
-
</action>
|
507
|
-
<action>
|
508
|
-
<assert>
|
509
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
510
|
-
<resource value="ValueSet"/>
|
511
|
-
<warningOnly value="true"/>
|
512
|
-
</assert>
|
513
|
-
</action>
|
514
|
-
<action>
|
515
|
-
<assert>
|
516
|
-
<description value="Confirm that the returned ValueSet minimally contains the information in extensional-case-3-expand-min."/>
|
517
|
-
<minimumId value="extensional-case-3-expand-min"/>
|
518
|
-
<warningOnly value="true"/>
|
519
|
-
</assert>
|
520
|
-
</action>
|
521
|
-
</test>
|
522
|
-
|
523
|
-
<test id="1-4-SimpleExpansionExtensionalCase4">
|
524
|
-
<name value="Simple Expansion Test extensional-case-4"/>
|
525
|
-
<description value="Simple $expand operation test for ValueSet extensional-case-4."/>
|
526
|
-
|
527
|
-
<action>
|
528
|
-
<operation>
|
529
|
-
<type>
|
530
|
-
<code value="read"/>
|
531
|
-
</type>
|
532
|
-
<resource value="ValueSet"/>
|
533
|
-
<description value="Test read operation for ValueSet extensional-case-4."/>
|
534
|
-
<accept value="xml"/>
|
535
|
-
<params value="/extensional-case-4"/>
|
536
|
-
</operation>
|
537
|
-
</action>
|
538
|
-
<action>
|
539
|
-
<assert>
|
540
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
541
|
-
<response value="okay"/>
|
542
|
-
</assert>
|
543
|
-
</action>
|
544
|
-
<action>
|
545
|
-
<assert>
|
546
|
-
<description value="Confirm that the returned format is XML."/>
|
547
|
-
<contentType value="xml"/>
|
548
|
-
<warningOnly value="true"/>
|
549
|
-
</assert>
|
550
|
-
</action>
|
551
|
-
<action>
|
552
|
-
<assert>
|
553
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
554
|
-
<resource value="ValueSet"/>
|
555
|
-
<warningOnly value="true"/>
|
556
|
-
</assert>
|
557
|
-
</action>
|
558
|
-
<action>
|
559
|
-
<assert>
|
560
|
-
<validateProfileId value="ValueSetProfile"/>
|
561
|
-
<warningOnly value="true"/>
|
562
|
-
</assert>
|
563
|
-
</action>
|
564
|
-
|
565
|
-
<action>
|
566
|
-
<operation>
|
567
|
-
<type>
|
568
|
-
<code value="$expand"/>
|
569
|
-
</type>
|
570
|
-
<resource value="ValueSet"/>
|
571
|
-
<description value="Test simple $expand operation on ValueSet extensional-case-4."/>
|
572
|
-
<accept value="xml"/>
|
573
|
-
<encodeRequestUrl value="false"/>
|
574
|
-
<params value="/extensional-case-4/$expand"/>
|
575
|
-
</operation>
|
576
|
-
</action>
|
577
|
-
<action>
|
578
|
-
<assert>
|
579
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
580
|
-
<response value="okay"/>
|
581
|
-
</assert>
|
582
|
-
</action>
|
583
|
-
<action>
|
584
|
-
<assert>
|
585
|
-
<description value="Confirm that the returned format is XML."/>
|
586
|
-
<contentType value="xml"/>
|
587
|
-
<warningOnly value="true"/>
|
588
|
-
</assert>
|
589
|
-
</action>
|
590
|
-
<action>
|
591
|
-
<assert>
|
592
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
593
|
-
<resource value="ValueSet"/>
|
594
|
-
<warningOnly value="true"/>
|
595
|
-
</assert>
|
596
|
-
</action>
|
597
|
-
<action>
|
598
|
-
<assert>
|
599
|
-
<description value="Confirm that the returned ValueSet minimally contains the information in extensional-case-4-expand-min."/>
|
600
|
-
<minimumId value="extensional-case-4-expand-min"/>
|
601
|
-
<warningOnly value="true"/>
|
602
|
-
</assert>
|
603
|
-
</action>
|
604
|
-
</test>
|
605
|
-
|
606
|
-
<test id="1-5-SimpleExpansionIntensionalCase1">
|
607
|
-
<name value="Simple Expansion Test intensional-case-1"/>
|
608
|
-
<description value="Simple $expand operation test for ValueSet intensional-case-1."/>
|
609
|
-
|
610
|
-
<action>
|
611
|
-
<operation>
|
612
|
-
<type>
|
613
|
-
<code value="read"/>
|
614
|
-
</type>
|
615
|
-
<resource value="ValueSet"/>
|
616
|
-
<description value="Test read operation for ValueSet intensional-case-1."/>
|
617
|
-
<accept value="xml"/>
|
618
|
-
<params value="/intensional-case-1"/>
|
619
|
-
</operation>
|
620
|
-
</action>
|
621
|
-
<action>
|
622
|
-
<assert>
|
623
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
624
|
-
<response value="okay"/>
|
625
|
-
</assert>
|
626
|
-
</action>
|
627
|
-
<action>
|
628
|
-
<assert>
|
629
|
-
<description value="Confirm that the returned format is XML."/>
|
630
|
-
<contentType value="xml"/>
|
631
|
-
<warningOnly value="true"/>
|
632
|
-
</assert>
|
633
|
-
</action>
|
634
|
-
<action>
|
635
|
-
<assert>
|
636
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
637
|
-
<resource value="ValueSet"/>
|
638
|
-
<warningOnly value="true"/>
|
639
|
-
</assert>
|
640
|
-
</action>
|
641
|
-
<action>
|
642
|
-
<assert>
|
643
|
-
<validateProfileId value="ValueSetProfile"/>
|
644
|
-
<warningOnly value="true"/>
|
645
|
-
</assert>
|
646
|
-
</action>
|
647
|
-
|
648
|
-
<action>
|
649
|
-
<operation>
|
650
|
-
<type>
|
651
|
-
<code value="$expand"/>
|
652
|
-
</type>
|
653
|
-
<resource value="ValueSet"/>
|
654
|
-
<description value="Test simple $expand operation on ValueSet intensional-case-1."/>
|
655
|
-
<accept value="xml"/>
|
656
|
-
<encodeRequestUrl value="false"/>
|
657
|
-
<params value="/intensional-case-1/$expand"/>
|
658
|
-
</operation>
|
659
|
-
</action>
|
660
|
-
<action>
|
661
|
-
<assert>
|
662
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
663
|
-
<response value="okay"/>
|
664
|
-
</assert>
|
665
|
-
</action>
|
666
|
-
<action>
|
667
|
-
<assert>
|
668
|
-
<description value="Confirm that the returned format is XML."/>
|
669
|
-
<contentType value="xml"/>
|
670
|
-
<warningOnly value="true"/>
|
671
|
-
</assert>
|
672
|
-
</action>
|
673
|
-
<action>
|
674
|
-
<assert>
|
675
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
676
|
-
<resource value="ValueSet"/>
|
677
|
-
<warningOnly value="true"/>
|
678
|
-
</assert>
|
679
|
-
</action>
|
680
|
-
<action>
|
681
|
-
<assert>
|
682
|
-
<description value="Confirm that the returned ValueSet minimally contains the information in intensional-case-1-expand-min."/>
|
683
|
-
<minimumId value="intensional-case-1-expand-min"/>
|
684
|
-
<warningOnly value="true"/>
|
685
|
-
</assert>
|
686
|
-
</action>
|
687
|
-
</test>
|
688
|
-
|
689
|
-
<test id="1-6-SimpleExpansionIntensionalCase2">
|
690
|
-
<name value="Simple Expansion Test intensional-case-2"/>
|
691
|
-
<description value="Simple $expand operation test for ValueSet intensional-case-2."/>
|
692
|
-
|
693
|
-
<action>
|
694
|
-
<operation>
|
695
|
-
<type>
|
696
|
-
<code value="read"/>
|
697
|
-
</type>
|
698
|
-
<resource value="ValueSet"/>
|
699
|
-
<description value="Test read operation for ValueSet intensional-case-2."/>
|
700
|
-
<accept value="xml"/>
|
701
|
-
<params value="/intensional-case-2"/>
|
702
|
-
</operation>
|
703
|
-
</action>
|
704
|
-
<action>
|
705
|
-
<assert>
|
706
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
707
|
-
<response value="okay"/>
|
708
|
-
</assert>
|
709
|
-
</action>
|
710
|
-
<action>
|
711
|
-
<assert>
|
712
|
-
<description value="Confirm that the returned format is XML."/>
|
713
|
-
<contentType value="xml"/>
|
714
|
-
<warningOnly value="true"/>
|
715
|
-
</assert>
|
716
|
-
</action>
|
717
|
-
<action>
|
718
|
-
<assert>
|
719
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
720
|
-
<resource value="ValueSet"/>
|
721
|
-
<warningOnly value="true"/>
|
722
|
-
</assert>
|
723
|
-
</action>
|
724
|
-
<action>
|
725
|
-
<assert>
|
726
|
-
<validateProfileId value="ValueSetProfile"/>
|
727
|
-
<warningOnly value="true"/>
|
728
|
-
</assert>
|
729
|
-
</action>
|
730
|
-
|
731
|
-
<action>
|
732
|
-
<operation>
|
733
|
-
<type>
|
734
|
-
<code value="$expand"/>
|
735
|
-
</type>
|
736
|
-
<resource value="ValueSet"/>
|
737
|
-
<description value="Test simple $expand operation on ValueSet intensional-case-2."/>
|
738
|
-
<accept value="xml"/>
|
739
|
-
<encodeRequestUrl value="false"/>
|
740
|
-
<params value="/intensional-case-2/$expand"/>
|
741
|
-
</operation>
|
742
|
-
</action>
|
743
|
-
<action>
|
744
|
-
<assert>
|
745
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
746
|
-
<response value="okay"/>
|
747
|
-
</assert>
|
748
|
-
</action>
|
749
|
-
<action>
|
750
|
-
<assert>
|
751
|
-
<description value="Confirm that the returned format is XML."/>
|
752
|
-
<contentType value="xml"/>
|
753
|
-
<warningOnly value="true"/>
|
754
|
-
</assert>
|
755
|
-
</action>
|
756
|
-
<action>
|
757
|
-
<assert>
|
758
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
759
|
-
<resource value="ValueSet"/>
|
760
|
-
<warningOnly value="true"/>
|
761
|
-
</assert>
|
762
|
-
</action>
|
763
|
-
<action>
|
764
|
-
<assert>
|
765
|
-
<description value="Confirm that the returned ValueSet minimally contains the information in intensional-case-2-expand-min."/>
|
766
|
-
<minimumId value="intensional-case-2-expand-min"/>
|
767
|
-
<warningOnly value="true"/>
|
768
|
-
</assert>
|
769
|
-
</action>
|
770
|
-
</test>
|
771
|
-
|
772
|
-
<test id="1-7-SimpleExpansionIntensionalCase3">
|
773
|
-
<name value="Simple Expansion Test intensional-case-3"/>
|
774
|
-
<description value="Simple $expand operation test for ValueSet intensional-case-3. Server expected to return error for expansion too big, but may return expansion if expansion is supported."/>
|
775
|
-
|
776
|
-
<action>
|
777
|
-
<operation>
|
778
|
-
<type>
|
779
|
-
<code value="read"/>
|
780
|
-
</type>
|
781
|
-
<resource value="ValueSet"/>
|
782
|
-
<description value="Test read operation for ValueSet intensional-case-3."/>
|
783
|
-
<accept value="xml"/>
|
784
|
-
<params value="/intensional-case-3"/>
|
785
|
-
</operation>
|
786
|
-
</action>
|
787
|
-
<action>
|
788
|
-
<assert>
|
789
|
-
<description value="Confirm that the returned HTTP status is 200(OK)."/>
|
790
|
-
<response value="okay"/>
|
791
|
-
</assert>
|
792
|
-
</action>
|
793
|
-
<action>
|
794
|
-
<assert>
|
795
|
-
<description value="Confirm that the returned format is XML."/>
|
796
|
-
<contentType value="xml"/>
|
797
|
-
<warningOnly value="true"/>
|
798
|
-
</assert>
|
799
|
-
</action>
|
800
|
-
<action>
|
801
|
-
<assert>
|
802
|
-
<description value="Confirm that the returned resource type is ValueSet."/>
|
803
|
-
<resource value="ValueSet"/>
|
804
|
-
<warningOnly value="true"/>
|
805
|
-
</assert>
|
806
|
-
</action>
|
807
|
-
<action>
|
808
|
-
<assert>
|
809
|
-
<validateProfileId value="ValueSetProfile"/>
|
810
|
-
<warningOnly value="true"/>
|
811
|
-
</assert>
|
812
|
-
</action>
|
813
|
-
|
814
|
-
<action>
|
815
|
-
<operation>
|
816
|
-
<type>
|
817
|
-
<code value="$expand"/>
|
818
|
-
</type>
|
819
|
-
<resource value="ValueSet"/>
|
820
|
-
<description value="Test simple $expand operation on ValueSet intensional-case-3."/>
|
821
|
-
<accept value="xml"/>
|
822
|
-
<encodeRequestUrl value="false"/>
|
823
|
-
<params value="/intensional-case-3/$expand"/>
|
824
|
-
</operation>
|
825
|
-
</action>
|
826
|
-
<action>
|
827
|
-
<assert>
|
828
|
-
<description value="Confirm that the returned HTTP status is not 200(OK). Warning only as server may successfully perform expansion."/>
|
829
|
-
<operator value="notEquals"/>
|
830
|
-
<response value="okay"/>
|
831
|
-
<warningOnly value="true"/>
|
832
|
-
</assert>
|
833
|
-
</action>
|
834
|
-
<action>
|
835
|
-
<assert>
|
836
|
-
<description value="Confirm that the returned format is XML."/>
|
837
|
-
<contentType value="xml"/>
|
838
|
-
<warningOnly value="true"/>
|
839
|
-
</assert>
|
840
|
-
</action>
|
841
|
-
<action>
|
842
|
-
<assert>
|
843
|
-
<description value="Confirm that the returned resource type is OperationOutcome. Warning only as server may successfully perform expansion."/>
|
844
|
-
<resource value="OperationOutcome"/>
|
845
|
-
<warningOnly value="true"/>
|
846
|
-
</assert>
|
847
|
-
</action>
|
848
|
-
<action>
|
849
|
-
<assert>
|
850
|
-
<description value="Confirm that the returned OperationOutcome contains one fatal or error issue severity. Warning only as server may successfully perform expansion."/>
|
851
|
-
<operator value="in"/>
|
852
|
-
<path value="fhir:OperationOutcome/fhir:issue/fhir:severity/@value"/>
|
853
|
-
<value value="fatal,error"/>
|
854
|
-
<warningOnly value="true"/>
|
855
|
-
</assert>
|
856
|
-
</action>
|
857
|
-
</test>
|
858
|
-
<!--
|
859
|
-
<teardown>
|
860
|
-
<action>
|
861
|
-
<operation>
|
862
|
-
<type>
|
863
|
-
<code value="delete"/>
|
864
|
-
</type>
|
865
|
-
<resource value="ValueSet"/>
|
866
|
-
<params value="/extensional-case-1"/>
|
867
|
-
</operation>
|
868
|
-
</action>
|
869
|
-
<action>
|
870
|
-
<operation>
|
871
|
-
<type>
|
872
|
-
<code value="delete"/>
|
873
|
-
</type>
|
874
|
-
<resource value="ValueSet"/>
|
875
|
-
<params value="/extensional-case-2"/>
|
876
|
-
</operation>
|
877
|
-
</action>
|
878
|
-
<action>
|
879
|
-
<operation>
|
880
|
-
<type>
|
881
|
-
<code value="delete"/>
|
882
|
-
</type>
|
883
|
-
<resource value="ValueSet"/>
|
884
|
-
<params value="/extensional-case-3"/>
|
885
|
-
</operation>
|
886
|
-
</action>
|
887
|
-
<action>
|
888
|
-
<operation>
|
889
|
-
<type>
|
890
|
-
<code value="delete"/>
|
891
|
-
</type>
|
892
|
-
<resource value="ValueSet"/>
|
893
|
-
<params value="/extensional-case-4"/>
|
894
|
-
</operation>
|
895
|
-
</action>
|
896
|
-
<action>
|
897
|
-
<operation>
|
898
|
-
<type>
|
899
|
-
<code value="delete"/>
|
900
|
-
</type>
|
901
|
-
<resource value="ValueSet"/>
|
902
|
-
<params value="/intensional-case-1"/>
|
903
|
-
</operation>
|
904
|
-
</action>
|
905
|
-
<action>
|
906
|
-
<operation>
|
907
|
-
<type>
|
908
|
-
<code value="delete"/>
|
909
|
-
</type>
|
910
|
-
<resource value="ValueSet"/>
|
911
|
-
<params value="/intensional-case-2"/>
|
912
|
-
</operation>
|
913
|
-
</action>
|
914
|
-
<action>
|
915
|
-
<operation>
|
916
|
-
<type>
|
917
|
-
<code value="delete"/>
|
918
|
-
</type>
|
919
|
-
<resource value="ValueSet"/>
|
920
|
-
<params value="/intensional-case-3"/>
|
921
|
-
</operation>
|
922
|
-
</action>
|
923
|
-
</teardown>
|
924
|
-
-->
|
925
|
-
</TestScript>
|