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

80 lines
2.5 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe BulkUpdateIntegrationService do
include JiraServiceHelper
2021-01-29 00:20:46 +05:30
before_all do
2021-01-03 14:25:43 +05:30
stub_jira_service_test
end
let(:excluded_attributes) { %w[id project_id group_id inherit_from_id instance template created_at updated_at] }
2021-01-29 00:20:46 +05:30
let(:batch) do
Service.inherited_descendants_from_self_or_ancestors_from(subgroup_integration).where(id: group_integration.id..integration.id)
end
let_it_be(:group) { create(:group) }
let_it_be(:subgroup) { create(:group, parent: group) }
let_it_be(:group_integration) do
JiraService.create!(
group: group,
url: 'http://group.jira.com'
)
end
let_it_be(:subgroup_integration) do
2021-01-03 14:25:43 +05:30
JiraService.create!(
2021-01-29 00:20:46 +05:30
inherit_from_id: group_integration.id,
group: subgroup,
url: 'http://subgroup.jira.com',
push_events: true
2021-01-03 14:25:43 +05:30
)
end
2021-01-29 00:20:46 +05:30
let_it_be(:excluded_integration) do
2021-01-03 14:25:43 +05:30
JiraService.create!(
2021-01-29 00:20:46 +05:30
group: create(:group),
url: 'http://another.jira.com',
push_events: false
)
end
let_it_be(:integration) do
JiraService.create!(
project: create(:project, group: subgroup),
inherit_from_id: subgroup_integration.id,
url: 'http://project.jira.com',
push_events: false
2021-01-03 14:25:43 +05:30
)
end
context 'with inherited integration' do
2021-01-29 00:20:46 +05:30
it 'updates the integration', :aggregate_failures do
described_class.new(subgroup_integration, batch).execute
expect(integration.reload.inherit_from_id).to eq(group_integration.id)
expect(integration.reload.attributes.except(*excluded_attributes))
.to eq(subgroup_integration.attributes.except(*excluded_attributes))
2021-01-03 14:25:43 +05:30
2021-01-29 00:20:46 +05:30
expect(excluded_integration.reload.inherit_from_id).not_to eq(group_integration.id)
expect(excluded_integration.reload.attributes.except(*excluded_attributes))
.not_to eq(subgroup_integration.attributes.except(*excluded_attributes))
2021-01-03 14:25:43 +05:30
end
context 'with integration with data fields' do
let(:excluded_attributes) { %w[id service_id created_at updated_at] }
2021-01-29 00:20:46 +05:30
it 'updates the data fields from the integration', :aggregate_failures do
described_class.new(subgroup_integration, batch).execute
2021-04-29 21:17:54 +05:30
expect(integration.reload.data_fields.attributes.except(*excluded_attributes))
.to eq(subgroup_integration.reload.data_fields.attributes.except(*excluded_attributes))
2021-01-03 14:25:43 +05:30
2021-01-29 00:20:46 +05:30
expect(integration.data_fields.attributes.except(*excluded_attributes))
.not_to eq(excluded_integration.data_fields.attributes.except(*excluded_attributes))
2021-01-03 14:25:43 +05:30
end
end
end
end