debian-mirror-gitlab/spec/helpers/integrations_helper_spec.rb

117 lines
2.9 KiB
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-09-30 23:02:18 +05:30
RSpec.describe IntegrationsHelper do
describe '#integration_event_description' do
subject(:description) { helper.integration_event_description(integration, 'merge_request_events') }
context 'when integration is Jira' do
let(:integration) { Integrations::Jira.new }
it { is_expected.to include('Jira') }
end
context 'when integration is Team City' do
let(:integration) { Integrations::Teamcity.new }
it { is_expected.to include('TeamCity') }
end
end
2020-07-28 23:09:34 +05:30
describe '#integration_form_data' do
2021-04-17 20:07:23 +05:30
let(:fields) do
[
:id,
:show_active,
:activated,
:type,
:merge_request_events,
:commit_events,
:enable_comments,
:comment_detail,
:learn_more_path,
:trigger_events,
:fields,
:inherit_from_id,
:integration_level,
:editable,
:cancel_path,
:can_test,
:test_path,
:reset_path
]
end
2021-04-29 21:17:54 +05:30
let(:jira_fields) do
[
:jira_issue_transition_automatic,
:jira_issue_transition_id
]
end
2020-07-28 23:09:34 +05:30
subject { helper.integration_form_data(integration) }
2021-09-30 23:02:18 +05:30
context 'with Slack integration' do
let(:integration) { build(:integrations_slack) }
2021-04-17 20:07:23 +05:30
it { is_expected.to include(*fields) }
2021-04-29 21:17:54 +05:30
it { is_expected.not_to include(*jira_fields) }
2021-03-08 18:12:59 +05:30
specify do
expect(subject[:reset_path]).to eq(helper.scoped_reset_integration_path(integration))
end
2020-07-28 23:09:34 +05:30
end
2021-04-29 21:17:54 +05:30
context 'Jira service' do
2021-09-30 23:02:18 +05:30
let(:integration) { build(:jira_integration) }
2021-04-29 21:17:54 +05:30
it { is_expected.to include(*fields, *jira_fields) }
end
2020-01-01 13:55:28 +05:30
end
2020-11-24 15:15:51 +05:30
2021-02-22 17:27:13 +05:30
describe '#scoped_reset_integration_path' do
2021-09-30 23:02:18 +05:30
let(:integration) { build_stubbed(:jira_integration) }
2021-02-22 17:27:13 +05:30
let(:group) { nil }
subject { helper.scoped_reset_integration_path(integration, group: group) }
2020-11-24 15:15:51 +05:30
context 'when no group is present' do
2021-02-22 17:27:13 +05:30
it 'returns instance-level path' do
is_expected.to eq(reset_admin_application_settings_integration_path(integration))
end
2020-11-24 15:15:51 +05:30
end
context 'when group is present' do
let(:group) { build_stubbed(:group) }
2021-02-22 17:27:13 +05:30
it 'returns group-level path' do
is_expected.to eq(reset_group_settings_integration_path(group, integration))
2020-11-24 15:15:51 +05:30
end
2021-02-22 17:27:13 +05:30
end
2020-11-24 15:15:51 +05:30
2021-03-08 18:12:59 +05:30
context 'when a new integration is not persisted' do
2021-09-30 23:02:18 +05:30
let_it_be(:integration) { build(:jira_integration) }
2021-02-22 17:27:13 +05:30
2021-03-08 18:12:59 +05:30
it 'returns an empty string' do
is_expected.to eq('')
2021-02-22 17:27:13 +05:30
end
end
2020-11-24 15:15:51 +05:30
end
2021-09-04 01:27:46 +05:30
describe '#jira_issue_breadcrumb_link' do
let(:issue_reference) { nil }
subject { helper.jira_issue_breadcrumb_link(issue_reference) }
context 'when issue_reference contains HTML' do
let(:issue_reference) { "<script>alert('XSS')</script>" }
it 'escapes issue reference' do
is_expected.not_to include(issue_reference)
is_expected.to include(html_escape(issue_reference))
end
end
end
2020-01-01 13:55:28 +05:30
end