debian-mirror-gitlab/spec/graphql/types/user_type_spec.rb

57 lines
1.3 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe GitlabSchema.types['User'] do
2020-05-24 23:13:21 +05:30
specify { expect(described_class.graphql_name).to eq('User') }
2019-07-07 11:18:12 +05:30
2020-05-24 23:13:21 +05:30
specify { expect(described_class).to require_graphql_authorizations(:read_user) }
2020-01-01 13:55:28 +05:30
it 'has the expected fields' do
expected_fields = %w[
2020-06-23 00:09:42 +05:30
id
2021-03-11 19:13:27 +05:30
bot
2020-06-23 00:09:42 +05:30
user_permissions
snippets
name
username
2020-10-24 23:57:45 +05:30
email
2021-02-22 17:27:13 +05:30
publicEmail
2020-06-23 00:09:42 +05:30
avatarUrl
webUrl
2020-10-24 23:57:45 +05:30
webPath
2020-06-23 00:09:42 +05:30
todos
state
2020-10-24 23:57:45 +05:30
status
2021-02-22 17:27:13 +05:30
location
2020-06-23 00:09:42 +05:30
authoredMergeRequests
assignedMergeRequests
2021-02-22 17:27:13 +05:30
reviewRequestedMergeRequests
2020-06-23 00:09:42 +05:30
groupMemberships
2021-01-29 00:20:46 +05:30
groupCount
2020-06-23 00:09:42 +05:30
projectMemberships
2020-11-24 15:15:51 +05:30
starredProjects
2021-04-17 20:07:23 +05:30
callouts
2020-01-01 13:55:28 +05:30
]
2020-04-22 19:07:51 +05:30
expect(described_class).to have_graphql_fields(*expected_fields)
2020-01-01 13:55:28 +05:30
end
describe 'snippets field' do
subject { described_class.fields['snippets'] }
it 'returns snippets' do
is_expected.to have_graphql_type(Types::SnippetType.connection_type)
is_expected.to have_graphql_resolver(Resolvers::Users::SnippetsResolver)
end
end
2021-04-17 20:07:23 +05:30
describe 'callouts field' do
subject { described_class.fields['callouts'] }
it 'returns user callouts' do
is_expected.to have_graphql_type(Types::UserCalloutType.connection_type)
end
end
2019-07-07 11:18:12 +05:30
end