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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/jira_connect_helper_spec.rb')
-rw-r--r--spec/helpers/jira_connect_helper_spec.rb46
1 files changed, 46 insertions, 0 deletions
diff --git a/spec/helpers/jira_connect_helper_spec.rb b/spec/helpers/jira_connect_helper_spec.rb
index 0f78185dc7d..1c1b2a22b7c 100644
--- a/spec/helpers/jira_connect_helper_spec.rb
+++ b/spec/helpers/jira_connect_helper_spec.rb
@@ -7,6 +7,11 @@ RSpec.describe JiraConnectHelper do
let_it_be(:subscription) { create(:jira_connect_subscription) }
let(:user) { create(:user) }
+ let(:client_id) { '123' }
+
+ before do
+ stub_env('JIRA_CONNECT_OAUTH_CLIENT_ID', client_id)
+ end
subject { helper.jira_connect_app_data([subscription]) }
@@ -29,6 +34,47 @@ RSpec.describe JiraConnectHelper do
expect(subject[:users_path]).to eq(jira_connect_users_path)
end
+ context 'with oauth_metadata' do
+ let(:oauth_metadata) { helper.jira_connect_app_data([subscription])[:oauth_metadata] }
+
+ subject(:parsed_oauth_metadata) { Gitlab::Json.parse(oauth_metadata).deep_symbolize_keys }
+
+ it 'assigns oauth_metadata' do
+ expect(parsed_oauth_metadata).to include(
+ oauth_authorize_url: start_with('http://test.host/oauth/authorize?'),
+ oauth_token_url: 'http://test.host/oauth/token',
+ state: %r/[a-z0-9.]{32}/,
+ oauth_token_payload: hash_including(
+ grant_type: 'authorization_code',
+ client_id: client_id,
+ redirect_uri: 'http://test.host/-/jira_connect/oauth_callbacks'
+ )
+ )
+ end
+
+ it 'includes oauth_authorize_url with all params' do
+ params = Rack::Utils.parse_nested_query(URI.parse(parsed_oauth_metadata[:oauth_authorize_url]).query)
+
+ expect(params).to include(
+ 'client_id' => client_id,
+ 'response_type' => 'code',
+ 'scope' => 'api',
+ 'redirect_uri' => 'http://test.host/-/jira_connect/oauth_callbacks',
+ 'state' => parsed_oauth_metadata[:state]
+ )
+ end
+
+ context 'jira_connect_oauth feature is disabled' do
+ before do
+ stub_feature_flags(jira_connect_oauth: false)
+ end
+
+ it 'does not assign oauth_metadata' do
+ expect(oauth_metadata).to be_nil
+ end
+ end
+ end
+
it 'passes group as "skip_groups" param' do
skip_groups_param = CGI.escape('skip_groups[]')