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

util.rb « helpers « tasks « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8eb9b02f726d47c1e722ea8435fb06f4905bd35 (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 Task
  module Helpers
    module Util
      include ::QA::Support::API

      # Append text to file
      #
      # @param [String] path
      # @param [String] text
      # @return [void]
      def append_to_file(path, text)
        File.open(path, "a") { |f| f.write(text) }
      end

      # Merge request labels
      #
      # @return [Array]
      def mr_labels
        ENV["CI_MERGE_REQUEST_LABELS"]&.split(',') || []
      end

      # Merge request changes
      #
      # @return [Array<Hash>]
      def mr_diff
        mr_iid = ENV["CI_MERGE_REQUEST_IID"]
        return [] unless mr_iid

        gitlab_endpoint = ENV["CI_API_V4_URL"]
        gitlab_token = ENV["PROJECT_TOKEN_FOR_CI_SCRIPTS_API_USAGE"]
        project_id = ENV["CI_MERGE_REQUEST_PROJECT_ID"]

        response = get(
          "#{gitlab_endpoint}/projects/#{project_id}/merge_requests/#{mr_iid}/changes",
          headers: { "PRIVATE-TOKEN" => gitlab_token }
        )

        parse_body(response).fetch(:changes, []).map do |change|
          {
            path: change[:new_path],
            **change.slice(:new_file, :deleted_file, :diff)
          }
        end
      end
    end
  end
end