2020-06-23 00:09:42 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Integrations
|
|
|
|
module Test
|
|
|
|
class ProjectService < Integrations::Test::BaseService
|
|
|
|
include Integrations::ProjectTestData
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
|
|
|
def project
|
|
|
|
strong_memoize(:project) do
|
|
|
|
integration.project
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def data
|
|
|
|
strong_memoize(:data) do
|
2021-02-22 17:27:13 +05:30
|
|
|
case event || integration.default_test_event
|
2020-06-23 00:09:42 +05:30
|
|
|
when 'push', 'tag_push'
|
|
|
|
push_events_data
|
|
|
|
when 'note', 'confidential_note'
|
|
|
|
note_events_data
|
|
|
|
when 'issue', 'confidential_issue'
|
|
|
|
issues_events_data
|
|
|
|
when 'merge_request'
|
|
|
|
merge_requests_events_data
|
|
|
|
when 'job'
|
|
|
|
job_events_data
|
|
|
|
when 'pipeline'
|
|
|
|
pipeline_events_data
|
|
|
|
when 'wiki_page'
|
|
|
|
wiki_page_events_data
|
|
|
|
when 'deployment'
|
|
|
|
deployment_events_data
|
2021-01-29 00:20:46 +05:30
|
|
|
when 'release'
|
|
|
|
releases_events_data
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
Integrations::Test::ProjectService.prepend_mod_with('Integrations::Test::ProjectService')
|