Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FI-2406: Add Encounter context for US Core 6 #481

Merged
merged 3 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/onc_certification_g10_test_kit/short_id_map.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-g10_smart_scop
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-g10_unauthorized_access: 3.3.11
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-g10_patient_context: 3.3.12
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-g10_encounter_context: 3.3.13
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-g10_encounter_context_us_core_6: 3.3.16
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-Test13: 3.3.14
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch-Test14: 3.3.15
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2: '3.4'
Expand All @@ -160,6 +161,7 @@ g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_smart
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_unauthorized_access: 3.4.11
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_patient_context: 3.4.12
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_encounter_context: 3.4.13
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_encounter_context_us_core_6: 3.4.16
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_smart_style_url: 3.4.14
g10_certification-g10_smart_ehr_practitioner_app-smart_ehr_launch_stu2-g10_smart_need_patient_banner: 3.4.15
g10_certification-g10_smart_ehr_practitioner_app-smart_openid_connect: '3.5'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,16 @@ class SmartEHRPractitionerAppGroup < Inferno::TestGroup
},
required_suite_options: G10Options::US_CORE_5_REQUIREMENT

test from: :g10_encounter_context,
id: :g10_encounter_context_us_core_6, # rubocop:disable Naming/VariableNumber
config: {
inputs: {
encounter_id: { name: :ehr_encounter_id },
access_token: { name: :ehr_access_token }
}
},
required_suite_options: G10Options::US_CORE_6_REQUIREMENT

test do
title 'Launch context contains smart_style_url which links to valid JSON'
description %(
Expand Down Expand Up @@ -326,6 +336,16 @@ class SmartEHRPractitionerAppGroup < Inferno::TestGroup
},
required_suite_options: G10Options::US_CORE_5_REQUIREMENT

test from: :g10_encounter_context,
id: :g10_encounter_context_us_core_6, # rubocop:disable Naming/VariableNumber
config: {
inputs: {
encounter_id: { name: :ehr_encounter_id },
access_token: { name: :ehr_access_token }
}
},
required_suite_options: G10Options::US_CORE_6_REQUIREMENT

test do
title 'Launch context contains smart_style_url which links to valid JSON'
description %(
Expand Down
Loading