35 lines
1013 B
Ruby
35 lines
1013 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'User views the Confluence page', feature_category: :integrations do
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let(:project) { create(:project, :public) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
it 'shows the page when the Confluence integration is enabled', :js do
|
|
service = create(:confluence_integration, project: project)
|
|
|
|
visit project_wikis_confluence_path(project)
|
|
|
|
within_testid('super-sidebar') do
|
|
expect(page).to have_css('a[aria-current="page"]', text: 'Confluence')
|
|
end
|
|
|
|
element = find_by_testid('wiki-empty-state')
|
|
|
|
expect(element).to have_link('Go to Confluence', href: service.confluence_url)
|
|
expect(element).to have_link('Confluence epic', href: 'https://gitlab.com/groups/gitlab-org/-/epics/3629')
|
|
end
|
|
|
|
it 'does not show the page when the Confluence integration disabled' do
|
|
visit project_wikis_confluence_path(project)
|
|
|
|
expect(page).to have_gitlab_http_status(:not_found)
|
|
end
|
|
end
|