debian-mirror-gitlab/spec/features/oauth_provider_authorize_spec.rb
2023-03-04 22:38:38 +05:30

22 lines
674 B
Ruby

# 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