Module: USCoreTestKit::FHIRResourceNavigation

Included in:
MustSupportTest, ReferenceResolutionTest, SearchTest
Defined in:
lib/us_core_test_kit/fhir_resource_navigation.rb

Instance Method Summary collapse

Instance Method Details

#find_a_value_at(element, path) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/us_core_test_kit/fhir_resource_navigation.rb', line 17

def find_a_value_at(element, path)
  return nil if element.nil?

  elements = Array.wrap(element)

  if path.empty?
    return elements.find { |el| yield(el) } if block_given?

    return elements.first
  end

  path_segments = path.split('.')
  segment = path_segments.shift.delete_suffix('[x]').to_sym

  no_elements_present =
    elements.none? do |element|
    child = get_next_value(element, segment)

    child.present? || child == false
  end

  return nil if no_elements_present

  remaining_path = path_segments.join('.')

  elements.each do |element|
    child = get_next_value(element, segment)
    element_found =
      if block_given?
        find_a_value_at(child, remaining_path) { |value_found| yield(value_found) }
      else
        find_a_value_at(child, remaining_path)
      end

    return element_found if element_found.present? || element_found == false
  end

  nil
end

#get_next_value(element, property) ⇒ Object



57
58
59
60
61
# File 'lib/us_core_test_kit/fhir_resource_navigation.rb', line 57

def get_next_value(element, property)
  element.send(property)
rescue NoMethodError
  nil
end

#resolve_path(elements, path) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/us_core_test_kit/fhir_resource_navigation.rb', line 3

def resolve_path(elements, path)
  elements = Array.wrap(elements)
  return elements if path.blank?

  paths = path.split('.')
  segment = paths.first
  remaining_path = paths.drop(1).join('.')

  elements.flat_map do |element|
    child = get_next_value(element, segment)
    resolve_path(child, remaining_path)
  end.compact
end