351 lines
11 KiB
Ruby
351 lines
11 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'getting user information' do
|
|
include GraphqlHelpers
|
|
|
|
let(:query) do
|
|
graphql_query_for(:user, user_params, user_fields)
|
|
end
|
|
|
|
let(:user_fields) { all_graphql_fields_for('User', max_depth: 2) }
|
|
|
|
context 'no parameters are provided' do
|
|
let(:user_params) { nil }
|
|
|
|
it 'mentions the missing required parameters' do
|
|
post_graphql(query)
|
|
|
|
expect_graphql_errors_to_include(/username/)
|
|
end
|
|
end
|
|
|
|
context 'looking up a user by username' do
|
|
let_it_be(:project_a) { create(:project, :repository) }
|
|
let_it_be(:project_b) { create(:project, :repository) }
|
|
let_it_be(:user, reload: true) { create(:user, developer_projects: [project_a, project_b]) }
|
|
let_it_be(:authorised_user) { create(:user, developer_projects: [project_a, project_b]) }
|
|
let_it_be(:unauthorized_user) { create(:user) }
|
|
|
|
let_it_be(:assigned_mr) do
|
|
create(:merge_request, :unique_branches, :unique_author,
|
|
source_project: project_a, assignees: [user])
|
|
end
|
|
|
|
let_it_be(:assigned_mr_b) do
|
|
create(:merge_request, :unique_branches, :unique_author,
|
|
source_project: project_b, assignees: [user])
|
|
end
|
|
|
|
let_it_be(:assigned_mr_c) do
|
|
create(:merge_request, :unique_branches, :unique_author,
|
|
source_project: project_b, assignees: [user])
|
|
end
|
|
|
|
let_it_be(:authored_mr) do
|
|
create(:merge_request, :unique_branches,
|
|
source_project: project_a, author: user)
|
|
end
|
|
|
|
let_it_be(:authored_mr_b) do
|
|
create(:merge_request, :unique_branches,
|
|
source_project: project_b, author: user)
|
|
end
|
|
|
|
let_it_be(:authored_mr_c) do
|
|
create(:merge_request, :unique_branches,
|
|
source_project: project_b, author: user)
|
|
end
|
|
|
|
let(:current_user) { authorised_user }
|
|
let(:authored_mrs) { graphql_data_at(:user, :authored_merge_requests, :nodes) }
|
|
let(:assigned_mrs) { graphql_data_at(:user, :assigned_merge_requests, :nodes) }
|
|
let(:user_params) { { username: user.username } }
|
|
|
|
before do
|
|
create(:user_status, user: user)
|
|
post_graphql(query, current_user: current_user)
|
|
end
|
|
|
|
context 'the user is an active user' do
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'can access user profile fields' do
|
|
presenter = UserPresenter.new(user)
|
|
|
|
expect(graphql_data['user']).to match(
|
|
a_hash_including(
|
|
'id' => global_id_of(user),
|
|
'state' => presenter.state,
|
|
'name' => presenter.name,
|
|
'username' => presenter.username,
|
|
'webUrl' => presenter.web_url,
|
|
'avatarUrl' => presenter.avatar_url,
|
|
'email' => presenter.public_email,
|
|
'publicEmail' => presenter.public_email
|
|
))
|
|
|
|
expect(graphql_data['user']['status']).to match(
|
|
a_hash_including(
|
|
'emoji' => presenter.status.emoji,
|
|
'message' => presenter.status.message,
|
|
'availability' => presenter.status.availability.upcase
|
|
))
|
|
end
|
|
|
|
describe 'assignedMergeRequests' do
|
|
let(:user_fields) do
|
|
query_graphql_field(:assigned_merge_requests, mr_args, 'nodes { id }')
|
|
end
|
|
|
|
let(:mr_args) { nil }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'can be found' do
|
|
expect(assigned_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(assigned_mr)),
|
|
a_hash_including('id' => global_id_of(assigned_mr_b)),
|
|
a_hash_including('id' => global_id_of(assigned_mr_c))
|
|
)
|
|
end
|
|
|
|
context 'applying filters' do
|
|
context 'filtering by IID without specifying a project' do
|
|
let(:mr_args) do
|
|
{ iids: [assigned_mr_b.iid.to_s] }
|
|
end
|
|
|
|
it 'return an argument error that mentions the missing fields' do
|
|
expect_graphql_errors_to_include(/projectPath/)
|
|
end
|
|
end
|
|
|
|
context 'filtering by project path and IID' do
|
|
let(:mr_args) do
|
|
{ project_path: project_b.full_path, iids: [assigned_mr_b.iid.to_s] }
|
|
end
|
|
|
|
it 'selects the correct MRs' do
|
|
expect(assigned_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(assigned_mr_b))
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'filtering by project path' do
|
|
let(:mr_args) do
|
|
{ project_path: project_b.full_path }
|
|
end
|
|
|
|
it 'selects the correct MRs' do
|
|
expect(assigned_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(assigned_mr_b)),
|
|
a_hash_including('id' => global_id_of(assigned_mr_c))
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'filtering by author' do
|
|
let(:author) { assigned_mr_b.author }
|
|
let(:mr_args) { { author_username: author.username } }
|
|
|
|
it 'finds the authored mrs' do
|
|
expect(assigned_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(assigned_mr_b))
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'the current user does not have access' do
|
|
let(:current_user) { unauthorized_user }
|
|
|
|
it 'cannot be found' do
|
|
expect(assigned_mrs).to be_empty
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'authoredMergeRequests' do
|
|
let(:user_fields) do
|
|
query_graphql_field(:authored_merge_requests, mr_args, 'nodes { id }')
|
|
end
|
|
|
|
let(:mr_args) { nil }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'can be found' do
|
|
expect(authored_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(authored_mr)),
|
|
a_hash_including('id' => global_id_of(authored_mr_b)),
|
|
a_hash_including('id' => global_id_of(authored_mr_c))
|
|
)
|
|
end
|
|
|
|
context 'applying filters' do
|
|
context 'filtering by IID without specifying a project' do
|
|
let(:mr_args) do
|
|
{ iids: [authored_mr_b.iid.to_s] }
|
|
end
|
|
|
|
it 'return an argument error that mentions the missing fields' do
|
|
expect_graphql_errors_to_include(/projectPath/)
|
|
end
|
|
end
|
|
|
|
context 'filtering by assignee' do
|
|
let(:assignee) { create(:user) }
|
|
let(:mr_args) { { assignee_username: assignee.username } }
|
|
|
|
it 'finds the assigned mrs' do
|
|
authored_mr.assignees << assignee
|
|
authored_mr_c.assignees << assignee
|
|
|
|
post_graphql(query, current_user: current_user)
|
|
|
|
expect(authored_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(authored_mr)),
|
|
a_hash_including('id' => global_id_of(authored_mr_c))
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'filtering by project path and IID' do
|
|
let(:mr_args) do
|
|
{ project_path: project_b.full_path, iids: [authored_mr_b.iid.to_s] }
|
|
end
|
|
|
|
it 'selects the correct MRs' do
|
|
expect(authored_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(authored_mr_b))
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'filtering by project path' do
|
|
let(:mr_args) do
|
|
{ project_path: project_b.full_path }
|
|
end
|
|
|
|
it 'selects the correct MRs' do
|
|
expect(authored_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(authored_mr_b)),
|
|
a_hash_including('id' => global_id_of(authored_mr_c))
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'the current user does not have access' do
|
|
let(:current_user) { unauthorized_user }
|
|
|
|
it 'cannot be found' do
|
|
expect(authored_mrs).to be_empty
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'the user is private' do
|
|
before do
|
|
user.update!(private_profile: true)
|
|
post_graphql(query, current_user: current_user)
|
|
end
|
|
|
|
context 'we only request basic fields' do
|
|
let(:user_fields) { %i[id name username state web_url avatar_url] }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
end
|
|
|
|
context 'we request the groupMemberships' do
|
|
let_it_be(:membership_a) { create(:group_member, user: user) }
|
|
let(:group_memberships) { graphql_data_at(:user, :group_memberships, :nodes) }
|
|
let(:user_fields) { 'groupMemberships { nodes { id } }' }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'cannot be found' do
|
|
expect(group_memberships).to be_empty
|
|
end
|
|
|
|
context 'the current user is the user' do
|
|
let(:current_user) { user }
|
|
|
|
it 'can be found' do
|
|
expect(group_memberships).to include(
|
|
a_hash_including('id' => global_id_of(membership_a))
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'we request the projectMemberships' do
|
|
let_it_be(:membership_a) { create(:project_member, user: user) }
|
|
let(:project_memberships) { graphql_data_at(:user, :project_memberships, :nodes) }
|
|
let(:user_fields) { 'projectMemberships { nodes { id } }' }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'cannot be found' do
|
|
expect(project_memberships).to be_empty
|
|
end
|
|
|
|
context 'the current user is the user' do
|
|
let(:current_user) { user }
|
|
|
|
it 'can be found' do
|
|
expect(project_memberships).to include(
|
|
a_hash_including('id' => global_id_of(membership_a))
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'we request the authoredMergeRequests' do
|
|
let(:user_fields) { 'authoredMergeRequests { nodes { id } }' }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'cannot be found' do
|
|
expect(authored_mrs).to be_empty
|
|
end
|
|
|
|
context 'the current user is the user' do
|
|
let(:current_user) { user }
|
|
|
|
it 'can be found' do
|
|
expect(authored_mrs).to include(
|
|
a_hash_including('id' => global_id_of(authored_mr))
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'we request the assignedMergeRequests' do
|
|
let(:user_fields) { 'assignedMergeRequests { nodes { id } }' }
|
|
|
|
it_behaves_like 'a working graphql query'
|
|
|
|
it 'cannot be found' do
|
|
expect(assigned_mrs).to be_empty
|
|
end
|
|
|
|
context 'the current user is the user' do
|
|
let(:current_user) { user }
|
|
|
|
it 'can be found' do
|
|
expect(assigned_mrs).to contain_exactly(
|
|
a_hash_including('id' => global_id_of(assigned_mr)),
|
|
a_hash_including('id' => global_id_of(assigned_mr_b)),
|
|
a_hash_including('id' => global_id_of(assigned_mr_c))
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|