plan_executor 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +44 -0
- data/.simplecov +16 -0
- data/.travis.yml +13 -0
- data/Gemfile +26 -0
- data/Gemfile.lock +197 -0
- data/LICENSE +201 -0
- data/README.md +126 -0
- data/Rakefile +25 -0
- data/fixtures/daf/conformance-daf-query-responder.xml +1471 -0
- data/fixtures/diagnostic_order/do-100.xml +64 -0
- data/fixtures/diagnostic_order/do-200.xml +121 -0
- data/fixtures/diagnostic_order/do-300.xml +91 -0
- data/fixtures/diagnostic_order/do-400.xml +88 -0
- data/fixtures/diagnostic_report/dr-100.xml +96 -0
- data/fixtures/diagnostic_report/dr-200.xml +125 -0
- data/fixtures/diagnostic_report/dr-300.xml +132 -0
- data/fixtures/diagnostic_report/dr-400.xml +121 -0
- data/fixtures/financial/claim-example-average.xml +168 -0
- data/fixtures/financial/claim-example-simple.xml +67 -0
- data/fixtures/observation/obs-100.xml +58 -0
- data/fixtures/observation/obs-101.xml +58 -0
- data/fixtures/observation/obs-200.xml +125 -0
- data/fixtures/observation/obs-300.xml +106 -0
- data/fixtures/observation/obs-301.xml +106 -0
- data/fixtures/observation/obs-302.xml +106 -0
- data/fixtures/observation/obs-303.xml +106 -0
- data/fixtures/observation/obs-304.xml +106 -0
- data/fixtures/observation/obs-400.xml +87 -0
- data/fixtures/observation/obs-401.xml +95 -0
- data/fixtures/observation/obs-402.xml +95 -0
- data/fixtures/observation/obs-403.xml +84 -0
- data/fixtures/observation/obs-404.xml +84 -0
- data/fixtures/observation/obs-405.xml +83 -0
- data/fixtures/observation/obs-406.xml +83 -0
- data/fixtures/observation/obs-407.xml +70 -0
- data/fixtures/observation/obs-408.xml +84 -0
- data/fixtures/observation/obs-uslab-example5.xml +102 -0
- data/fixtures/order/order-100.xml +61 -0
- data/fixtures/order/order-200.xml +61 -0
- data/fixtures/order/order-300.xml +61 -0
- data/fixtures/order/order-400.xml +61 -0
- data/fixtures/order_response/ordresp-100.xml +79 -0
- data/fixtures/order_response/ordresp-110.xml +79 -0
- data/fixtures/order_response/ordresp-200.xml +79 -0
- data/fixtures/order_response/ordresp-210.xml +79 -0
- data/fixtures/order_response/ordresp-300.xml +79 -0
- data/fixtures/order_response/ordresp-310.xml +79 -0
- data/fixtures/order_response/ordresp-400.xml +79 -0
- data/fixtures/order_response/ordresp-410.xml +79 -0
- data/fixtures/organization/org-uslab-example3.xml +49 -0
- data/fixtures/patient/patient-example-updated.xml +140 -0
- data/fixtures/patient/patient-example-us-extensions(us01).xml +81 -0
- data/fixtures/patient/patient-example.xml +132 -0
- data/fixtures/patient/patient-format-example.xml +101 -0
- data/fixtures/patient/patient-minimal.xml +9 -0
- data/fixtures/patient/patient-uslab-example1.xml +44 -0
- data/fixtures/practitioner/pract-uslab-example1.xml +18 -0
- data/fixtures/practitioner/pract-uslab-example3.xml +36 -0
- data/fixtures/record/condition-example-f201-fever.xml +63 -0
- data/fixtures/record/condition-example-f205-infection.xml +20 -0
- data/fixtures/record/diagnosticreport-example-f201-brainct.xml +18 -0
- data/fixtures/record/encounter-example-f201-20130404.xml +17 -0
- data/fixtures/record/encounter-example-f202-20130128.xml +17 -0
- data/fixtures/record/observation-example-f202-temperature.xml +60 -0
- data/fixtures/record/organization-example-f201-aumc.xml +5 -0
- data/fixtures/record/organization-example-f203-bumc.xml +5 -0
- data/fixtures/record/patient-example-f201-roel.xml +16 -0
- data/fixtures/record/practitioner-example-f201-ab.xml +14 -0
- data/fixtures/record/procedure-example-f201-tpf.xml +23 -0
- data/fixtures/scheduling/appointment-simple.xml +24 -0
- data/fixtures/scheduling/appointmentresponse-patient-simple.xml +12 -0
- data/fixtures/scheduling/appointmentresponse-practitioner-simple.xml +12 -0
- data/fixtures/scheduling/practitioner-simple.xml +10 -0
- data/fixtures/scheduling/schedule-simple.xml +12 -0
- data/fixtures/scheduling/slot-simple.xml +10 -0
- data/fixtures/specimen/spec-100.xml +65 -0
- data/fixtures/specimen/spec-400.xml +70 -0
- data/fixtures/specimen/spec-uslab-example1.xml +82 -0
- data/fixtures/validation/observation.profile.xml +2045 -0
- data/fixtures/validation/observations/observation-example(example).xml +50 -0
- data/lib/FHIR_structure.json +529 -0
- data/lib/daf_resource_generator.rb +94 -0
- data/lib/data/fhir_structure.rb +8 -0
- data/lib/data/resources.rb +138 -0
- data/lib/executor.rb +56 -0
- data/lib/ext/client.rb +27 -0
- data/lib/ext/client_reply.rb +19 -0
- data/lib/plan_executor.rb +31 -0
- data/lib/resource_generator.rb +656 -0
- data/lib/tasks/tasks.rake +329 -0
- data/lib/tasks/templates/summary.html.erb +163 -0
- data/lib/test_result.rb +69 -0
- data/lib/tests/assertions.rb +261 -0
- data/lib/tests/base_test.rb +117 -0
- data/lib/tests/suites/argonaut_resprint_1_test.rb +260 -0
- data/lib/tests/suites/argonaut_resprint_2_test.rb +369 -0
- data/lib/tests/suites/argonaut_resprint_3_test.rb +309 -0
- data/lib/tests/suites/argonaut_sprint_1_test.rb +187 -0
- data/lib/tests/suites/argonaut_sprint_2_test.rb +115 -0
- data/lib/tests/suites/argonaut_sprint_3_test.rb +208 -0
- data/lib/tests/suites/argonaut_sprint_4_test.rb +335 -0
- data/lib/tests/suites/argonaut_sprint_5_test.rb +196 -0
- data/lib/tests/suites/argonaut_sprint_6_test.rb +243 -0
- data/lib/tests/suites/argonaut_sprint_7_test.rb +161 -0
- data/lib/tests/suites/base_suite.rb +116 -0
- data/lib/tests/suites/connectathon_audit_track.rb +354 -0
- data/lib/tests/suites/connectathon_fetch_patient_record.rb +443 -0
- data/lib/tests/suites/connectathon_financial_track.rb +380 -0
- data/lib/tests/suites/connectathon_lab_order_track.rb +239 -0
- data/lib/tests/suites/connectathon_patient_track.rb +364 -0
- data/lib/tests/suites/connectathon_profile_validation.rb +101 -0
- data/lib/tests/suites/connectathon_scheduling_track.rb +266 -0
- data/lib/tests/suites/connectathon_terminology_track.rb +242 -0
- data/lib/tests/suites/daf_profiles_test.rb +431 -0
- data/lib/tests/suites/format_test.rb +453 -0
- data/lib/tests/suites/history_test.rb +311 -0
- data/lib/tests/suites/read_test.rb +104 -0
- data/lib/tests/suites/resource_test.rb +553 -0
- data/lib/tests/suites/search_test.rb +219 -0
- data/lib/tests/suites/search_test_robust.rb +172 -0
- data/lib/tests/suites/sprinkler_search_test.rb +660 -0
- data/lib/tests/suites/suite_engine.rb +114 -0
- data/lib/tests/suites/transaction_test.rb +571 -0
- data/lib/tests/testscripts/base_testscript.rb +480 -0
- data/lib/tests/testscripts/testscript_engine.rb +81 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-json.xml +348 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-xml.xml +348 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-json.xml +420 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-xml.xml +420 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/README.html +68 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-json.xml +352 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-xml.xml +352 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-json.xml +421 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-xml.xml +421 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/conformance/PatientConformance.xml +34 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-PeterChalmers-min.json +45 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-PeterChalmers-min.xml +26 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-PeterChalmers.json +100 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-PeterChalmers.xml +102 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-bonus-PeterChalmers-min.json +53 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-bonus-PeterChalmers-min.xml +30 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-bonus-PeterChalmers.json +108 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-create-bonus-PeterChalmers.xml +108 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-PeterChalmers-min.json +45 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-PeterChalmers-min.xml +26 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-PeterChalmers.json +100 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-PeterChalmers.xml +102 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus1-PeterChalmers-min.json +53 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus1-PeterChalmers-min.xml +30 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus1-PeterChalmers.json +108 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus1-PeterChalmers.xml +107 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus2-PeterChalmers-min.json +53 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus2-PeterChalmers-min.xml +31 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus2-PeterChalmers.json +108 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/_reference/resources/patient-update-bonus2-PeterChalmers.xml +106 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/C-CDA_R2-1_CCD-ussg.xml +3414 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A1-empty-on-instance.xml +9 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A2-empty-by-ref.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A3-empty-by-identifier.xml +13 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A4-empty-by-contained.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B1-CCDA-on-instance.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B2-CCDA-by-ref.xml +21 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B3-CCDA-by-identifier.xml +19 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B4-CCDA-by-contained.xml +21 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaire-sdc-profile-example-ussg-fht.xml +3905 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-CCDA.xml +190 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-empty.xml +177 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/track11-sdc-prepop-xml.xml +142 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite1-expand-client-id.xml +925 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite2-expand-filter-client-id.xml +930 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite1-expand-server-id.xml +953 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite2-expand-filter-server-id.xml +958 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-loinc-lookup-xml.xml +224 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-snomed-lookup-xml.xml +224 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/README.html +85 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Translate/track2-ts-suite6-translate-xml.xml +224 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite3-validate-code-client-id.xml +1807 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite4-validate-code-client-id.xml +714 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite3-validate-code-server-id.xml +1835 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite4-validate-code-server-id.xml +742 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ConceptMapSuite6Conformance.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite1Conformance.xml +17 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite2Conformance.xml +17 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite3Conformance.xml +14 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite4Conformance.xml +14 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite5Conformance.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-a.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-b.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-a.xml +13 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-b.xml +13 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-a.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-b.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-2.xml +10 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-3.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-2.xml +10 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-3.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-2.xml +14 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-3.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-expand-min.xml +47 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-filter-min.xml +23 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-expand-min.xml +132 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-filter-min.xml +38 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-expand-min.xml +252 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-filter-min.xml +58 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-expand-min.xml +57 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-filter-min.xml +28 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-expand-min.xml +347 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-filter-min.xml +33 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-expand-min.xml +637 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-filter-min.xml +33 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-3-filter-min.xml +58 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-loinc-min.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-snomed-min.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-invalid-min.xml +10 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-valid-min.xml +7 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-invalid-min.xml +10 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-valid-min.xml +7 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/translate-conceptmap-min.xml +17 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-1.xml +55 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-2.xml +122 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-3.xml +222 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-4.xml +65 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-1.xml +31 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-2.xml +31 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-3.xml +31 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/translate-conceptmap-case-1.xml +145 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/conformance/DecisionSupportServiceModule-Evaluate.xml +17 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-request-payload.xml +26 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-min-payload.xml +7 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-payload.xml +332 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-request-payload.xml +28 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-min-payload.xml +7 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-payload.xml +20 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-request-payload.xml +28 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-min-payload.xml +7 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-payload.xml +332 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-request-payload.xml +28 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-min-payload.xml +7 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-payload.xml +8 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-request-payload.xml +176 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload-min.xml +32 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload.xml +80 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-cdc-immunization.xml +290 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-gao-profile.xml +110 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/Client_Assigned_Id/TestScript_FHIR-Genomics.xml +170 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-1.xml +31 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-2.xml +31 -0
- 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 +590 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder200-xml.xml +587 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder300-xml.xml +612 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder400-xml.xml +635 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Peer-to-Peer/track7-laborder100-peer2peer-xml.xml +752 -0
- 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 +187 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/html.xslt +45 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100-update.xml +64 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100.xml +64 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200-update.xml +121 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200.xml +121 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300-update.xml +91 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300.xml +91 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-400-update.xml +88 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-400.xml +88 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-100.xml +96 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-200.xml +125 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-300.xml +132 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-400.xml +121 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-100.xml +58 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-101.xml +58 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-200.xml +125 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-300.xml +106 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-301.xml +106 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-302.xml +106 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-303.xml +106 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-304.xml +106 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-400.xml +87 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-401.xml +95 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-402.xml +95 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-403.xml +84 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-404.xml +84 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-405.xml +83 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-406.xml +83 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-407.xml +70 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-408.xml +84 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-uslab-example5.xml +102 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-100.xml +61 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-200.xml +61 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-300.xml +61 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-400.xml +61 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-100.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-110.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-200.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-210.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-300.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-310.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-400.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-410.xml +79 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Organization/org-uslab-example3.xml +49 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Patient/patient-uslab-example1.xml +44 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example1.xml +18 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example3.xml +36 -0
- 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 +65 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-400.xml +70 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-uslab-example1.xml +82 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 1 Document.txt +122 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 2 Document.txt +103 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 3 Document.txt +201 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 4 Document.txt +310 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/MedicationStatementCreate.xml +11 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/PatientSearchType.xml +15 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-create.json +39 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-patch.json +3 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json-if-match.xml +321 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json.xml +303 -0
- data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-peer2peer-patient-json.xml +235 -0
- data/plan_executor.gemspec +14 -0
- data/test/fixtures/diagnostic_bundle.xml +51 -0
- data/test/fixtures/lab_results_bundle.xml +49 -0
- data/test/fixtures/observation_bundle.json +61 -0
- data/test/fixtures/testscript-example.xml +202 -0
- data/test/fixtures/testscript-history.xml +143 -0
- data/test/fixtures/testscript-readtest.xml +272 -0
- data/test/fixtures/testscript-search.xml +282 -0
- data/test/fixtures/testscript-update.xml +147 -0
- data/test/fixtures/vital_signs_bundle.xml +117 -0
- data/test/test_helper.rb +8 -0
- data/test/unit/argonaut_sprint6_test.rb +31 -0
- data/test/unit/argonaut_sprint7_test.rb +21 -0
- data/test/unit/basic_test.rb +27 -0
- data/test/unit/fetch_patient_record_test.rb +357 -0
- data/test/unit/financial_test.rb +41 -0
- data/test/unit/fixtures_test.rb +45 -0
- data/test/unit/metadata_test.rb +33 -0
- metadata +394 -0
|
@@ -0,0 +1,925 @@
|
|
|
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>
|