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

jira_oauth_provider_authorize_spec.rb « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb26440aff922d5b1dd7f40c7f6b873e7832c004 (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 'JIRA OAuth Provider' do
  describe 'JIRA DVCS OAuth Authorization' do
    let(:application) { create(:oauth_application, redirect_uri: oauth_jira_dvcs_callback_url, scopes: 'read_user') }

    before do
      sign_in(user)

      visit oauth_jira_dvcs_authorize_path(client_id: application.uid,
                                           redirect_uri: oauth_jira_dvcs_callback_url,
                                           response_type: 'code',
                                           state: 'my_state',
                                           scope: 'read_user')
    end

    it_behaves_like 'Secure OAuth Authorizations'
  end
end