summaryrefslogtreecommitdiff
path: root/spec/features/oauth_provider_authorize_spec.rb
blob: 7638563b4a3787033e56334f1e7f91b531fc4cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'OAuth Provider', feature_category: :system_access do
  describe 'Standard OAuth Authorization' do
    let(:application) { create(:oauth_application, scopes: 'read_user') }

    before do
      sign_in(user)

      visit oauth_authorization_path(client_id: application.uid,
                                     redirect_uri: application.redirect_uri.split.first,
                                     response_type: 'code',
                                     state: 'my_state',
                                     scope: 'read_user')
    end

    it_behaves_like 'Secure OAuth Authorizations'
  end
end