Class: Inferno::Entities::TestSuite

Inherits:
Object
  • Object
show all
Extended by:
Forwardable, DSL::FHIRClient::ClassMethods, DSL::HTTPClient::ClassMethods, DSL::Links, DSL::Runnable
Includes:
DSL::Assertions, DSL::FHIRResourceValidation, DSL::FHIRValidation, DSL::FhirpathEvaluation, DSL::Messages, DSL::Results
Defined in:
lib/inferno/entities/test_suite.rb

Overview

A TestSuite represents a packaged group of tests, usually for a single Implementation Guide

Constant Summary

Constants included from DSL::Links

DSL::Links::DEFAULT_TYPES

Instance Attribute Summary collapse

Attributes included from DSL::Runnable

#parent, #suite_option_requirements

Class Method Summary collapse

Methods included from DSL::Runnable

block, description, id, input_instructions, optional, optional?, required, required?, required_suite_options, resume_test_route, route, short_description, short_title, suite_endpoint, title

Methods included from DSL::Links

add_link, download_url, ig_url, links, report_issue_url, source_code_url

Methods included from DSL::FHIRClient::ClassMethods

fhir_client

Methods included from DSL::HTTPClient::ClassMethods

http_client

Methods included from DSL::Messages

#add_message, #info, #warning

Methods included from DSL::Assertions

#assert, #assert_resource_type, #assert_response_content_type, #assert_response_status, #assert_valid_bundle_entries, #assert_valid_http_uri, #assert_valid_json, #assert_valid_resource

Methods included from DSL::Results

#omit, #omit_if, #pass, #pass_if, #skip, #skip_if, #wait

Methods included from DSL::FhirpathEvaluation

#evaluate_fhirpath

Methods included from DSL::FHIRValidation

#find_validator, #resource_is_valid?

Instance Attribute Details

#result_messageObject

Returns the value of attribute result_message.



28
29
30
# File 'lib/inferno/entities/test_suite.rb', line 28

def result_message
  @result_message
end

#resultsObject

Returns the value of attribute results.



28
29
30
# File 'lib/inferno/entities/test_suite.rb', line 28

def results
  @results
end

Class Method Details

.check_configuration(&block) ⇒ void

This method returns an undefined value.

Provide a block which will verify any configuration needed for this test suite to operate properly.

Yield Returns:

  • (Array<Hash>)

    An array of message hashes containing the keys :type and :message. Type options are info, warning, and error.



118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/inferno/entities/test_suite.rb', line 118

def check_configuration(&block)
  @check_configuration_block = lambda do
    block.call&.each do |configuration_message|
      case configuration_message[:type]
      when 'warning'
        Application[:logger].warn(configuration_message[:message])
      when 'error'
        Application[:logger].error(configuration_message[:message])
      end
    end
  end
end

.groupvoid

This method returns an undefined value.

Add a child group



67
68
69
70
# File 'lib/inferno/entities/test_suite.rb', line 67

def group(...)
  ()
  define_child(...)
end

.groups(options = nil) ⇒ Array<Inferno::Entities::TestGroup>

Get this suite’s child groups, filtered by suite options, if provided.

Parameters:

Returns:



59
60
61
# File 'lib/inferno/entities/test_suite.rb', line 59

def groups(options = nil)
  children(options).select { |child| child < Inferno::Entities::TestGroup }
end

.suite_option(identifier, **option_params) ⇒ void

This method returns an undefined value.

Define an option for this suite. Options are used to define suite-wide configuration which is selected by a user at the start of a test session. These options can be used to change what tests/groups are run or behavior within particular tests.

Examples:

suite_option :ig_version,
            list_options: [
              {
                label: 'IG v1',
                value: 'ig_v1'
              },
              {
                label: 'IG v2',
                value: 'ig_v2'
              }
            ]

group from: :ig_v1_group,
      required_suite_options: { ig_version: 'ig_v1' }

group from: :ig_v2_group do
  required_suite_options ig_version: 'ig_v2'
end

Parameters:

  • identifier (Symbol, String)

    The identifier which will be used to refer to this option

  • option_params (Hash)

    a customizable set of options

Options Hash (**option_params):

  • :title (String)

    Title which will be displayed in the UI

  • :list_options (Array<Hash>)

    The list of possible values for this option. Each hash needs to have a label: and a value: entry which are Strings.



169
170
171
# File 'lib/inferno/entities/test_suite.rb', line 169

def suite_option(identifier, **option_params)
  suite_options << DSL::SuiteOption.new(option_params.merge(id: identifier))
end

.suite_optionsArray<Inferno::DSL::SuiteOption>

Returns The options defined for this suite.

Returns:



175
176
177
# File 'lib/inferno/entities/test_suite.rb', line 175

def suite_options
  @suite_options ||= []
end

.suite_summary(suite_summary = nil) ⇒ String?

Set/get a description which for this test suite which will be displayed in the UI.

Parameters:

  • suite_summary (String) (defaults to: nil)

Returns:

  • (String, nil)


185
186
187
188
189
# File 'lib/inferno/entities/test_suite.rb', line 185

def suite_summary(suite_summary = nil)
  return @suite_summary if suite_summary.nil?

  @suite_summary = format_markdown(suite_summary)
end

.test_kitInferno::Entities::TestKit

Get the TestKit this suite belongs to



194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# File 'lib/inferno/entities/test_suite.rb', line 194

def test_kit
  return @test_kit if @test_kit

  module_name = name

  while module_name.present? && @test_kit.nil?
    module_name = module_name.deconstantize

    next unless const_defined?("#{module_name}::Metadata")

    @test_kit = const_get("#{module_name}::Metadata")
  end

  @test_kit
end

.version(version = nil) ⇒ String?

Set/get the version of this test suite. Defaults to the TestKit version.

Parameters:

  • version (String) (defaults to: nil)

Returns:

  • (String, nil)


93
94
95
96
97
# File 'lib/inferno/entities/test_suite.rb', line 93

def version(version = nil)
  @version = version if version.present?

  @version || test_kit&.version
end