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

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

require 'spec_helper'

describe Oauth::AuthorizationsController do
  let!(:application) { create(:oauth_application, scopes: 'api read_user', redirect_uri: 'http://example.com') }
  let(:params) do
    {
      response_type: "code",
      client_id: application.uid,
      redirect_uri: application.redirect_uri,
      state: 'state'
    }
  end

  before do
    sign_in(user)
  end

  describe 'GET #new' do
    context 'when the user is confirmed' do
      let(:user) { create(:user) }

      context 'without valid params' do
        it 'returns 200 code and renders error view' do
          get :new

          expect(response).to have_gitlab_http_status(:ok)
          expect(response).to render_template('doorkeeper/authorizations/error')
        end
      end

      context 'with valid params' do
        render_views

        it 'returns 200 code and renders view' do
          get :new, params: params

          expect(response).to have_gitlab_http_status(:ok)
          expect(response).to render_template('doorkeeper/authorizations/new')
        end

        it 'deletes session.user_return_to and redirects when skip authorization' do
          application.update(trusted: true)
          request.session['user_return_to'] = 'http://example.com'

          get :new, params: params

          expect(request.session['user_return_to']).to be_nil
          expect(response).to have_gitlab_http_status(:found)
        end

        context 'when there is already an access token for the application' do
          context 'when the request scope matches any of the created token scopes' do
            before do
              scopes = Doorkeeper::OAuth::Scopes.from_string('api')

              allow(Doorkeeper.configuration).to receive(:scopes).and_return(scopes)

              create :oauth_access_token, application: application, resource_owner_id: user.id, scopes: scopes
            end

            it 'authorizes the request and redirects' do
              get :new, params: params

              expect(request.session['user_return_to']).to be_nil
              expect(response).to have_gitlab_http_status(:found)
            end
          end
        end
      end
    end

    context 'when the user is unconfirmed' do
      let(:user) { create(:user, confirmed_at: nil) }

      it 'returns 200 and renders error view' do
        get :new, params: params

        expect(response).to have_gitlab_http_status(:ok)
        expect(response).to render_template('doorkeeper/authorizations/error')
      end
    end
  end
end