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

137 lines
3 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
2016-06-02 11:05:42 +05:30
factory :service do
2017-09-10 17:25:29 +05:30
project
2017-08-17 22:00:37 +05:30
type 'Service'
end
factory :custom_issue_tracker_service, class: CustomIssueTrackerService do
2017-09-10 17:25:29 +05:30
project
2017-08-17 22:00:37 +05:30
active true
2019-12-04 20:38:33 +05:30
issue_tracker
2017-08-17 22:00:37 +05:30
end
2019-10-12 21:52:04 +05:30
factory :emails_on_push_service do
2017-09-10 17:25:29 +05:30
project
2019-10-12 21:52:04 +05:30
type 'EmailsOnPushService'
2017-08-17 22:00:37 +05:30
active true
2019-10-12 21:52:04 +05:30
push_events true
tag_push_events true
properties(
recipients: 'test@example.com',
disable_diffs: true,
send_from_committer_email: true
)
2017-09-10 17:25:29 +05:30
end
2019-07-07 11:18:12 +05:30
factory :mock_deployment_service do
project
type 'MockDeploymentService'
active true
end
2017-09-10 17:25:29 +05:30
factory :prometheus_service do
project
active true
properties({
2018-03-17 18:26:18 +05:30
api_url: 'https://prometheus.example.com/',
manual_configuration: true
2017-08-17 22:00:37 +05:30
})
end
factory :jira_service do
2017-09-10 17:25:29 +05:30
project
2017-08-17 22:00:37 +05:30
active true
2019-12-04 20:38:33 +05:30
transient do
create_data true
url 'https://jira.example.com'
api_url nil
username 'jira_username'
password 'jira_password'
jira_issue_transition_id '56-1'
end
after(:build) do |service, evaluator|
if evaluator.create_data
create(:jira_tracker_data, service: service,
url: evaluator.url, api_url: evaluator.api_url, jira_issue_transition_id: evaluator.jira_issue_transition_id,
username: evaluator.username, password: evaluator.password
)
end
end
2016-06-02 11:05:42 +05:30
end
2017-09-10 17:25:29 +05:30
2019-09-30 21:07:59 +05:30
factory :bugzilla_service do
2018-12-13 13:39:08 +05:30
project
active true
2019-09-30 21:07:59 +05:30
issue_tracker
end
factory :redmine_service do
project
active true
issue_tracker
end
factory :youtrack_service do
project
active true
issue_tracker
end
factory :gitlab_issue_tracker_service do
project
active true
issue_tracker
end
trait :issue_tracker do
2019-12-04 20:38:33 +05:30
transient do
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'
end
after(:build) do |service, evaluator|
if evaluator.create_data
create(:issue_tracker_data, service: service,
project_url: evaluator.project_url, issues_url: evaluator.issues_url, new_issue_url: evaluator.new_issue_url
)
end
end
2019-09-30 21:07:59 +05:30
end
trait :jira_cloud_service do
2019-12-04 20:38:33 +05:30
url 'https://mysite.atlassian.net'
username 'jira_user'
password 'my-secret-password'
2018-12-13 13:39:08 +05:30
end
2017-09-10 17:25:29 +05:30
factory :hipchat_service do
project
type 'HipchatService'
token 'test_token'
end
2019-09-30 21:07:59 +05:30
2019-12-04 20:38:33 +05:30
# this is for testing storing values inside properties, which is deprecated and will be removed in
# https://gitlab.com/gitlab-org/gitlab-ce/issues/63084
2019-09-30 21:07:59 +05:30
trait :without_properties_callback do
2019-12-04 20:38:33 +05:30
jira_tracker_data nil
issue_tracker_data nil
create_data false
2019-09-30 21:07:59 +05:30
after(:build) do |service|
2019-12-04 20:38:33 +05:30
IssueTrackerService.skip_callback(:validation, :before, :handle_properties)
2019-09-30 21:07:59 +05:30
end
2019-12-04 20:38:33 +05:30
to_create { |instance| instance.save(validate: false)}
after(:create) do
IssueTrackerService.set_callback(:validation, :before, :handle_properties)
2019-09-30 21:07:59 +05:30
end
end
2016-06-02 11:05:42 +05:30
end