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