File: util.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (49 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download
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