2019-11-26 07:06:18 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe ServicesHelper do
|
2020-07-16 23:09:14 -04:00
|
|
|
describe '#integration_form_data' do
|
|
|
|
subject { helper.integration_form_data(integration) }
|
|
|
|
|
|
|
|
context 'Jira service' do
|
|
|
|
let(:integration) { build(:jira_service) }
|
|
|
|
|
|
|
|
it 'includes Jira specific fields' do
|
|
|
|
is_expected.to include(
|
|
|
|
:id,
|
|
|
|
:show_active,
|
|
|
|
:activated,
|
|
|
|
:type,
|
|
|
|
:merge_request_events,
|
|
|
|
:commit_events,
|
|
|
|
:enable_comments,
|
|
|
|
:comment_detail,
|
|
|
|
:trigger_events,
|
|
|
|
:fields,
|
2020-09-01 08:11:01 -04:00
|
|
|
:inherit_from_id,
|
|
|
|
:integration_level
|
2020-07-16 23:09:14 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-08-24 23:10:50 -04:00
|
|
|
|
|
|
|
describe '#group_level_integrations?' do
|
|
|
|
subject { helper.group_level_integrations? }
|
|
|
|
|
|
|
|
context 'when no group is present' do
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when group is present' do
|
|
|
|
let(:group) { build_stubbed(:group) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
assign(:group, group)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when `group_level_integrations` is not enabled' do
|
|
|
|
it 'returns false' do
|
|
|
|
stub_feature_flags(group_level_integrations: false)
|
|
|
|
|
|
|
|
is_expected.to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when `group_level_integrations` is enabled for the group' do
|
|
|
|
it 'returns true' do
|
|
|
|
stub_feature_flags(group_level_integrations: group)
|
|
|
|
|
|
|
|
is_expected.to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-11-26 07:06:18 -05:00
|
|
|
end
|