summaryrefslogtreecommitdiff
path: root/app/models/integrations/mock_ci.rb
blob: cd2928136efb341f2ff7c84a4a7c2e6d35cf02d4 (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
76
77
78
79
80
81
# frozen_string_literal: true

# For an example companion mocking service, see https://gitlab.com/gitlab-org/gitlab-mock-ci-service
module Integrations
  class MockCi < BaseCi
    prepend EnableSslVerification

    ALLOWED_STATES = %w[failed canceled running pending success success-with-warnings skipped not_found].freeze

    field :mock_service_url,
      title: s_('ProjectService|Mock service URL'),
      placeholder: 'http://localhost:4004',
      required: true

    validates :mock_service_url, presence: true, public_url: true, if: :activated?

    def title
      'MockCI'
    end

    def description
      'Mock an external CI'
    end

    def self.to_param
      'mock_ci'
    end

    # Return complete url to build page
    #
    # Ex.
    #   http://jenkins.example.com:8888/job/test1/scm/bySHA1/12d65c
    #
    def build_page(sha, ref)
      Gitlab::Utils.append_path(
        mock_service_url,
        "#{project.namespace.path}/#{project.path}/status/#{sha}")
    end

    # Return string with build status or :error symbol
    #
    # Allowed states: 'success', 'failed', 'running', 'pending', 'skipped'
    #
    # Ex.
    #   @service.commit_status('13be4ac', 'master')
    #   # => 'success'
    #
    #   @service.commit_status('2abe4ac', 'dev')
    #   # => 'running'
    #
    def commit_status(sha, ref)
      response = Gitlab::HTTP.get(commit_status_path(sha), verify: enable_ssl_verification, use_read_total_timeout: true)
      read_commit_status(response)
    rescue Errno::ECONNREFUSED
      :error
    end

    def commit_status_path(sha)
      Gitlab::Utils.append_path(
        mock_service_url,
        "#{project.namespace.path}/#{project.path}/status/#{sha}.json")
    end

    def read_commit_status(response)
      return :pending if response.code == 404
      return :error unless response.code == 200

      begin
        status = Gitlab::Json.parse(response.body).try(:fetch, 'status', nil)
        return status if ALLOWED_STATES.include?(status)
      rescue JSON::ParserError
      end

      :error
    end

    def testable?
      false
    end
  end
end