3489dc3d72
- Adds UI to configure in group and project settings - Removes notification configuration for users when disabled at group or project level
116 lines
2.4 KiB
Ruby
116 lines
2.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :service do
|
|
project
|
|
type 'Service'
|
|
end
|
|
|
|
factory :custom_issue_tracker_service, class: CustomIssueTrackerService do
|
|
project
|
|
active true
|
|
properties(
|
|
project_url: 'https://project.url.com',
|
|
issues_url: 'https://issues.url.com',
|
|
new_issue_url: 'https://newissue.url.com'
|
|
)
|
|
end
|
|
|
|
factory :emails_on_push_service do
|
|
project
|
|
type 'EmailsOnPushService'
|
|
active true
|
|
push_events true
|
|
tag_push_events true
|
|
properties(
|
|
recipients: 'test@example.com',
|
|
disable_diffs: true,
|
|
send_from_committer_email: true
|
|
)
|
|
end
|
|
|
|
factory :mock_deployment_service do
|
|
project
|
|
type 'MockDeploymentService'
|
|
active true
|
|
end
|
|
|
|
factory :prometheus_service do
|
|
project
|
|
active true
|
|
properties({
|
|
api_url: 'https://prometheus.example.com/',
|
|
manual_configuration: true
|
|
})
|
|
end
|
|
|
|
factory :jira_service do
|
|
project
|
|
active true
|
|
properties(
|
|
url: 'https://jira.example.com',
|
|
username: 'jira_user',
|
|
password: 'my-secret-password',
|
|
project_key: 'jira-key'
|
|
)
|
|
end
|
|
|
|
factory :bugzilla_service do
|
|
project
|
|
active true
|
|
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
|
|
properties(
|
|
project_url: 'http://issue-tracker.example.com',
|
|
issues_url: 'http://issue-tracker.example.com/issues/:id',
|
|
new_issue_url: 'http://issue-tracker.example.com'
|
|
)
|
|
end
|
|
|
|
trait :jira_cloud_service do
|
|
properties(
|
|
url: 'https://mysite.atlassian.net',
|
|
username: 'jira_user',
|
|
password: 'my-secret-password',
|
|
project_key: 'jira-key'
|
|
)
|
|
end
|
|
|
|
factory :hipchat_service do
|
|
project
|
|
type 'HipchatService'
|
|
token 'test_token'
|
|
end
|
|
|
|
trait :without_properties_callback do
|
|
after(:build) do |service|
|
|
allow(service).to receive(:handle_properties)
|
|
end
|
|
|
|
after(:create) do |service|
|
|
# we have to remove the stub because the behaviour of
|
|
# handle_properties method is tested after the creation
|
|
allow(service).to receive(:handle_properties).and_call_original
|
|
end
|
|
end
|
|
end
|