summaryrefslogtreecommitdiff
path: root/qa/qa/page/file/form.rb
blob: a6251f185f9f4f1b2d795926ca1018712680a3db (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
# frozen_string_literal: true

module QA
  module Page
    module File
      class Form < Page::Base
        include Shared::CommitMessage
        include Page::Component::DropdownFilter
        include Shared::CommitButton
        include Shared::Editor

        view 'app/views/projects/blob/_editor.html.haml' do
          element :file_name, "text_field_tag 'file_name'" # rubocop:disable QA/ElementWithPattern
        end

        view 'app/views/projects/blob/_template_selectors.html.haml' do
          element :template_type_dropdown
          element :gitignore_dropdown
          element :gitlab_ci_yml_dropdown
          element :dockerfile_dropdown
          element :license_dropdown
        end

        def add_name(name)
          fill_in 'file_name', with: name
        end

        def select_template(template_type, template)
          click_element :template_type_dropdown
          click_link template_type

          case template_type
          when '.gitignore'
            click_element :gitignore_dropdown
          when '.gitlab-ci.yml'
            click_element :gitlab_ci_yml_dropdown
          when 'Dockerfile'
            click_element :dockerfile_dropdown
          when 'LICENSE'
            click_element :license_dropdown
          else
            raise %Q(Unsupported template_type "#{template_type}". Please confirm that it is a valid option.)
          end
          filter_and_select template
        end
      end
    end
  end
end