subscriptions_test_kit 0.10.1 → 0.11.0

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: 9b0d106312b06065683c721f242cdf245652dd5b14278a933c68ebbd85d10cca
4
- data.tar.gz: 20d796f12f6c84e6f332a0b9bc990d8674077a17b927cab550d4913d1e79963d
3
+ metadata.gz: 69bd5f8b159287e00963a0a7656a70abeef3957245ffcb6d57ad7d241892f17b
4
+ data.tar.gz: 1b001157ec58dc65ef08fef2c100c05c22a4ab25c48ae839be8ffe90191082de
5
5
  SHA512:
6
- metadata.gz: 29543919ba760e5227ac5a72b27467e9b3d3f23b475d39d7c99d4e96a13467edbacefa1f5f1754f12251c25758e4109996e3cca4d703f921d7f0aed36537abc2
7
- data.tar.gz: 9b2dbbb0563af958aca05c08c3e1894c61343b3ed9a5b0dd6f86cf087f36a44a4bc3385f75d41a8577acaf0ba59db377f09ab5cdffd70d1d5775bb36132e3c95
6
+ metadata.gz: 3c45a0edc8437715a34016b2e0529267d6b96784104204ff5b4cdda0328022f141296102f1350f735f9e504212bf7b98de22340c4d8ebef5617de8e23b2934d3
7
+ data.tar.gz: 361b054f1829de4c30148a412a71c5388bcafded2bd4157e351f96ce416d06d86a99600a0dc937ab3ed0dd7b65a0af3f3de02f703a33b2902bf7a1864b59fbe0
@@ -8,8 +8,12 @@
8
8
  "value": "<%= Inferno::Application['base_url'] %>/custom/subscriptions_r5_backport_r4_client/fhir"
9
9
  },
10
10
  {
11
- "name": "credentials",
12
- "value": "{\"access_token\":\"SAMPLE_TOKEN\"}"
11
+ "name": "smart_auth_info",
12
+ "type": "auth_info",
13
+ "value": {
14
+ "auth_type": "public",
15
+ "access_token": "SAMPLE_TOKEN"
16
+ }
13
17
  },
14
18
  {
15
19
  "name": "subscription_resource",
@@ -20,4 +24,4 @@
20
24
  "value": "SAMPLE_TOKEN"
21
25
  }
22
26
  ]
23
- }
27
+ }
@@ -8,8 +8,12 @@
8
8
  "value": "<%= Inferno::Application['base_url'] %>/custom/subscriptions_r5_backport_r4_client/fhir"
9
9
  },
10
10
  {
11
- "name": "credentials",
12
- "value": "{\"access_token\":\"SAMPLE_TOKEN\"}"
11
+ "name": "smart_auth_info",
12
+ "type": "auth_info",
13
+ "value": {
14
+ "auth_type": "public",
15
+ "access_token": "SAMPLE_TOKEN"
16
+ }
13
17
  },
14
18
  {
15
19
  "name": "subscription_resource",
@@ -20,4 +24,4 @@
20
24
  "value": "SAMPLE_TOKEN"
21
25
  }
22
26
  ]
23
- }
27
+ }
@@ -8,8 +8,12 @@
8
8
  "value": "<%= Inferno::Application['base_url'] %>/custom/subscriptions_r5_backport_r4_client/fhir"
9
9
  },
10
10
  {
11
- "name": "credentials",
12
- "value": "{\"access_token\":\"SAMPLE_TOKEN\"}"
11
+ "name": "smart_auth_info",
12
+ "type": "auth_info",
13
+ "value": {
14
+ "auth_type": "public",
15
+ "access_token": "SAMPLE_TOKEN"
16
+ }
13
17
  },
14
18
  {
15
19
  "name": "subscription_resource",
@@ -20,4 +24,4 @@
20
24
  "value": "SAMPLE_TOKEN"
21
25
  }
22
26
  ]
23
- }
27
+ }
@@ -16,7 +16,7 @@ module SubscriptionsTestKit
16
16
  run_as_group
