subscriptions_test_kit 0.11.0 → 0.11.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: 69bd5f8b159287e00963a0a7656a70abeef3957245ffcb6d57ad7d241892f17b
4
- data.tar.gz: 1b001157ec58dc65ef08fef2c100c05c22a4ab25c48ae839be8ffe90191082de
3
+ metadata.gz: c9611a683997bd3e7a27a77ea04fccf554db03754c3946cac7b309890cb288fb
4
+ data.tar.gz: '09a2627b220c04aa0352ee45d8ee703841d5f3bde433c2adb4bc8f3b70605315'
5
5
  SHA512:
6
- metadata.gz: 3c45a0edc8437715a34016b2e0529267d6b96784104204ff5b4cdda0328022f141296102f1350f735f9e504212bf7b98de22340c4d8ebef5617de8e23b2934d3
7
- data.tar.gz: 361b054f1829de4c30148a412a71c5388bcafded2bd4157e351f96ce416d06d86a99600a0dc937ab3ed0dd7b65a0af3f3de02f703a33b2902bf7a1864b59fbe0
6
+ metadata.gz: 71d120fa262f7180abd5d13542d7daed8ea5b2c49559a603775e19eb233363524d7415911053fbe4b8491a0ab3ec2dc32b6d08ec94bc07c95eb4173ba9132a72
7
+ data.tar.gz: 06d457b7e543514a0e76fe061149bbc2e94dff646f0083081a7351ff029f46403c60e662e3fd10154fb2d61868d5c422cdb782786f0575d413bd291559435c1f
@@ -66,7 +66,6 @@ module SubscriptionsTestKit
66
66
  profile_url: 'http://hl7.org/fhir/uv/subscriptions-backport/StructureDefinition/backport-subscription')
67
67
 
68
68
  cross_version_extension_check(subscription)
69
- subscription
70
69
  end
71
70
 
72
71
  def server_check_channel(subscription, access_token)
@@ -13,7 +13,7 @@ module SubscriptionsTestKit
13
13
  title 'Demonstrate the Rest-Hook Subscription Workflow'
14
14
  description %(
15
15
  This test allows the tester to demonstrate the ability of the client
16
- to request the= creation of a FHIR Subscription instance and receive
16
+ to request the creation of a FHIR Subscription instance and receive
17
17
  notifications for that Subscription.
18
18
 
19
19
  The tester must provide the body of an event notification
@@ -21,9 +21,8 @@ module SubscriptionsTestKit
21
21
  fhir_get_capability_statement
22
22
  assert_response_status(200)
23
23
  assert_resource_type(:capability_statement)
24
- assert_valid_resource
25
-
26
24
  scratch[:capability_statement] ||= resource
25
+ assert_valid_resource
27
26
 
28
27
  assert(resource.rest.present?, 'Capability Statement missing the `rest` field')
29
28
  rest_server = resource.rest.find { |elem| elem.mode == 'server' }
@@ -57,10 +57,16 @@ module SubscriptionsTestKit
57
57
 
58
58
  run do
59
59
  omit_if subscription_resource.blank?, 'Did not input a Subscription resource of this type.'
60
- subscription = subscription_verification(subscription_resource)
60
+ assert_valid_json(subscription_resource)
61
+ assert_resource_type('Subscription', resource: FHIR.from_contents(subscription_resource))
62
+ subscription = JSON.parse(subscription_resource)
63
+ server_check_channel(subscription, access_token)
64
+
65
+ updated_subscription = subscription.to_json
66
+ output(updated_subscription:)
67
+
68
+ subscription_verification(updated_subscription)
61
69
  no_error_verification('Subscription resource is not conformant.')
62
- subscription = server_check_channel(subscription, access_token)
63
- output updated_subscription: subscription.to_json
64
70
  end
65
71
  end
66
72
  end
@@ -50,12 +50,13 @@ module SubscriptionsTestKit
50
50
  end
51
51
 
52
52
  def subscription_payload_type(subscription)
53
- return unless subscription['channel']['_payload']
53
+ payload_extensions = subscription.dig('channel', '_payload', 'extension')
54
+ return unless payload_extensions
54
55
 
55
- payload_extension = subscription['channel']['_payload']['extension'].find do |ext|
56
+ payload_type = payload_extensions.find do |ext|
56
57
  ext['url'].ends_with?('/backport-payload-content')
57
58
  end
58
- payload_extension['valueCode']
59
+ payload_type&.dig('valueCode')
59
60
  end
60
61
 
61
62
  def send_subscription(subscription)
@@ -1,4 +1,4 @@
1
1
  module SubscriptionsTestKit
2
- VERSION = '0.11.0'.freeze
3
- LAST_UPDATED = '2025-03-19'.freeze
2
+ VERSION = '0.11.1'.freeze
3
+ LAST_UPDATED = '2025-04-03'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subscriptions_test_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karl Naden, Emily Semple, Tom Strassner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-19 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: inferno_core