summaryrefslogtreecommitdiff
path: root/qa/qa/resource/events/base.rb
blob: b50b620b143e1d8228c1dd9a68aed52020aae06b (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
# frozen_string_literal: true

module QA
  module Resource
    module Events
      MAX_WAIT = 10

      EventNotFoundError = Class.new(RuntimeError)

      module Base
        def events(action: nil)
          path = [api_get_events]
          path << "?action=#{CGI.escape(action)}" if action
          parse_body(api_get_from("#{path.join}"))
        end

        private

        def api_get_events
          "#{api_get_path}/events"
        end

        def wait_for_event
          event_found = QA::Support::Waiter.wait(max: max_wait) do
            yield
          end

          raise EventNotFoundError, "Timed out waiting for event" unless event_found
        end

        def max_wait
          MAX_WAIT
        end
      end
    end
  end
end