2020-09-29 11:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe BulkUpdateIntegrationService do
|
|
|
|
include JiraServiceHelper
|
|
|
|
|
2020-10-23 14:08:31 -04:00
|
|
|
before_all do
|
2021-06-18 11:10:16 -04:00
|
|
|
stub_jira_integration_test
|
2020-09-29 11:10:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:excluded_attributes) { %w[id project_id group_id inherit_from_id instance template created_at updated_at] }
|
2020-10-28 17:08:42 -04:00
|
|
|
let(:batch) do
|
2021-05-12 08:10:24 -04:00
|
|
|
Integration.inherited_descendants_from_self_or_ancestors_from(subgroup_integration).where(id: group_integration.id..integration.id)
|
2020-10-28 17:08:42 -04:00
|
|
|
end
|
2020-10-23 14:08:31 -04:00
|
|
|
|
|
|
|
let_it_be(:group) { create(:group) }
|
2020-10-28 17:08:42 -04:00
|
|
|
let_it_be(:subgroup) { create(:group, parent: group) }
|
2021-11-12 01:10:23 -05:00
|
|
|
let_it_be(:group_integration) { create(:jira_integration, :group, group: group, url: 'http://group.jira.com') }
|
|
|
|
let_it_be(:excluded_integration) { create(:jira_integration, :group, group: create(:group), url: 'http://another.jira.com', push_events: false) }
|
2020-10-23 14:08:31 -04:00
|
|
|
let_it_be(:subgroup_integration) do
|
2021-11-12 01:10:23 -05:00
|
|
|
create(:jira_integration, :group,
|
2020-10-28 17:08:42 -04:00
|
|
|
group: subgroup,
|
2021-11-12 01:10:23 -05:00
|
|
|
inherit_from_id: group_integration.id,
|
2020-10-28 17:08:42 -04:00
|
|
|
url: 'http://subgroup.jira.com',
|
|
|
|
push_events: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-10-23 14:08:31 -04:00
|
|
|
let_it_be(:integration) do
|
2021-11-12 01:10:23 -05:00
|
|
|
create(:jira_integration,
|
2020-10-28 17:08:42 -04:00
|
|
|
project: create(:project, group: subgroup),
|
|
|
|
inherit_from_id: subgroup_integration.id,
|
|
|
|
url: 'http://project.jira.com',
|
|
|
|
push_events: false
|
2020-09-29 11:10:08 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with inherited integration' do
|
2020-10-28 17:08:42 -04:00
|
|
|
it 'updates the integration', :aggregate_failures do
|
2021-07-29 02:10:15 -04:00
|
|
|
described_class.new(subgroup_integration.reload, batch).execute
|
2020-09-29 11:10:08 -04:00
|
|
|
|
2020-10-23 14:08:31 -04:00
|
|
|
expect(integration.reload.inherit_from_id).to eq(group_integration.id)
|
2020-10-28 17:08:42 -04:00
|
|
|
expect(integration.reload.attributes.except(*excluded_attributes))
|
2021-07-29 02:10:15 -04:00
|
|
|
.to eq(subgroup_integration.reload.attributes.except(*excluded_attributes))
|
2020-10-28 17:08:42 -04:00
|
|
|
|
|
|
|
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))
|
2020-09-29 11:10:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with integration with data fields' do
|
|
|
|
let(:excluded_attributes) { %w[id service_id created_at updated_at] }
|
|
|
|
|
2020-10-28 17:08:42 -04:00
|
|
|
it 'updates the data fields from the integration', :aggregate_failures do
|
|
|
|
described_class.new(subgroup_integration, batch).execute
|
2020-09-29 11:10:08 -04:00
|
|
|
|
2021-03-28 02:09:12 -04:00
|
|
|
expect(integration.reload.data_fields.attributes.except(*excluded_attributes))
|
|
|
|
.to eq(subgroup_integration.reload.data_fields.attributes.except(*excluded_attributes))
|
2020-10-28 17:08:42 -04:00
|
|
|
|
|
|
|
expect(integration.data_fields.attributes.except(*excluded_attributes))
|
|
|
|
.not_to eq(excluded_integration.data_fields.attributes.except(*excluded_attributes))
|
2020-09-29 11:10:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-07-28 14:10:23 -04:00
|
|
|
|
|
|
|
it 'works with batch as an ActiveRecord::Relation' do
|
|
|
|
expect do
|
|
|
|
described_class.new(group_integration, Integration.where(id: integration.id)).execute
|
|
|
|
end.to change { integration.reload.url }.to(group_integration.url)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'works with batch as an array of ActiveRecord objects' do
|
|
|
|
expect do
|
|
|
|
described_class.new(group_integration, [integration]).execute
|
|
|
|
end.to change { integration.reload.url }.to(group_integration.url)
|
|
|
|
end
|
2021-11-09 07:12:15 -05:00
|
|
|
|
|
|
|
context 'with different foreign key of data_fields' do
|
|
|
|
let(:integration) { create(:zentao_integration, project: create(:project, group: group)) }
|
|
|
|
let(:group_integration) do
|
2021-11-12 01:10:23 -05:00
|
|
|
create(:zentao_integration, :group,
|
2021-11-09 07:12:15 -05:00
|
|
|
group: group,
|
|
|
|
url: 'https://group.zentao.net',
|
|
|
|
api_token: 'GROUP_TOKEN',
|
|
|
|
zentao_product_xid: '1'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'works with batch as an array of ActiveRecord objects' do
|
|
|
|
expect do
|
|
|
|
described_class.new(group_integration, [integration]).execute
|
|
|
|
end.to change { integration.reload.url }.to(group_integration.url)
|
|
|
|
end
|
|
|
|
end
|
2020-09-29 11:10:08 -04:00
|
|
|
end
|