onc_certification_g10_test_kit 7.2.4 → 7.2.6
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/configuration_checker.rb +1 -1
- data/lib/onc_certification_g10_test_kit/g10_certification_suite.rb +3 -1
- data/lib/onc_certification_g10_test_kit/requirements/(g)(10)-test-procedure_requirements.xlsx +0 -0
- data/lib/onc_certification_g10_test_kit/requirements/generated/g10_certification_requirements_coverage.csv +300 -133
- data/lib/onc_certification_g10_test_kit/requirements/onc_certification_g10_test_kit_requirements.csv +328 -161
- data/lib/onc_certification_g10_test_kit/smart_scopes_test.rb +20 -18
- data/lib/onc_certification_g10_test_kit/tasks/generate_requirements_spreadsheet.rb +82 -0
- data/lib/onc_certification_g10_test_kit/version.rb +2 -2
- metadata +21 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f981bcf0cf2c3c2c8b55e6f09e8b486502e9b09fe559aa8b1f46575369fa857
|
4
|
+
data.tar.gz: abcdbeb6321e41c0ee6da7d006c124b3cf12cc90703a1abdc397ac2f25371b57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38ae65b718be52f0437db645ed1bab8e354ae5333048744069a196dd443c33be5c4a8753d5a7bd9b7437b8467031972edafbcb0ba849b32ac83aa31f243b4fc7
|
7
|
+
data.tar.gz: 9657a4b5adc95f3715db475f260610f34f92ed361073be62cc73db622d7adf96d31e6affeea40262bef10d9071d9074a268ef953f5c1d6a460f3081384ab2f79
|
@@ -2,7 +2,7 @@ require_relative '../inferno/terminology/tasks/check_built_terminology'
|
|
2
2
|
|
3
3
|
module ONCCertificationG10TestKit
|
4
4
|
class ConfigurationChecker
|
5
|
-
EXPECTED_HL7_VALIDATOR_VERSION = '1.0.
|
5
|
+
EXPECTED_HL7_VALIDATOR_VERSION = '1.0.67'.freeze
|
6
6
|
HL7_VALIDATOR_VERSION_KEY = 'validatorWrapperVersion'.freeze
|
7
7
|
|
8
8
|
def configuration_messages
|
@@ -141,7 +141,9 @@ module ONCCertificationG10TestKit
|
|
141
141
|
/\A\S+: \S+: A definition for CodeSystem '.*' could not be found, so the code cannot be validated/,
|
142
142
|
/\A\S+: \S+: URL value '.*' does not resolve/,
|
143
143
|
/\A\S+: \S+: .*\[No server available\]/, # Catch-all for certain errors when TX server is disabled
|
144
|
-
%r{\A\S+: \S+: .*\[Error from
|
144
|
+
%r{\A\S+: \S+: .*\[Error from https?://tx.fhir.org/r4:}, # Catch-all for TX server errors that slip through
|
145
|
+
# This is a strange error introduced by FHIR validator core 6.5.28.
|
146
|
+
%r{\A\S+: \S+: The System URI could not be determined for the code '.*' in the ValueSet 'http://hl7.org/fhir/ValueSet/mimetypes|4.0.1'}
|
145
147
|
].freeze
|
146
148
|
|
147
149
|
def self.setup_validator(us_core_version_requirement) # rubocop:disable Metrics/CyclomaticComplexity
|