debian-mirror-gitlab/spec/features/jira_oauth_provider_authorize_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
692 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'JIRA OAuth Provider' do
describe 'JIRA DVCS OAuth Authorization' do
2022-06-21 17:19:12 +05:30
let(:application) { create(:oauth_application, redirect_uri: oauth_jira_dvcs_callback_url, scopes: 'read_user') }
2020-11-24 15:15:51 +05:30
before do
sign_in(user)
2022-06-21 17:19:12 +05:30
visit oauth_jira_dvcs_authorize_path(client_id: application.uid,
redirect_uri: oauth_jira_dvcs_callback_url,
2020-11-24 15:15:51 +05:30
response_type: 'code',
state: 'my_state',
scope: 'read_user')
end
it_behaves_like 'Secure OAuth Authorizations'
end
end