Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cors_preflight_checks_controller_spec.rb « jira_connect « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d441a8575d09b0828decb967c29c3084cb828112 (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
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe JiraConnect::CorsPreflightChecksController do
  shared_examples 'allows cross-origin requests on self managed' do
    it 'renders not found' do
      options path

      expect(response).to have_gitlab_http_status(:not_found)
      expect(response.headers['Access-Control-Allow-Origin']).to be_nil
    end

    context 'with jira_connect_proxy_url setting' do
      before do
        stub_application_setting(jira_connect_proxy_url: 'https://gitlab.com')

        options path, headers: { 'Origin' => 'http://notgitlab.com' }
      end

      it 'returns 200' do
        expect(response).to have_gitlab_http_status(:ok)
      end

      it 'responds with access-control-allow headers', :aggregate_failures do
        expect(response.headers['Access-Control-Allow-Origin']).to eq 'https://gitlab.com'
        expect(response.headers['Access-Control-Allow-Methods']).to eq allowed_methods
        expect(response.headers['Access-Control-Allow-Credentials']).to be_nil
      end

      context 'when on GitLab.com' do
        before do
          allow(Gitlab).to receive(:com?).and_return(true)
        end

        it 'renders not found' do
          options path

          expect(response).to have_gitlab_http_status(:not_found)
          expect(response.headers['Access-Control-Allow-Origin']).to be_nil
        end
      end
    end
  end

  describe 'OPTIONS /-/jira_connect/oauth_application_id' do
    let(:allowed_methods) { 'GET, OPTIONS' }
    let(:path) { '/-/jira_connect/oauth_application_id' }

    it_behaves_like 'allows cross-origin requests on self managed'
  end

  describe 'OPTIONS /-/jira_connect/subscriptions/:id' do
    let(:allowed_methods) { 'DELETE, OPTIONS' }
    let(:path) { '/-/jira_connect/subscriptions/123' }

    it_behaves_like 'allows cross-origin requests on self managed'
  end
end