1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Integrations::Confluence, feature_category: :integrations do
let_it_be(:project) { create(:project) }
describe 'Validations' do
before do
subject.active = active
end
context 'when integration is active' do
let(:active) { true }
it { is_expected.not_to allow_value('https://example.com').for(:confluence_url) }
it { is_expected.not_to allow_value('example.com').for(:confluence_url) }
it { is_expected.not_to allow_value('foo').for(:confluence_url) }
it { is_expected.not_to allow_value('ftp://example.atlassian.net/wiki').for(:confluence_url) }
it { is_expected.not_to allow_value('https://example.atlassian.net').for(:confluence_url) }
it { is_expected.not_to allow_value('https://.atlassian.net/wiki').for(:confluence_url) }
it { is_expected.not_to allow_value('https://example.atlassian.net/wikifoo').for(:confluence_url) }
it { is_expected.not_to allow_value('').for(:confluence_url) }
it { is_expected.not_to allow_value(nil).for(:confluence_url) }
it { is_expected.not_to allow_value('😊').for(:confluence_url) }
it { is_expected.to allow_value('https://example.atlassian.net/wiki').for(:confluence_url) }
it { is_expected.to allow_value('http://example.atlassian.net/wiki').for(:confluence_url) }
it { is_expected.to allow_value('https://example.atlassian.net/wiki/').for(:confluence_url) }
it { is_expected.to allow_value('http://example.atlassian.net/wiki/').for(:confluence_url) }
it { is_expected.to allow_value('https://example.atlassian.net/wiki/foo').for(:confluence_url) }
it { is_expected.to validate_presence_of(:confluence_url) }
end
context 'when integration is inactive' do
let(:active) { false }
it { is_expected.not_to validate_presence_of(:confluence_url) }
it { is_expected.to allow_value('foo').for(:confluence_url) }
end
end
describe '#help' do
it 'can correctly return a link to the project wiki when active' do
subject.project = project
subject.active = true
expect(subject.help).to include(Gitlab::Routing.url_helpers.project_wikis_url(project))
end
context 'when the project wiki is not enabled' do
before do
allow(project).to receive(:wiki_enabled?).and_return(false)
end
it 'returns nil when both active or inactive', :aggregate_failures do
[true, false].each do |active|
subject.active = active
expect(subject.help).to be_nil
end
end
end
end
describe '#avatar_url' do
it 'returns the avatar image path' do
expect(subject.avatar_url).to eq(ActionController::Base.helpers.image_path('confluence.svg'))
end
end
describe 'Caching has_confluence on project_settings' do
subject { project.project_setting.has_confluence? }
it 'sets the property to true when integration is active' do
create(:confluence_integration, project: project, active: true)
is_expected.to be(true)
end
it 'sets the property to false when integration is not active' do
create(:confluence_integration, project: project, active: false)
is_expected.to be(false)
end
it 'creates a project_setting record if one was not already created' do
expect { create(:confluence_integration) }.to change(ProjectSetting, :count).by(1)
end
end
end
|