summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/ci_variables.rb
blob: 567fe6f83c86de353a19000b1f42f5cf1acca72d (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
47
48
49
50
51
52
53
54
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Settings
        class CiVariables < Page::Base
          include Common

          view 'app/views/ci/variables/_variable_row.html.haml' do
            element :variable_row, '.ci-variable-row-body' # rubocop:disable QA/ElementWithPattern
            element :variable_key, '.qa-ci-variable-input-key' # rubocop:disable QA/ElementWithPattern
            element :variable_value, '.qa-ci-variable-input-value' # rubocop:disable QA/ElementWithPattern
          end

          view 'app/views/ci/variables/_index.html.haml' do
            element :save_variables, '.js-ci-variables-save-button' # rubocop:disable QA/ElementWithPattern
            element :reveal_values, '.js-secret-value-reveal-button' # rubocop:disable QA/ElementWithPattern
          end

          def fill_variable(key, value)
            keys = all_elements(:ci_variable_input_key)
            index = keys.size - 1

            # After we fill the key, JS would generate another field so
            # we need to use the same index to find the corresponding one.
            keys[index].set(key)
            node = all_elements(:ci_variable_input_value)[index]

            # Simply run `node.set(value)` is too slow for long text here,
            # so we need to run JavaScript directly to set the value.
            # The code was inspired from:
            # https://github.com/teamcapybara/capybara/blob/679548cea10773d45e32808f4d964377cfe5e892/lib/capybara/selenium/node.rb#L217
            execute_script("arguments[0].value = #{value.to_json}", node)
          end

          def save_variables
            find('.js-ci-variables-save-button').click
          end

          def reveal_variables
            find('.js-secret-value-reveal-button').click
          end

          def variable_value(key)
            within('.ci-variable-row-body', text: key) do
              find('.qa-ci-variable-input-value').value
            end
          end
        end
      end
    end
  end
end