Welcome to mirror list, hosted at ThFree Co, Russian Federation.

form.rb « file « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfc689daa3288a1e763de89d69f6404f8afc7a74 (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
# frozen_string_literal: true

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

        view 'app/views/projects/blob/_editor.html.haml' do
          element :file_name_field
        end

        view 'app/assets/javascripts/blob/filepath_form/components/template_selector.vue' do
          element :template_selector
        end

        def add_name(name)
          fill_element(:file_name_field, name)
        end

        def add_custom_name(template_name)
          case template_name
          # Name has to be exactly LICENSE for template-type-dropdown to appear
          when 'LICENSE'
            add_name(template_name.to_s)
          else
            add_name("#{SecureRandom.hex(8)}/#{template_name}")
          end
        end

        def select_template(template_type, template)
          case template_type
          when '.gitignore', '.gitlab-ci.yml', 'Dockerfile', 'LICENSE'
            click_element :template_selector
          else
            raise %(Unsupported template_type "#{template_type}". Please confirm that it is a valid option.)
          end
          filter_and_select template
        end
      end
    end
  end
end