17
17
  optional
18
18
 
19
- input_order :url, :credentials, :access_token, :empty_subscription_resource
19
+ input_order :url, :smart_auth_info, :access_token, :empty_subscription_resource
20
20
 
21
21
  group from: :subscriptions_r4_server_interaction do
22
22
  id :subscriptions_r4_server_empty_content_interaction
@@ -16,7 +16,7 @@ module SubscriptionsTestKit
16
16
  run_as_group
17
17
  optional
18
18
 
19
- input_order :url, :credentials, :access_token, :full_resource_subscription_resource
19
+ input_order :url, :smart_auth_info, :access_token, :full_resource_subscription_resource
20
20
 
21
21
  group from: :subscriptions_r4_server_interaction do
22
22
  id :subscriptions_r4_server_full_resource_content_interaction
@@ -16,7 +16,7 @@ module SubscriptionsTestKit
16
16
  run_as_group
17
17
  optional
18
18
 
19
- input_order :url, :credentials, :access_token, :id_only_subscription_resource
19
+ input_order :url, :smart_auth_info, :access_token, :id_only_subscription_resource
20
20
 
21
21
  group from: :subscriptions_r4_server_interaction do
22
22
  id :subscriptions_r4_server_id_only_content_interaction
@@ -15,7 +15,7 @@ module SubscriptionsTestKit
15
15
  `empty`, `id-only`, and `full-resource`.
16
16
  )
17
17
 
18
- input_order :url, :credentials, :access_token, :empty_subscription_resource,
18
+ input_order :url, :smart_auth_info, :access_token, :empty_subscription_resource,
19
19
  :id_only_subscription_resource, :full_resource_subscription_resource
20
20
 
21
21
  group from: :subscriptions_r4_server_empty_content
@@ -16,7 +16,7 @@ module SubscriptionsTestKit
16
16
  Subscription creation requests.
17
17
  )
18
18
 
19
- input_order :url, :credentials, :subscription_resource, :unsupported_subscription_topic,
19
+ input_order :url, :smart_auth_info, :subscription_resource, :unsupported_subscription_topic,
20
20
  :unsupported_subscription_filter, :unsupported_subscription_channel_type,
21
21
  :unsupported_subscription_channel_endpoint, :unsupported_subscription_payload_type,
22
22
  :unsupported_subscription_channel_payload_combo
@@ -18,7 +18,7 @@ module SubscriptionsTestKit
18
18
 
19
19
  run_as_group
20
20
 
21
- input_order :url, :credentials, :access_token, :subscription_resource
21
+ input_order :url, :smart_auth_info, :access_token, :subscription_resource
22
22
 
23
23
  group from: :subscriptions_r4_server_interaction
24
24
  group from: :subscriptions_r4_server_interaction_verification
@@ -44,16 +44,19 @@ module SubscriptionsTestKit
44
44
  these tests.
45
45
  )
46
46
 
47
- input :credentials,
47
+ input :smart_auth_info,
48
48
  title: 'OAuth Credentials',
49
49
  description: 'Credentials for Inferno to include when making requests against the server under test.',
50
- type: :oauth_credentials,
51
- optional: true
50
+ type: :auth_info,
51
+ optional: true,
52
+ options: {
53
+ mode: 'access'
54
+ }
52
55
 
53
56
  # All FHIR requests in this suite will use this FHIR client
54
57
  fhir_client do
55
58
  url :url
56
- oauth_credentials :credentials
59
+ auth_info :smart_auth_info
57
60
  end
58
61
 
59
62
  # All FHIR validation requests will use this FHIR validator
@@ -1,4 +1,4 @@
1
1
  module SubscriptionsTestKit
2
- VERSION = '0.10.1'.freeze
3
- LAST_UPDATED = '2025-02-25'.freeze
2
+ VERSION = '0.11.0'.freeze
3
+ LAST_UPDATED = '2025-03-19'.freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subscriptions_test_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karl Naden, Emily Semple, Tom Strassner