summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/operations/kubernetes/add_existing.rb
blob: 38f8527b9b48b4d5294f305b12529209e49105c5 (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
module QA
  module Page
    module Project
      module Operations
        module Kubernetes
          class AddExisting < Page::Base
            view 'app/views/projects/clusters/user/_form.html.haml' do
              element :cluster_name, 'text_field :name'
              element :api_url, 'text_field :api_url'
              element :ca_certificate, 'text_area :ca_cert'
              element :token, 'text_field :token'
              element :add_cluster_button, "submit s_('ClusterIntegration|Add Kubernetes cluster')"
              element :rbac_checkbox
            end

            def set_cluster_name(name)
              fill_in 'cluster_name', with: name
            end

            def set_api_url(api_url)
              fill_in 'cluster_platform_kubernetes_attributes_api_url', with: api_url
            end

            def set_ca_certificate(ca_certificate)
              fill_in 'cluster_platform_kubernetes_attributes_ca_cert', with: ca_certificate
            end

            def set_token(token)
              fill_in 'cluster_platform_kubernetes_attributes_token', with: token
            end

            def add_cluster!
              click_on 'Add Kubernetes cluster'
            end

            def check_rbac!
              check_element :rbac_checkbox
            end
          end
        end
      end
    end
  end
end