30 lines
1 KiB
Ruby
30 lines
1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
RSpec.describe JiraConnect::SubscriptionsController do
|
||
|
describe 'GET /-/jira_connect/subscriptions' do
|
||
|
let_it_be(:installation) { create(:jira_connect_installation, instance_url: 'http://self-managed-gitlab.com') }
|
||
|
|
||
|
let(:qsh) do
|
||
|
Atlassian::Jwt.create_query_string_hash('https://gitlab.test/subscriptions', 'GET', 'https://gitlab.test')
|
||
|
end
|
||
|
|
||
|
let(:jwt) { Atlassian::Jwt.encode({ iss: installation.client_key, qsh: qsh }, installation.shared_secret) }
|
||
|
|
||
|
before do
|
||
|
get '/-/jira_connect/subscriptions', params: { jwt: jwt }
|
||
|
end
|
||
|
|
||
|
subject(:content_security_policy) { response.headers['Content-Security-Policy'] }
|
||
|
|
||
|
it { is_expected.to include('http://self-managed-gitlab.com/-/jira_connect/oauth_application_ids')}
|
||
|
|
||
|
context 'with no self-managed instance configured' do
|
||
|
let_it_be(:installation) { create(:jira_connect_installation, instance_url: '') }
|
||
|
|
||
|
it { is_expected.not_to include('http://self-managed-gitlab.com')}
|
||
|
end
|
||
|
end
|
||
|
end
|