debian-mirror-gitlab/app/models/integrations/mock_ci.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.1 KiB
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# 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
2022-02-05 19:09:49 +05:30
prepend EnableSslVerification
2021-09-04 01:27:46 +05:30
ALLOWED_STATES = %w[failed canceled running pending success success-with-warnings skipped not_found].freeze
2022-07-16 23:28:13 +05:30
field :mock_service_url,
2022-07-23 23:45:48 +05:30
title: -> { s_('ProjectService|Mock service URL') },
2022-07-16 23:28:13 +05:30
placeholder: 'http://localhost:4004',
required: true
2021-09-04 01:27:46 +05:30
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)
2022-02-05 19:09:49 +05:30
response = Gitlab::HTTP.get(commit_status_path(sha), verify: enable_ssl_verification, use_read_total_timeout: true)
2021-09-04 01:27:46 +05:30
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)
2022-02-05 19:09:49 +05:30
return :pending if response.code == 404
return :error unless response.code == 200
2021-09-04 01:27:46 +05:30
2022-02-05 19:09:49 +05:30
begin
status = Gitlab::Json.parse(response.body).try(:fetch, 'status', nil)
return status if ALLOWED_STATES.include?(status)
rescue JSON::ParserError
2021-09-04 01:27:46 +05:30
end
2022-02-05 19:09:49 +05:30
:error
2021-09-04 01:27:46 +05:30
end
2021-09-30 23:02:18 +05:30
def testable?
2021-09-04 01:27:46 +05:30
false
end
end
end