summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/infrastructure/kubernetes/show.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/project/infrastructure/kubernetes/show.rb')
-rw-r--r--qa/qa/page/project/infrastructure/kubernetes/show.rb110
1 files changed, 110 insertions, 0 deletions
diff --git a/qa/qa/page/project/infrastructure/kubernetes/show.rb b/qa/qa/page/project/infrastructure/kubernetes/show.rb
new file mode 100644
index 00000000000..e3b4f8fe4d9
--- /dev/null
+++ b/qa/qa/page/project/infrastructure/kubernetes/show.rb
@@ -0,0 +1,110 @@
+# frozen_string_literal: true
+
+module QA
+ module Page
+ module Project
+ module Infrastructure
+ module Kubernetes
+ class Show < Page::Base
+ view 'app/assets/javascripts/clusters/components/applications.vue' do
+ element :ingress_ip_address, 'id="ingress-endpoint"' # rubocop:disable QA/ElementWithPattern
+ end
+
+ view 'app/assets/javascripts/clusters/forms/components/integration_form.vue' do
+ element :integration_status_toggle, required: true
+ element :base_domain_field, required: true
+ element :save_changes_button, required: true
+ end
+
+ view 'app/views/clusters/clusters/_details_tab.html.haml' do
+ element :details, required: true
+ end
+
+ view 'app/views/clusters/clusters/_applications_tab.html.haml' do
+ element :applications, required: true
+ end
+
+ view 'app/assets/javascripts/clusters/components/application_row.vue' do
+ element :install_button
+ element :uninstall_button
+ end
+
+ view 'app/views/clusters/clusters/_health.html.haml' do
+ element :cluster_health_section
+ end
+
+ view 'app/views/clusters/clusters/_health_tab.html.haml' do
+ element :health, required: true
+ end
+
+ def open_details
+ has_element?(:details, wait: 30)
+ click_element :details
+ end
+
+ def open_applications
+ has_element?(:applications, wait: 30)
+ click_element :applications
+ end
+
+ def install!(application_name)
+ within_element(application_name) do
+ has_element?(:install_button, application: application_name, wait: 30)
+ click_element :install_button
+ end
+ end
+
+ def await_installed(application_name)
+ within_element(application_name) do
+ has_element?(:uninstall_button, application: application_name, wait: 300, skip_finished_loading_check: true)
+ end
+ end
+
+ def has_application_installed?(application_name)
+ within_element(application_name) do
+ has_element?(:uninstall_button, application: application_name, 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-endpoint', wait: 1200).value
+ end
+
+ def set_domain(domain)
+ fill_element :base_domain_field, domain
+ end
+
+ def save_domain
+ click_element :save_changes_button, Page::Project::Infrastructure::Kubernetes::Show
+ end
+
+ def wait_for_cluster_health
+ wait_until(max_duration: 120, sleep_interval: 3, reload: true) do
+ has_cluster_health_graphs?
+ end
+ end
+
+ def open_health
+ has_element?(:health, wait: 30)
+ click_element :health
+ end
+
+ def has_cluster_health_graphs?
+ within_cluster_health_section do
+ has_text?('CPU Usage')
+ end
+ end
+
+ def within_cluster_health_section
+ within_element :cluster_health_section do
+ yield
+ end
+ end
+ end
+ end
+ end
+ end
+ end
+end