debian-mirror-gitlab/spec/requests/api/graphql/users_spec.rb

87 lines
2.6 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'Users' do
2020-06-23 00:09:42 +05:30
include GraphqlHelpers
let_it_be(:current_user) { create(:user, created_at: 1.day.ago) }
let_it_be(:user1) { create(:user, created_at: 2.days.ago) }
let_it_be(:user2) { create(:user, created_at: 3.days.ago) }
let_it_be(:user3) { create(:user, created_at: 4.days.ago) }
describe '.users' do
shared_examples 'a working users query' do
it_behaves_like 'a working graphql query' do
before do
post_graphql(query, current_user: current_user)
end
end
it 'includes a list of users' do
post_graphql(query)
expect(graphql_data.dig('users', 'nodes')).not_to be_empty
end
end
context 'with no arguments' do
let_it_be(:query) { graphql_query_for(:users, { usernames: [user1.username] }, 'nodes { id }') }
it_behaves_like 'a working users query'
end
context 'with a list of usernames' do
let(:query) { graphql_query_for(:users, { usernames: [user1.username] }, 'nodes { id }') }
it_behaves_like 'a working users query'
end
context 'with a list of IDs' do
let(:query) { graphql_query_for(:users, { ids: [user1.to_global_id.to_s] }, 'nodes { id }') }
it_behaves_like 'a working users query'
end
context 'when usernames and ids parameter are used' do
let_it_be(:query) { graphql_query_for(:users, { ids: user1.to_global_id.to_s, usernames: user1.username }, 'nodes { id }') }
it 'displays an error' do
post_graphql(query)
expect(graphql_errors).to include(
a_hash_including('message' => a_string_matching(%r{Provide either a list of usernames or ids}))
)
end
end
end
describe 'sorting and pagination' do
let_it_be(:data_path) { [:users] }
2021-02-22 17:27:13 +05:30
def pagination_query(params)
graphql_query_for(:users, params, "#{page_info} nodes { id }")
2020-06-23 00:09:42 +05:30
end
context 'when sorting by created_at' do
2021-02-22 17:27:13 +05:30
let_it_be(:ascending_users) { [user3, user2, user1, current_user].map { |u| global_id_of(u) } }
2020-06-23 00:09:42 +05:30
context 'when ascending' do
it_behaves_like 'sorted paginated query' do
2021-02-22 17:27:13 +05:30
let(:sort_param) { :CREATED_ASC }
2020-06-23 00:09:42 +05:30
let(:first_param) { 1 }
let(:expected_results) { ascending_users }
end
end
context 'when descending' do
it_behaves_like 'sorted paginated query' do
2021-02-22 17:27:13 +05:30
let(:sort_param) { :CREATED_DESC }
2020-06-23 00:09:42 +05:30
let(:first_param) { 1 }
let(:expected_results) { ascending_users.reverse }
end
end
end
end
end