summaryrefslogtreecommitdiff
path: root/qa/qa/resource/file.rb
blob: 0d2bf9890eabe7de5b83d229eb5d91c2e914981d (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# frozen_string_literal: true

module QA
  module Resource
    class File < Base
      attr_accessor :author_email,
                    :author_name,
                    :content,
                    :commit_message,
                    :name
      attr_writer :branch

      attribute :project do
        Project.fabricate! do |resource|
          resource.name = 'project-with-new-file'

          # Creating the first file via the Wed IDE is tested in
          # browser_ui/3_create/web_ide/create_first_file_in_web_ide_spec.rb
          # So here we want to use the old blob viewer, which is not
          # available via the UI unless at least one file exists, which
          # is why we create the project with a readme file.
          resource.initialize_with_readme = true
        end
      end

      def initialize
        @name = 'QA Test - File name'
        @content = 'QA Test - File content'
        @commit_message = 'QA Test - Commit message'
      end

      def branch
        @branch ||= "master"
      end

      def fabricate!
        project.visit!

        Page::Project::Show.perform(&:create_new_file!)

        Page::File::Form.perform do |form|
          form.add_name(@name)
          form.add_content(@content)
          form.add_commit_message(@commit_message)
          form.commit_changes
        end
      end

      def api_get_path
        "/projects/#{CGI.escape(project.path_with_namespace)}/repository/files/#{CGI.escape(@name)}"
      end

      def api_post_path
        api_get_path
      end

      def api_post_body
        {
          branch: branch,
          author_email: @author_email || Runtime::User.default_email,
          author_name: @author_name || Runtime::User.username,
          content: content,
          commit_message: commit_message
        }
      end

      private

      def transform_api_resource(api_resource)
        api_resource[:web_url] = "#{Runtime::Scenario.gitlab_address}/#{project.full_path}/-/tree/#{branch}/#{api_resource[:file_path]}"
        api_resource
      end
    end
  end
end