49 lines
1.9 KiB
Ruby
49 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Page
|
|
module Group
|
|
module Settings
|
|
class UsageQuotas < Chemlab::Page
|
|
link :pipeline_tab, id: 'pipelines-quota'
|
|
link :storage_tab, id: 'storage-quota'
|
|
link :buy_ci_minutes, text: 'Buy additional minutes'
|
|
link :buy_storage, text: /Purchase more storage/
|
|
strong :additional_minutes, text: 'Additional minutes'
|
|
strong :plan_minutes, text: 'Current period usage'
|
|
div :purchased_usage, 'data-testid': 'purchased-usage'
|
|
div(:plan_minutes_usage) { plan_minutes_element.following_sibling.span }
|
|
div(:additional_minutes_usage) { additional_minutes_element.following_sibling.span }
|
|
div :ci_purchase_successful_alert, text: /You have successfully purchased CI minutes/
|
|
div :storage_purchase_successful_alert, text: /You have successfully purchased a storage/
|
|
h4 :storage_available_alert, text: /purchased storage is available/
|
|
|
|
def plan_minutes_limits
|
|
plan_minutes_usage[%r{([^/ ]+)$}]
|
|
end
|
|
|
|
def additional_limits
|
|
additional_minutes_usage[%r{([^/ ]+)$}]
|
|
end
|
|
|
|
# Waits and Checks if storage available alert presents on the page
|
|
#
|
|
# @return [Boolean] True if the alert presents, false if not after 5 second wait
|
|
def purchased_storage_available?
|
|
storage_available_alert_element.wait_until(timeout: 5, &:present?)
|
|
rescue Watir::Wait::TimeoutError
|
|
false
|
|
end
|
|
|
|
# Returns total purchased storage value once it's ready on page
|
|
#
|
|
# @return [Float] Total purchased storage value in GiB
|
|
def total_purchased_storage
|
|
storage_available_alert_element.wait_until(&:present?)
|
|
purchased_usage_element.p.spans[3].text.to_f
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|