2019-03-27 10:59:02 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-03 23:08:05 -04:00
|
|
|
RSpec.describe GraphqlController do
|
2020-05-12 14:07:54 -04:00
|
|
|
include GraphqlHelpers
|
|
|
|
|
2019-03-27 10:59:02 -04:00
|
|
|
before do
|
|
|
|
stub_feature_flags(graphql: true)
|
|
|
|
end
|
|
|
|
|
2019-07-29 14:36:35 -04:00
|
|
|
describe 'ArgumentError' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:message) { 'green ideas sleep furiously' }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'handles argument errors' do
|
|
|
|
allow(subject).to receive(:execute) do
|
|
|
|
raise Gitlab::Graphql::Errors::ArgumentError, message
|
|
|
|
end
|
|
|
|
|
|
|
|
post :execute
|
|
|
|
|
|
|
|
expect(json_response).to include(
|
|
|
|
'errors' => include(a_hash_including('message' => message))
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-27 10:59:02 -04:00
|
|
|
describe 'POST #execute' do
|
|
|
|
context 'when user is logged in' do
|
2020-05-14 11:08:14 -04:00
|
|
|
let(:user) { create(:user, last_activity_on: Date.yesterday) }
|
2019-03-27 10:59:02 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 200 when user can access API' do
|
|
|
|
post :execute
|
|
|
|
|
2020-01-27 07:08:35 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
2019-03-27 10:59:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns access denied template when user cannot access API' do
|
|
|
|
# User cannot access API in a couple of cases
|
|
|
|
# * When user is internal(like ghost users)
|
|
|
|
# * When user is blocked
|
2020-04-03 14:10:03 -04:00
|
|
|
expect(Ability).to receive(:allowed?).with(user, :log_in, :global).and_call_original
|
2019-03-27 10:59:02 -04:00
|
|
|
expect(Ability).to receive(:allowed?).with(user, :access_api, :global).and_return(false)
|
|
|
|
|
|
|
|
post :execute
|
|
|
|
|
2020-03-31 17:08:05 -04:00
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
2019-03-27 10:59:02 -04:00
|
|
|
expect(response).to render_template('errors/access_denied')
|
|
|
|
end
|
2020-05-14 11:08:14 -04:00
|
|
|
|
|
|
|
it 'updates the users last_activity_on field' do
|
|
|
|
expect { post :execute }.to change { user.reload.last_activity_on }
|
|
|
|
end
|
2020-08-20 08:10:27 -04:00
|
|
|
|
|
|
|
it "sets context's sessionless value as false" do
|
|
|
|
post :execute
|
|
|
|
|
|
|
|
expect(assigns(:context)[:is_sessionless_user]).to be false
|
|
|
|
end
|
2020-05-14 11:08:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user uses an API token' do
|
|
|
|
let(:user) { create(:user, last_activity_on: Date.yesterday) }
|
|
|
|
let(:token) { create(:personal_access_token, user: user, scopes: [:api]) }
|
|
|
|
|
2020-08-20 08:10:27 -04:00
|
|
|
subject { post :execute, params: { access_token: token.token } }
|
|
|
|
|
2020-05-14 11:08:14 -04:00
|
|
|
it 'updates the users last_activity_on field' do
|
2020-08-20 08:10:27 -04:00
|
|
|
expect { subject }.to change { user.reload.last_activity_on }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "sets context's sessionless value as true" do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(assigns(:context)[:is_sessionless_user]).to be true
|
2020-05-14 11:08:14 -04:00
|
|
|
end
|
2019-03-27 10:59:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user is not logged in' do
|
|
|
|
it 'returns 200' do
|
|
|
|
post :execute
|
|
|
|
|
2020-01-27 07:08:35 -05:00
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
2019-03-27 10:59:02 -04:00
|
|
|
end
|
2020-08-20 08:10:27 -04:00
|
|
|
|
|
|
|
it "sets context's sessionless value as false" do
|
|
|
|
post :execute
|
|
|
|
|
|
|
|
expect(assigns(:context)[:is_sessionless_user]).to be false
|
|
|
|
end
|
2019-03-27 10:59:02 -04:00
|
|
|
end
|
2020-10-06 05:08:32 -04:00
|
|
|
|
|
|
|
it 'includes request object in context' do
|
|
|
|
post :execute
|
|
|
|
|
|
|
|
expect(assigns(:context)[:request]).to eq request
|
|
|
|
end
|
2019-03-27 10:59:02 -04:00
|
|
|
end
|
2020-05-12 14:07:54 -04:00
|
|
|
|
|
|
|
describe 'Admin Mode' do
|
|
|
|
let(:admin) { create(:admin) }
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:graphql_query) { graphql_query_for('project', { 'fullPath' => project.full_path }, %w(id name)) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when admin mode enabled' do
|
|
|
|
before do
|
|
|
|
Gitlab::Session.with_session(controller.session) do
|
|
|
|
controller.current_user_mode.request_admin_mode!
|
|
|
|
controller.current_user_mode.enable_admin_mode!(password: admin.password)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can query project data' do
|
|
|
|
post :execute, params: { query: graphql_query }
|
|
|
|
|
|
|
|
expect(controller.current_user_mode.admin_mode?).to be(true)
|
|
|
|
expect(json_response['data']['project']['name']).to eq(project.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when admin mode disabled' do
|
|
|
|
it 'cannot query project data' do
|
|
|
|
post :execute, params: { query: graphql_query }
|
|
|
|
|
|
|
|
expect(controller.current_user_mode.admin_mode?).to be(false)
|
|
|
|
expect(json_response['data']['project']).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when admin is member of the project' do
|
|
|
|
before do
|
|
|
|
project.add_developer(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can query project data' do
|
|
|
|
post :execute, params: { query: graphql_query }
|
|
|
|
|
|
|
|
expect(controller.current_user_mode.admin_mode?).to be(false)
|
|
|
|
expect(json_response['data']['project']['name']).to eq(project.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-09-13 23:09:21 -04:00
|
|
|
|
|
|
|
describe '#append_info_to_payload' do
|
|
|
|
let(:graphql_query) { graphql_query_for('project', { 'fullPath' => 'foo' }, %w(id name)) }
|
2020-10-06 08:08:38 -04:00
|
|
|
let(:mock_store) { { graphql_logs: { foo: :bar } } }
|
2020-09-13 23:09:21 -04:00
|
|
|
let(:log_payload) { {} }
|
|
|
|
|
|
|
|
before do
|
2020-10-06 08:08:38 -04:00
|
|
|
allow(RequestStore).to receive(:store).and_return(mock_store)
|
2020-09-13 23:09:21 -04:00
|
|
|
allow(controller).to receive(:append_info_to_payload).and_wrap_original do |method, *|
|
|
|
|
method.call(log_payload)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'appends metadata for logging' do
|
|
|
|
post :execute, params: { query: graphql_query, operationName: 'Foo' }
|
|
|
|
|
|
|
|
expect(controller).to have_received(:append_info_to_payload)
|
2020-10-06 08:08:38 -04:00
|
|
|
expect(log_payload.dig(:metadata, :graphql)).to eq({ operation_name: 'Foo', foo: :bar })
|
2020-09-13 23:09:21 -04:00
|
|
|
end
|
|
|
|
end
|
2019-03-27 10:59:02 -04:00
|
|
|
end
|