onc_certification_g10_test_kit 6.0.0 → 6.0.1
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 +4 -4
- data/lib/onc_certification_g10_test_kit/base_token_refresh_stu2_group.rb +1 -1
- data/lib/onc_certification_g10_test_kit/onc_program_procedure.yml +1 -0
- data/lib/onc_certification_g10_test_kit/short_id_map.yml +1 -0
- data/lib/onc_certification_g10_test_kit/version.rb +1 -1
- data/lib/onc_certification_g10_test_kit/visual_inspection_and_attestations_group.rb +42 -0
- data/lib/onc_certification_g10_test_kit.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57e30707252971322a92bc313ff1d95705aea89c475cc2a1f307328ecbc09337
|
|
4
|
+
data.tar.gz: d3c87ac998c3369798d33125a1f71fb0b7fd10d032bf2aa6557b0a79786baf9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf3740b53d586ac040f415f33575cee9d3a4391531f2b921f020de599931937e4dc55776c108e95be872df48831c32b8f256c15773d7105a64756ff11033ff9a
|
|
7
|
+
data.tar.gz: 24e3d183e40bcbdac46e6cc497788f014b42b432bf0589231fc6b3996c3c6ca87a621f224b9cb446196ff3e94a09d3eddfda2aaf6913f24223a5b9038a47b853
|
|
@@ -37,7 +37,7 @@ module ONCCertificationG10TestKit
|
|
|
37
37
|
}
|
|
38
38
|
test from: :smart_token_refresh_body,
|
|
39
39
|
id: :g10_token_refresh_body_without_scopes
|
|
40
|
-
test from: :
|
|
40
|
+
test from: :smart_token_refresh_stu2,
|
|
41
41
|
title: 'Server successfully refreshes the access token when optional scope parameter provided',
|
|
42
42
|
id: :g10_token_refresh_with_scopes,
|
|
43
43
|
config: {
|
|
@@ -2319,6 +2319,7 @@ g10_certification-g10_visual_inspection_and_attestations-Test02: '11.02'
|
|
|
2319
2319
|
g10_certification-g10_visual_inspection_and_attestations-Test03: '11.03'
|
|
2320
2320
|
g10_certification-g10_visual_inspection_and_attestations-Test04: '11.04'
|
|
2321
2321
|
g10_certification-g10_visual_inspection_and_attestations-Test05: '11.05'
|
|
2322
|
+
g10_certification-g10_visual_inspection_and_attestations-Test06: '11.06'
|
|
2322
2323
|
g10_certification-g10_visual_inspection_and_attestations-Test07: '11.07'
|
|
2323
2324
|
g10_certification-g10_visual_inspection_and_attestations-Test08: '11.08'
|
|
2324
2325
|
g10_certification-g10_visual_inspection_and_attestations-Test09: '11.09'
|
|
@@ -189,6 +189,48 @@ module ONCCertificationG10TestKit
|
|
|
189
189
|
end
|
|
190
190
|
end
|
|
191
191
|
|
|
192
|
+
test do
|
|
193
|
+
required_suite_options G10Options::SMART_1_REQUIREMENT
|
|
194
|
+
title 'Health IT developer demonstrated the ability of the Health IT Module / ' \
|
|
195
|
+
'authorization server to validate token it has issued.'
|
|
196
|
+
description %(
|
|
197
|
+
Health IT developer demonstrated the ability of the Health IT Module /
|
|
198
|
+
authorization server to validate token it has issued.
|
|
199
|
+
|
|
200
|
+
This is a functional requirement that requires manual inspection because
|
|
201
|
+
SMART App Launch STU1 does not require a standard approach to token
|
|
202
|
+
introspection.
|
|
203
|
+
)
|
|
204
|
+
id 'Test06'
|
|
205
|
+
input :token_validation_support,
|
|
206
|
+
title: 'Health IT developer demonstrated the ability of the Health IT Module / authorization server to validate token it has issued.', # rubocop:disable Layout/LineLength
|
|
207
|
+
type: 'radio',
|
|
208
|
+
default: 'false',
|
|
209
|
+
options: {
|
|
210
|
+
list_options: [
|
|
211
|
+
{
|
|
212
|
+
label: 'Yes',
|
|
213
|
+
value: 'true'
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
label: 'No',
|
|
217
|
+
value: 'false'
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
input :token_validation_notes,
|
|
222
|
+
title: 'Notes, if applicable:',
|
|
223
|
+
type: 'textarea',
|
|
224
|
+
optional: true
|
|
225
|
+
|
|
226
|
+
run do
|
|
227
|
+
assert token_validation_support == 'true',
|
|
228
|
+
'Health IT Module did not demonstrate the ability of the Health IT Module / ' \
|
|
229
|
+
'authorization server to validate token it has issued'
|
|
230
|
+
pass token_validation_notes if token_validation_notes.present?
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
|
|
192
234
|
test do
|
|
193
235
|
title 'Tester verifies that all information is accurate and without omission.'
|
|
194
236
|
description %(
|
|
@@ -409,7 +409,8 @@ module ONCCertificationG10TestKit
|
|
|
409
409
|
group from: :g10_ehr_patient_launch_stu2,
|
|
410
410
|
required_suite_options: G10Options::SMART_2_REQUIREMENT
|
|
411
411
|
|
|
412
|
-
group from: :g10_token_introspection
|
|
412
|
+
group from: :g10_token_introspection,
|
|
413
|
+
required_suite_options: G10Options::SMART_2_REQUIREMENT
|
|
413
414
|
|
|
414
415
|
group from: :g10_asymmetric_launch,
|
|
415
416
|
required_suite_options: G10Options::SMART_2_REQUIREMENT
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: onc_certification_g10_test_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.
|
|
4
|
+
version: 6.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen MacVicar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-08-
|
|
11
|
+
date: 2024-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bloomer
|