summaryrefslogtreecommitdiff
path: root/qa/qa/page/clusters/shared/show.rb
blob: d516d1e36ba4614535bbee306452eb7db77d278e (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
module QA
  module Page
    module Clusters
      module Shared
        module Show
          def self.included(base)
            base.view 'app/assets/javascripts/clusters/components/application_row.vue' do
              element :application_row, 'js-cluster-application-row-${this.id}' # rubocop:disable QA/ElementWithPattern
              element :install_button, "s__('ClusterIntegration|Install')" # rubocop:disable QA/ElementWithPattern
              element :installed_button, "s__('ClusterIntegration|Installed')" # rubocop:disable QA/ElementWithPattern
            end

            base.view 'app/assets/javascripts/clusters/components/applications.vue' do
              element :ingress_ip_address, 'id="ingress-ip-address"' # rubocop:disable QA/ElementWithPattern
            end
          end

          def install!(application_name)
            within(".js-cluster-application-row-#{application_name}") do
              page.has_button?('Install', wait: 30)
              click_on 'Install'
            end
          end

          def await_installed(application_name)
            within(".js-cluster-application-row-#{application_name}") do
              page.has_text?('Installed', wait: 300)
            end
          end

          def ingress_ip
            # We need to wait longer since it can take some time before the
            # ip address is assigned for the ingress controller
            page.find('#ingress-ip-address', wait: 500).value
          end
        end
      end
    end
  end
end