summaryrefslogtreecommitdiff
path: root/spec/requests/jira_connect/subscriptions_controller_spec.rb
blob: d8f329f13f50069ce1525875cba599d7b41b9d83 (plain)
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
# 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