Commit 2930cf7c authored by Siddharth Asthana's avatar Siddharth Asthana Committed by Markus Koller

Refactor all the specs to use `:integration` rather than `:service`

Changelog: other
parent 96110427
...@@ -32,14 +32,14 @@ RSpec.describe Integration do ...@@ -32,14 +32,14 @@ RSpec.describe Integration do
end end
describe '.vulnerability_hooks' do describe '.vulnerability_hooks' do
it 'includes services where vulnerability_events is true' do it 'includes integrations where vulnerability_events is true' do
create(:service, active: true, vulnerability_events: true) create(:integration, active: true, vulnerability_events: true)
expect(described_class.vulnerability_hooks.count).to eq 1 expect(described_class.vulnerability_hooks.count).to eq 1
end end
it 'excludes services where vulnerability_events is false' do it 'excludes integrations where vulnerability_events is false' do
create(:service, active: true, vulnerability_events: false) create(:integration, active: true, vulnerability_events: false)
expect(described_class.vulnerability_hooks.count).to eq 0 expect(described_class.vulnerability_hooks.count).to eq 0
end end
......
# frozen_string_literal: true # frozen_string_literal: true
FactoryBot.define do FactoryBot.define do
factory :integration, aliases: [:service] do factory :integration do
project project
type { 'Integration' } type { 'Integration' }
end end
......
...@@ -19,16 +19,16 @@ FactoryBot.define do ...@@ -19,16 +19,16 @@ FactoryBot.define do
create(:jira_import_state, :finished, project: projects[1], label: jira_label, imported_issues_count: 3) create(:jira_import_state, :finished, project: projects[1], label: jira_label, imported_issues_count: 3)
create(:jira_import_state, :scheduled, project: projects[1], label: jira_label) create(:jira_import_state, :scheduled, project: projects[1], label: jira_label)
create(:prometheus_integration, project: projects[1]) create(:prometheus_integration, project: projects[1])
create(:service, project: projects[1], type: 'JenkinsService', active: true) create(:integration, project: projects[1], type: 'JenkinsService', active: true)
create(:service, project: projects[0], type: 'SlackSlashCommandsService', active: true) create(:integration, project: projects[0], type: 'SlackSlashCommandsService', active: true)
create(:service, project: projects[1], type: 'SlackService', active: true) create(:integration, project: projects[1], type: 'SlackService', active: true)
create(:service, project: projects[2], type: 'SlackService', active: true) create(:integration, project: projects[2], type: 'SlackService', active: true)
create(:service, project: projects[2], type: 'MattermostService', active: false) create(:integration, project: projects[2], type: 'MattermostService', active: false)
create(:service, group: group, project: nil, type: 'MattermostService', active: true) create(:integration, group: group, project: nil, type: 'MattermostService', active: true)
mattermost_instance = create(:service, :instance, type: 'MattermostService', active: true) mattermost_instance = create(:integration, :instance, type: 'MattermostService', active: true)
create(:service, project: projects[1], type: 'MattermostService', active: true, inherit_from_id: mattermost_instance.id) create(:integration, project: projects[1], type: 'MattermostService', active: true, inherit_from_id: mattermost_instance.id)
create(:service, group: group, project: nil, type: 'SlackService', active: true, inherit_from_id: mattermost_instance.id) create(:integration, group: group, project: nil, type: 'SlackService', active: true, inherit_from_id: mattermost_instance.id)
create(:service, project: projects[2], type: 'CustomIssueTrackerService', active: true) create(:integration, project: projects[2], type: 'CustomIssueTrackerService', active: true)
create(:project_error_tracking_setting, project: projects[0]) create(:project_error_tracking_setting, project: projects[0])
create(:project_error_tracking_setting, project: projects[1], enabled: false) create(:project_error_tracking_setting, project: projects[1], enabled: false)
alert_bot_issues = create_list(:incident, 2, project: projects[0], author: User.alert_bot) alert_bot_issues = create_list(:incident, 2, project: projects[0], author: User.alert_bot)
......
...@@ -96,7 +96,7 @@ RSpec.describe 'Merge request > User sees merge widget', :js do ...@@ -96,7 +96,7 @@ RSpec.describe 'Merge request > User sees merge widget', :js do
context 'view merge request with external CI service' do context 'view merge request with external CI service' do
before do before do
create(:service, project: project, create(:integration, project: project,
active: true, active: true,
type: 'DroneCiService', type: 'DroneCiService',
category: 'ci') category: 'ci')
......
...@@ -4,7 +4,7 @@ require 'spec_helper' ...@@ -4,7 +4,7 @@ require 'spec_helper'
RSpec.describe 'Profile > Chat' do RSpec.describe 'Profile > Chat' do
let(:user) { create(:user) } let(:user) { create(:user) }
let(:integration) { create(:service) } let(:integration) { create(:integration) }
before do before do
sign_in(user) sign_in(user)
......
...@@ -8,7 +8,7 @@ RSpec.describe Types::Projects::ServiceType do ...@@ -8,7 +8,7 @@ RSpec.describe Types::Projects::ServiceType do
describe ".resolve_type" do describe ".resolve_type" do
it 'resolves the corresponding type for objects' do it 'resolves the corresponding type for objects' do
expect(described_class.resolve_type(build(:jira_integration), {})).to eq(Types::Projects::Services::JiraServiceType) expect(described_class.resolve_type(build(:jira_integration), {})).to eq(Types::Projects::Services::JiraServiceType)
expect(described_class.resolve_type(build(:service), {})).to eq(Types::Projects::Services::BaseServiceType) expect(described_class.resolve_type(build(:integration), {})).to eq(Types::Projects::Services::BaseServiceType)
expect(described_class.resolve_type(build(:drone_ci_integration), {})).to eq(Types::Projects::Services::BaseServiceType) expect(described_class.resolve_type(build(:drone_ci_integration), {})).to eq(Types::Projects::Services::BaseServiceType)
expect(described_class.resolve_type(build(:custom_issue_tracker_integration), {})).to eq(Types::Projects::Services::BaseServiceType) expect(described_class.resolve_type(build(:custom_issue_tracker_integration), {})).to eq(Types::Projects::Services::BaseServiceType)
end end
......
...@@ -86,7 +86,7 @@ RSpec.describe AutoDevopsHelper do ...@@ -86,7 +86,7 @@ RSpec.describe AutoDevopsHelper do
context 'when another service is enabled' do context 'when another service is enabled' do
before do before do
create(:service, project: project, category: :ci, active: true) create(:integration, project: project, category: :ci, active: true)
end end
it { is_expected.to eq(false) } it { is_expected.to eq(false) }
......
...@@ -258,7 +258,7 @@ RSpec.describe Gitlab::ImportExport::FastHashSerializer do ...@@ -258,7 +258,7 @@ RSpec.describe Gitlab::ImportExport::FastHashSerializer do
create(:resource_label_event, label: group_label, merge_request: merge_request) create(:resource_label_event, label: group_label, merge_request: merge_request)
create(:event, :created, target: milestone, project: project, author: user) create(:event, :created, target: milestone, project: project, author: user)
create(:service, project: project, type: 'CustomIssueTrackerService', category: 'issue_tracker', properties: { one: 'value' }) create(:integration, project: project, type: 'CustomIssueTrackerService', category: 'issue_tracker', properties: { one: 'value' })
create(:project_custom_attribute, project: project) create(:project_custom_attribute, project: project)
create(:project_custom_attribute, project: project) create(:project_custom_attribute, project: project)
......
...@@ -88,7 +88,7 @@ RSpec.describe Gitlab::ImportExport::Project::RelationFactory, :use_clean_rails_ ...@@ -88,7 +88,7 @@ RSpec.describe Gitlab::ImportExport::Project::RelationFactory, :use_clean_rails_
end end
context 'original service exists' do context 'original service exists' do
let(:service_id) { create(:service, project: project).id } let(:service_id) { create(:integration, project: project).id }
it 'does not have the original service_id' do it 'does not have the original service_id' do
expect(created_object.service_id).not_to eq(service_id) expect(created_object.service_id).not_to eq(service_id)
......
...@@ -46,11 +46,11 @@ RSpec.describe Gitlab::Integrations::StiType do ...@@ -46,11 +46,11 @@ RSpec.describe Gitlab::Integrations::StiType do
SQL SQL
end end
let_it_be(:service) { create(:service) } let_it_be(:integration) { create(:integration) }
it 'forms SQL UPDATE statements correctly' do it 'forms SQL UPDATE statements correctly' do
sql_statements = types.map do |type| sql_statements = types.map do |type|
record = ActiveRecord::QueryRecorder.new { service.update_column(:type, type) } record = ActiveRecord::QueryRecorder.new { integration.update_column(:type, type) }
record.log.first record.log.first
end end
...@@ -65,8 +65,6 @@ RSpec.describe Gitlab::Integrations::StiType do ...@@ -65,8 +65,6 @@ RSpec.describe Gitlab::Integrations::StiType do
SQL SQL
end end
let(:service) { create(:service) }
it 'forms SQL DELETE statements correctly' do it 'forms SQL DELETE statements correctly' do
sql_statements = types.map do |type| sql_statements = types.map do |type|
record = ActiveRecord::QueryRecorder.new { Integration.delete_by(type: type) } record = ActiveRecord::QueryRecorder.new { Integration.delete_by(type: type) }
...@@ -81,7 +79,7 @@ RSpec.describe Gitlab::Integrations::StiType do ...@@ -81,7 +79,7 @@ RSpec.describe Gitlab::Integrations::StiType do
describe '#deserialize' do describe '#deserialize' do
specify 'it deserializes type correctly', :aggregate_failures do specify 'it deserializes type correctly', :aggregate_failures do
types.each do |type| types.each do |type|
service = create(:service, type: type) service = create(:integration, type: type)
expect(service.type).to eq('AsanaService') expect(service.type).to eq('AsanaService')
end end
...@@ -90,7 +88,7 @@ RSpec.describe Gitlab::Integrations::StiType do ...@@ -90,7 +88,7 @@ RSpec.describe Gitlab::Integrations::StiType do
describe '#cast' do describe '#cast' do
it 'casts type as model correctly', :aggregate_failures do it 'casts type as model correctly', :aggregate_failures do
create(:service, type: 'AsanaService') create(:integration, type: 'AsanaService')
types.each do |type| types.each do |type|
expect(Integration.find_by(type: type)).to be_kind_of(Integrations::Asana) expect(Integration.find_by(type: type)).to be_kind_of(Integrations::Asana)
...@@ -100,7 +98,7 @@ RSpec.describe Gitlab::Integrations::StiType do ...@@ -100,7 +98,7 @@ RSpec.describe Gitlab::Integrations::StiType do
describe '#changed?' do describe '#changed?' do
it 'detects changes correctly', :aggregate_failures do it 'detects changes correctly', :aggregate_failures do
service = create(:service, type: 'AsanaService') service = create(:integration, type: 'AsanaService')
types.each do |type| types.each do |type|
service.type = type service.type = type
......
This diff is collapsed.
...@@ -1359,51 +1359,51 @@ RSpec.describe Project, factory_default: :keep do ...@@ -1359,51 +1359,51 @@ RSpec.describe Project, factory_default: :keep do
project.reload.has_external_issue_tracker project.reload.has_external_issue_tracker
end end
it 'is false when external issue tracker service is not active' do it 'is false when external issue tracker integration is not active' do
create(:service, project: project, category: 'issue_tracker', active: false) create(:integration, project: project, category: 'issue_tracker', active: false)
is_expected.to eq(false) is_expected.to eq(false)
end end
it 'is false when other service is active' do it 'is false when other integration is active' do
create(:service, project: project, category: 'not_issue_tracker', active: true) create(:integration, project: project, category: 'not_issue_tracker', active: true)
is_expected.to eq(false) is_expected.to eq(false)
end end
context 'when there is an active external issue tracker service' do context 'when there is an active external issue tracker integration' do
let!(:service) do let!(:integration) do
create(:service, project: project, type: 'JiraService', category: 'issue_tracker', active: true) create(:integration, project: project, type: 'JiraService', category: 'issue_tracker', active: true)
end end
specify { is_expected.to eq(true) } specify { is_expected.to eq(true) }
it 'becomes false when external issue tracker service is destroyed' do it 'becomes false when external issue tracker integration is destroyed' do
expect do expect do
Integration.find(service.id).delete Integration.find(integration.id).delete
end.to change { subject }.to(false) end.to change { subject }.to(false)
end end
it 'becomes false when external issue tracker service becomes inactive' do it 'becomes false when external issue tracker integration becomes inactive' do
expect do expect do
service.update_column(:active, false) integration.update_column(:active, false)
end.to change { subject }.to(false) end.to change { subject }.to(false)
end end
context 'when there are two active external issue tracker services' do context 'when there are two active external issue tracker integrations' do
let_it_be(:second_service) do let_it_be(:second_integration) do
create(:service, project: project, type: 'CustomIssueTracker', category: 'issue_tracker', active: true) create(:integration, project: project, type: 'CustomIssueTracker', category: 'issue_tracker', active: true)
end end
it 'does not become false when external issue tracker service is destroyed' do it 'does not become false when external issue tracker integration is destroyed' do
expect do expect do
Integration.find(service.id).delete Integration.find(integration.id).delete
end.not_to change { subject } end.not_to change { subject }
end end
it 'does not become false when external issue tracker service becomes inactive' do it 'does not become false when external issue tracker integration becomes inactive' do
expect do expect do
service.update_column(:active, false) integration.update_column(:active, false)
end.not_to change { subject } end.not_to change { subject }
end end
end end
...@@ -1455,13 +1455,13 @@ RSpec.describe Project, factory_default: :keep do ...@@ -1455,13 +1455,13 @@ RSpec.describe Project, factory_default: :keep do
specify { expect(has_external_wiki).to eq(true) } specify { expect(has_external_wiki).to eq(true) }
it 'becomes false if the external wiki service is destroyed' do it 'becomes false if the external wiki integration is destroyed' do
expect do expect do
Integration.find(integration.id).delete Integration.find(integration.id).delete
end.to change { has_external_wiki }.to(false) end.to change { has_external_wiki }.to(false)
end end
it 'becomes false if the external wiki service becomes inactive' do it 'becomes false if the external wiki integration becomes inactive' do
expect do expect do
integration.update_column(:active, false) integration.update_column(:active, false)
end.to change { has_external_wiki }.to(false) end.to change { has_external_wiki }.to(false)
...@@ -6836,7 +6836,7 @@ RSpec.describe Project, factory_default: :keep do ...@@ -6836,7 +6836,7 @@ RSpec.describe Project, factory_default: :keep do
describe 'with integrations and chat names' do describe 'with integrations and chat names' do
subject { create(:project) } subject { create(:project) }
let(:integration) { create(:service, project: subject) } let(:integration) { create(:integration, project: subject) }
before do before do
create_list(:chat_name, 5, integration: integration) create_list(:chat_name, 5, integration: integration)
......
...@@ -4,10 +4,10 @@ require 'spec_helper' ...@@ -4,10 +4,10 @@ require 'spec_helper'
RSpec.describe ChatNames::AuthorizeUserService do RSpec.describe ChatNames::AuthorizeUserService do
describe '#execute' do describe '#execute' do
subject { described_class.new(service, params) } let(:integration) { create(:integration) }
let(:result) { subject.execute } let(:result) { subject.execute }
let(:service) { create(:service) }
subject { described_class.new(integration, params) }
context 'when all parameters are valid' do context 'when all parameters are valid' do
let(:params) { { team_id: 'T0001', team_domain: 'myteam', user_id: 'U0001', user_name: 'user' } } let(:params) { { team_id: 'T0001', team_domain: 'myteam', user_id: 'U0001', user_name: 'user' } }
......
...@@ -4,7 +4,7 @@ require 'spec_helper' ...@@ -4,7 +4,7 @@ require 'spec_helper'
RSpec.describe ChatNames::FindUserService, :clean_gitlab_redis_shared_state do RSpec.describe ChatNames::FindUserService, :clean_gitlab_redis_shared_state do
describe '#execute' do describe '#execute' do
let(:integration) { create(:service) } let(:integration) { create(:integration) }
subject { described_class.new(integration, params).execute } subject { described_class.new(integration, params).execute }
......
...@@ -44,7 +44,7 @@ module ExportFileHelper ...@@ -44,7 +44,7 @@ module ExportFileHelper
create(:ci_trigger, project: project) create(:ci_trigger, project: project)
key = create(:deploy_key) key = create(:deploy_key)
key.projects << project key.projects << project
create(:service, project: project) create(:integration, project: project)
create(:project_hook, project: project, token: 'token') create(:project_hook, project: project, token: 'token')
create(:protected_branch, project: project) create(:protected_branch, project: project)
......
...@@ -13,7 +13,7 @@ RSpec.describe Deployments::HooksWorker do ...@@ -13,7 +13,7 @@ RSpec.describe Deployments::HooksWorker do
it 'executes project services for deployment_hooks' do it 'executes project services for deployment_hooks' do
deployment = create(:deployment, :running) deployment = create(:deployment, :running)
project = deployment.project project = deployment.project
service = create(:service, type: 'SlackService', project: project, deployment_events: true, active: true) service = create(:integration, type: 'SlackService', project: project, deployment_events: true, active: true)
expect(ProjectServiceWorker).to receive(:perform_async).with(service.id, an_instance_of(Hash)) expect(ProjectServiceWorker).to receive(:perform_async).with(service.id, an_instance_of(Hash))
...@@ -23,7 +23,7 @@ RSpec.describe Deployments::HooksWorker do ...@@ -23,7 +23,7 @@ RSpec.describe Deployments::HooksWorker do
it 'does not execute an inactive service' do it 'does not execute an inactive service' do
deployment = create(:deployment, :running) deployment = create(:deployment, :running)
project = deployment.project project = deployment.project
create(:service, type: 'SlackService', project: project, deployment_events: true, active: false) create(:integration, type: 'SlackService', project: project, deployment_events: true, active: false)
expect(ProjectServiceWorker).not_to receive(:perform_async) expect(ProjectServiceWorker).not_to receive(:perform_async)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment