Welcome to mirror list, hosted at ThFree Co, Russian Federation.

context_formatter.rb « formatters « support « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8991561f458389ad3ebbaae93eef90343ded1a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true

module QA
  module Support
    module Formatters
      class ContextFormatter < ::RSpec::Core::Formatters::BaseFormatter
        include Specs::Helpers::ContextSelector

        ::RSpec::Core::Formatters.register(
          self,
          :example_group_started,
          :example_started
        )

        # Starts example group
        # @param [RSpec::Core::Notifications::GroupNotification] example_group_notification
        # @return [void]
        def example_group_started(example_group_notification)
          set_skip_metadata(example_group_notification.group)
        end

        # Starts example
        # @param [RSpec::Core::Notifications::ExampleNotification] example_notification
        # @return [void]
        def example_started(example_notification)
          example = example_notification.example

          # if skip propagated from example_group, do not reset skip metadata
          set_skip_metadata(example_notification.example) unless example.metadata[:skip]
        end

        private

        # Skip example_group or example
        #
        # @param [<RSpec::Core::ExampleGroup, RSpec::Core::Example>] example
        # @return [void]
        def set_skip_metadata(example)
          return skip_only(example.metadata) if example.metadata.key?(:only)
          return skip_except(example.metadata) if example.metadata.key?(:except)
        end

        # Skip based on 'only' condition
        #
        # @param [Hash] metadata
        # @return [void]
        def skip_only(metadata)
          return if context_matches?(metadata[:only])

          metadata[:skip] = 'Test is not compatible with this environment or pipeline'
        end

        # Skip based on 'except' condition
        #
        # @param [Hash] metadata
        # @return [void]
        def skip_except(metadata)
          return unless except?(metadata[:except])

          metadata[:skip] = 'Test is excluded in this job'
        end
      end
    end
  end
end