summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/operations/metrics.rb
blob: 710cb68ed416c4afae23fca6793949bb43f3f320 (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
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Operations
        class Metrics < Page::Base
          EXPECTED_TITLE = 'Memory Usage (Total)'
          LOADING_MESSAGE = 'Waiting for performance data'

          view 'app/assets/javascripts/monitoring/components/dashboard.vue' do
            element :prometheus_graphs
          end

          view 'app/assets/javascripts/monitoring/components/panel_type.vue' do
            element :prometheus_graph_widgets
            element :prometheus_widgets_dropdown
            element :alert_widget_menu_item
          end

          def wait_for_metrics
            wait_for_data
            return if has_metrics?

            wait_until(max_duration: 180) do
              wait_for_data
              has_metrics?
            end
          end

          def wait_for_data
            wait_until(reload: false) { !has_text?(LOADING_MESSAGE) } if has_text?(LOADING_MESSAGE)
          end

          def has_metrics?
            within_element :prometheus_graphs do
              has_text?(EXPECTED_TITLE)
            end
          end
        end
      end
    end
  end
end

QA::Page::Project::Operations::Metrics.prepend_if_ee('QA::EE::Page::Project::Operations::Metrics')