Sha256: 9e156f26a048f5eade8af85bdddce810dfbc5076746b249a70eee84eb762d74b

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

require 'json'
require_relative './version'

module UDSPlusTestKit
    class ValidateImmunizationTest < Inferno::Test
        id :uds_plus_validate_immunization_test
        title 'Validate UDS+ Immunization Data'
        description %(
            Test takes the Immunization resources identified 
            by the import manifest, and validates whether they conform 
            to their UDS+ Structure Definitions.
        )

        def data_scratch
            scratch[:data_resources] ||= {}
        end

        def data_to_test
            data_scratch['Immunization'] ||= []
        end

        run do
            omit_if data_to_test.empty?, "No data of this type was identified."

            profile_definition = 'http://fhir.org/guides/hrsa/uds-plus/StructureDefinition/uds-plus-immunization'
            profile_with_version = "#{profile_definition}|#{UDS_PLUS_VERSION}"

            data_to_test.each do |resource|
                assert_valid_resource(resource: resource, profile_url: profile_with_version)
            end
        end
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
uds_plus_test_kit-1.1.2 lib/uds_plus_test_kit/validate_immunization_test.rb
uds_plus_test_kit-1.1.1 lib/uds_plus_test_kit/validate_immunization_test.rb
uds_plus_test_kit-1.1.0 lib/uds_plus_test_kit/validate_immunization_test.rb
uds_plus_test_kit-1.0.7 lib/uds_plus_test_kit/validate_immunization_test.rb