debian-mirror-gitlab/spec/factories/integrations.rb

212 lines
5.9 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
FactoryBot.define do
2021-06-08 01:23:25 +05:30
factory :integration, aliases: [:service] do
2017-09-10 17:25:29 +05:30
project
2021-06-08 01:23:25 +05:30
type { 'Integration' }
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
factory :custom_issue_tracker_integration, class: 'Integrations::CustomIssueTracker' do
2017-09-10 17:25:29 +05:30
project
2019-12-21 20:55:43 +05:30
active { true }
2019-12-04 20:38:33 +05:30
issue_tracker
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
factory :emails_on_push_integration, class: 'Integrations::EmailsOnPush' do
2017-09-10 17:25:29 +05:30
project
2019-12-21 20:55:43 +05:30
type { 'EmailsOnPushService' }
active { true }
push_events { true }
tag_push_events { true }
properties do
{
recipients: 'test@example.com',
disable_diffs: true,
send_from_committer_email: true
}
end
2017-09-10 17:25:29 +05:30
end
2021-09-30 23:02:18 +05:30
factory :prometheus_integration, class: 'Integrations::Prometheus' do
2017-09-10 17:25:29 +05:30
project
2019-12-21 20:55:43 +05:30
active { true }
properties do
{
api_url: 'https://prometheus.example.com/',
manual_configuration: true
}
end
2017-08-17 22:00:37 +05:30
end
2021-09-04 01:27:46 +05:30
factory :drone_ci_integration, class: 'Integrations::DroneCi' do
2020-01-01 13:55:28 +05:30
project
active { true }
drone_url { 'https://bamboo.example.com' }
token { 'test' }
end
2021-09-30 23:02:18 +05:30
factory :jira_integration, class: 'Integrations::Jira' do
2017-09-10 17:25:29 +05:30
project
2019-12-21 20:55:43 +05:30
active { true }
2020-04-08 14:13:33 +05:30
type { 'JiraService' }
2019-12-04 20:38:33 +05:30
transient do
2019-12-21 20:55:43 +05:30
create_data { true }
url { 'https://jira.example.com' }
api_url { nil }
username { 'jira_username' }
password { 'jira_password' }
2021-04-29 21:17:54 +05:30
jira_issue_transition_automatic { false }
2019-12-21 20:55:43 +05:30
jira_issue_transition_id { '56-1' }
2020-07-28 23:09:34 +05:30
issues_enabled { false }
project_key { nil }
2021-01-29 00:20:46 +05:30
vulnerabilities_enabled { false }
vulnerabilities_issuetype { nil }
2021-04-29 21:17:54 +05:30
deployment_type { 'cloud' }
2019-12-04 20:38:33 +05:30
end
2021-06-08 01:23:25 +05:30
after(:build) do |integration, evaluator|
2019-12-04 20:38:33 +05:30
if evaluator.create_data
2021-06-08 01:23:25 +05:30
integration.jira_tracker_data = build(:jira_tracker_data,
integration: integration, url: evaluator.url, api_url: evaluator.api_url,
jira_issue_transition_automatic: evaluator.jira_issue_transition_automatic,
jira_issue_transition_id: evaluator.jira_issue_transition_id,
username: evaluator.username, password: evaluator.password, issues_enabled: evaluator.issues_enabled,
project_key: evaluator.project_key, vulnerabilities_enabled: evaluator.vulnerabilities_enabled,
vulnerabilities_issuetype: evaluator.vulnerabilities_issuetype, deployment_type: evaluator.deployment_type
2019-12-04 20:38:33 +05:30
)
end
end
2016-06-02 11:05:42 +05:30
end
2017-09-10 17:25:29 +05:30
2021-09-04 01:27:46 +05:30
factory :confluence_integration, class: 'Integrations::Confluence' do
2020-07-28 23:09:34 +05:30
project
active { true }
confluence_url { 'https://example.atlassian.net/wiki' }
end
2021-09-04 01:27:46 +05:30
factory :bugzilla_integration, class: 'Integrations::Bugzilla' do
2018-12-13 13:39:08 +05:30
project
2019-12-21 20:55:43 +05:30
active { true }
2019-09-30 21:07:59 +05:30
issue_tracker
end
2021-09-30 23:02:18 +05:30
factory :redmine_integration, class: 'Integrations::Redmine' do
2019-09-30 21:07:59 +05:30
project
2019-12-21 20:55:43 +05:30
active { true }
2019-09-30 21:07:59 +05:30
issue_tracker
end
2021-09-30 23:02:18 +05:30
factory :youtrack_integration, class: 'Integrations::Youtrack' do
2019-09-30 21:07:59 +05:30
project
2019-12-21 20:55:43 +05:30
active { true }
2019-09-30 21:07:59 +05:30
issue_tracker
end
2021-09-04 01:27:46 +05:30
factory :ewm_integration, class: 'Integrations::Ewm' do
2020-11-24 15:15:51 +05:30
project
active { true }
issue_tracker
end
2019-09-30 21:07:59 +05:30
trait :issue_tracker do
2019-12-04 20:38:33 +05:30
transient do
2019-12-21 20:55:43 +05:30
create_data { true }
project_url { 'http://issuetracker.example.com' }
issues_url { 'http://issues.example.com/issues/:id' }
new_issue_url { 'http://new-issue.example.com' }
2019-12-04 20:38:33 +05:30
end
2021-06-08 01:23:25 +05:30
after(:build) do |integration, evaluator|
2019-12-04 20:38:33 +05:30
if evaluator.create_data
2021-06-08 01:23:25 +05:30
integration.issue_tracker_data = build(:issue_tracker_data,
integration: integration, project_url: evaluator.project_url,
issues_url: evaluator.issues_url, new_issue_url: evaluator.new_issue_url
2019-12-04 20:38:33 +05:30
)
end
end
2019-09-30 21:07:59 +05:30
end
2021-09-04 01:27:46 +05:30
factory :external_wiki_integration, class: 'Integrations::ExternalWiki' do
2021-01-29 00:20:46 +05:30
project
2021-09-04 01:27:46 +05:30
type { 'ExternalWikiService' }
2021-01-29 00:20:46 +05:30
active { true }
external_wiki_url { 'http://external-wiki-url.com' }
end
2021-09-04 01:27:46 +05:30
factory :open_project_service, class: 'Integrations::OpenProject' do
2020-04-22 19:07:51 +05:30
project
active { true }
transient do
url { 'http://openproject.example.com' }
api_url { 'http://openproject.example.com/issues/:id' }
token { 'supersecret' }
closed_status_id { '15' }
project_identifier_code { 'PRJ-1' }
end
2021-06-08 01:23:25 +05:30
after(:build) do |integration, evaluator|
integration.open_project_tracker_data = build(:open_project_tracker_data,
integration: integration, url: evaluator.url, api_url: evaluator.api_url, token: evaluator.token,
2020-04-22 19:07:51 +05:30
closed_status_id: evaluator.closed_status_id, project_identifier_code: evaluator.project_identifier_code
)
end
end
2019-09-30 21:07:59 +05:30
trait :jira_cloud_service do
2019-12-21 20:55:43 +05:30
url { 'https://mysite.atlassian.net' }
username { 'jira_user' }
password { 'my-secret-password' }
2018-12-13 13:39:08 +05:30
end
2021-09-30 23:02:18 +05:30
# avoids conflict with slack_integration factory
factory :integrations_slack, class: 'Integrations::Slack' do
2020-05-24 23:13:21 +05:30
project
active { true }
webhook { 'https://slack.service.url' }
type { 'SlackService' }
end
2021-09-30 23:02:18 +05:30
factory :slack_slash_commands_integration, class: 'Integrations::SlackSlashCommands' do
2021-09-04 01:27:46 +05:30
project
active { true }
type { 'SlackSlashCommandsService' }
end
2021-09-30 23:02:18 +05:30
factory :pipelines_email_integration, class: 'Integrations::PipelinesEmail' do
2020-06-23 00:09:42 +05:30
project
active { true }
type { 'PipelinesEmailService' }
recipients { 'test@example.com' }
end
2019-12-04 20:38:33 +05:30
# this is for testing storing values inside properties, which is deprecated and will be removed in
2019-12-21 20:55:43 +05:30
# https://gitlab.com/gitlab-org/gitlab/issues/29404
2019-09-30 21:07:59 +05:30
trait :without_properties_callback do
2019-12-21 20:55:43 +05:30
jira_tracker_data { nil }
issue_tracker_data { nil }
create_data { false }
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
after(:build) do
2021-09-04 01:27:46 +05:30
Integrations::BaseIssueTracker.skip_callback(:validation, :before, :handle_properties)
2019-09-30 21:07:59 +05:30
end
2020-10-24 23:57:45 +05:30
to_create { |instance| instance.save!(validate: false) }
2019-12-04 20:38:33 +05:30
after(:create) do
2021-09-04 01:27:46 +05:30
Integrations::BaseIssueTracker.set_callback(:validation, :before, :handle_properties)
2019-09-30 21:07:59 +05:30
end
end
2020-04-08 14:13:33 +05:30
trait :template do
project { nil }
template { true }
end
trait :instance do
project { nil }
instance { true }
end
2016-06-02 11:05:42 +05:30
end