2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe JiraConnect::SubscriptionsController do
|
|
|
|
let_it_be(:installation) { create(:jira_connect_installation) }
|
|
|
|
|
|
|
|
describe '#index' do
|
|
|
|
before do
|
|
|
|
get :index, params: { jwt: jwt }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without JWT' do
|
|
|
|
let(:jwt) { nil }
|
|
|
|
|
|
|
|
it 'returns 403' do
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with valid JWT' do
|
|
|
|
let(:qsh) { Atlassian::Jwt.create_query_string_hash('https://gitlab.test/subscriptions', 'GET', 'https://gitlab.test') }
|
|
|
|
let(:jwt) { Atlassian::Jwt.encode({ iss: installation.client_key, qsh: qsh }, installation.shared_secret) }
|
|
|
|
|
|
|
|
it 'returns 200' do
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes X-Frame-Options to allow rendering in iframe' do
|
|
|
|
expect(response.headers['X-Frame-Options']).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#create' do
|
|
|
|
let(:group) { create(:group) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:current_user) { user }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { post :create, params: { jwt: jwt, namespace_path: group.path, format: :json } }
|
|
|
|
|
|
|
|
context 'without JWT' do
|
|
|
|
let(:jwt) { nil }
|
|
|
|
|
|
|
|
it 'returns 403' do
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with valid JWT' do
|
2021-09-04 01:27:46 +05:30
|
|
|
let(:claims) { { iss: installation.client_key, sub: 1234 } }
|
|
|
|
let(:jwt) { Atlassian::Jwt.encode(claims, installation.shared_secret) }
|
|
|
|
let(:jira_user) { { 'groups' => { 'items' => [{ 'name' => jira_group_name }] } } }
|
|
|
|
let(:jira_group_name) { 'site-admins' }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
context 'signed in to GitLab' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
2021-09-04 01:27:46 +05:30
|
|
|
WebMock
|
|
|
|
.stub_request(:get, "#{installation.base_url}/rest/api/3/user?accountId=1234&expand=groups")
|
|
|
|
.to_return(body: jira_user.to_json, status: 200, headers: { 'Content-Type' => 'application/json' })
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'dev panel integration is available' do
|
|
|
|
it 'creates a subscription' do
|
|
|
|
expect { subject }.to change { installation.subscriptions.count }.from(0).to(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 200' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
context 'when the Jira user is not a site-admin' do
|
|
|
|
let(:jira_group_name) { 'some-other-group' }
|
|
|
|
|
|
|
|
it 'returns forbidden' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'not signed in to GitLab' do
|
|
|
|
it 'returns 401' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:unauthorized)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#destroy' do
|
|
|
|
let(:subscription) { create(:jira_connect_subscription, installation: installation) }
|
2021-09-04 01:27:46 +05:30
|
|
|
let(:jira_user) { { 'groups' => { 'items' => [{ 'name' => jira_group_name }] } } }
|
|
|
|
let(:jira_group_name) { 'site-admins' }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
before do
|
2021-09-04 01:27:46 +05:30
|
|
|
WebMock
|
|
|
|
.stub_request(:get, "#{installation.base_url}/rest/api/3/user?accountId=1234&expand=groups")
|
|
|
|
.to_return(body: jira_user.to_json, status: 200, headers: { 'Content-Type' => 'application/json' })
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
delete :destroy, params: { jwt: jwt, id: subscription.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without JWT' do
|
|
|
|
let(:jwt) { nil }
|
|
|
|
|
|
|
|
it 'returns 403' do
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with valid JWT' do
|
2021-09-04 01:27:46 +05:30
|
|
|
let(:claims) { { iss: installation.client_key, sub: 1234 } }
|
|
|
|
let(:jwt) { Atlassian::Jwt.encode(claims, installation.shared_secret) }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
it 'deletes the subscription' do
|
|
|
|
expect { subscription.reload }.to raise_error ActiveRecord::RecordNotFound
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
context 'when the Jira user is not a site admin' do
|
|
|
|
let(:jira_group_name) { 'some-other-group' }
|
|
|
|
|
|
|
|
it 'does not delete the subscription' do
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
|
|
|
|
expect { subscription.reload }.not_to raise_error
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|