fast_security_test_kit 0.1.0 → 0.1.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/fast_security.rb +21 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc587584640cdecbd70ebe6ca5128b85355e99cc3a374160cb4253bd2dc2fa29
|
|
4
|
+
data.tar.gz: 984a0f897766f41d206ce8ecad7668027a9cc7592dcd371ee17d6d52aa6689c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9da16ce82759325416517855f1132518391eeaf6c9bdd66af5c7e95764d6b7827ac21de0573e61d0952c4fc9a8e06fd805e7f5d7c131e5657ba11d6fbcac10b
|
|
7
|
+
data.tar.gz: 4547f4f7f528b2cb8a78467bf7aeffdd0dcd48e7a5e1d2f7065c8f05bc5c64d23a6674ceaada4256cfa80768ed62c804e0e0b16c6f9523e7c343affdf3f81a4d
|
data/lib/fast_security.rb
CHANGED
|
@@ -4,7 +4,27 @@ module FASTSecurity
|
|
|
4
4
|
class Suite < Inferno::TestSuite
|
|
5
5
|
id :fast_security
|
|
6
6
|
title 'FAST Security'
|
|
7
|
-
description
|
|
7
|
+
description %(
|
|
8
|
+
The FAST Security Suite verifies that systems correctly implement the
|
|
9
|
+
[FAST Security FHIR® IG](http://hl7.org/fhir/us/udap-security/STU1/)
|
|
10
|
+
for extending OAuth 2.0 using UDAP workflows. Currently, only the
|
|
11
|
+
[discovery
|
|
12
|
+
requirements](http://hl7.org/fhir/us/udap-security/STU1/discovery.html)
|
|
13
|
+
are tested, verifying the presence of metadata which represents server
|
|
14
|
+
capabilities. The tested metadata includes all required, optional,
|
|
15
|
+
recommended, and conditional parameters except for the optional
|
|
16
|
+
`community` parameter.
|
|
17
|
+
|
|
18
|
+
Complete testing of compliance with the FAST Security IG will require
|
|
19
|
+
testing of
|
|
20
|
+
[registration](http://hl7.org/fhir/us/udap-security/STU1/registration.html),
|
|
21
|
+
authorization and authentication of [consumer-facing
|
|
22
|
+
apps](http://hl7.org/fhir/us/udap-security/STU1/consumer.html)
|
|
23
|
+
and [B2B
|
|
24
|
+
apps](http://hl7.org/fhir/us/udap-security/STU1/b2b.html),
|
|
25
|
+
and [tiered OAuth for user
|
|
26
|
+
authentication](http://hl7.org/fhir/us/udap-security/STU1/user.html).
|
|
27
|
+
)
|
|
8
28
|
|
|
9
29
|
group from: :discovery_group
|
|
10
30
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fast_security_test_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.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:
|
|
11
|
+
date: 2023-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: inferno_core
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.3
|
|
33
|
+
version: '2.3'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.3
|
|
40
|
+
version: '2.3'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: database_cleaner-sequel
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|