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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 136ce0bc24a1319f569cc5c8e5a093588bd3a04e069f5cfffa399b1813c2e2b7
4
- data.tar.gz: a11f128cfeebb624c5f6e83a3a9205a63c2024859469b0bb6d50fdc6976ee5a9
3
+ metadata.gz: 57e30707252971322a92bc313ff1d95705aea89c475cc2a1f307328ecbc09337
4
+ data.tar.gz: d3c87ac998c3369798d33125a1f71fb0b7fd10d032bf2aa6557b0a79786baf9f
5
5
  SHA512:
6
- metadata.gz: 74a918854bc39c5094a44769a47cc8ae9695547ed390733103b1e23ba295db8a1aa3abbc75e5c59a26f5aa600e170333a783c6307958e763bda8e6a8dadf9b2c
7
- data.tar.gz: 4bd7fc32a080563eb0710de0e91b38b7b76826b01bffc0c9ad0939991644bc3c647fedbd43fb6c831536d4d2fbbae37ac65da11ba12cec0fa9adbbcb0aaeeaad
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: :smart_token_refresh,
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: {
@@ -1255,6 +1255,7 @@
1255
1255
  specification in § 170.215(c).
1256
1256
  inferno_supported: 'yes'
1257
1257
  inferno_tests:
1258
+ - '11.06'
1258
1259
  - 9.11.2.01 - 9.11.2.02
1259
1260
  - 9.11.3.01 - 9.11.3.02
1260
1261
  - section: Paragraph (g)(10)(ii) – Supported search operations
@@ -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'
@@ -1,3 +1,3 @@
1
1
  module ONCCertificationG10TestKit
2
- VERSION = '6.0.0'.freeze
2
+ VERSION = '6.0.1'.freeze
3
3
  end
@@ -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.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-14 00:00:00.000000000 Z
11
+ date: 2024-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bloomer