mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
57 lines
1.9 KiB
Ruby
57 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'getting custom emoji within namespace', feature_category: :shared do
|
|
include GraphqlHelpers
|
|
|
|
let_it_be(:current_user) { create(:user) }
|
|
let_it_be(:group) { create(:group, :private, developers: current_user) }
|
|
let_it_be(:custom_emoji) { create(:custom_emoji, group: group, file: 'http://example.com/test.png') }
|
|
|
|
describe "Query CustomEmoji on Group" do
|
|
def custom_emoji_query(group)
|
|
fields = all_graphql_fields_for('Group')
|
|
# TODO: Set required timelogs args elsewhere https://gitlab.com/gitlab-org/gitlab/-/issues/325499
|
|
fields.selection['timelogs(startDate: "2021-03-01" endDate: "2021-03-30")'] = fields.selection.delete('timelogs')
|
|
|
|
graphql_query_for(
|
|
'group',
|
|
{ fullPath: group.full_path },
|
|
fields
|
|
)
|
|
end
|
|
|
|
it 'returns emojis when authorised' do
|
|
post_graphql(custom_emoji_query(group), current_user: current_user)
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(graphql_data['group']['customEmoji']['nodes'].count).to eq(1)
|
|
expect(graphql_data['group']['customEmoji']['nodes'].first['name']).to eq(custom_emoji.name)
|
|
expect(graphql_data['group']['customEmoji']['nodes'].first['url']).to eq(custom_emoji.file)
|
|
end
|
|
|
|
it 'returns nil group when unauthorised' do
|
|
user = create(:user)
|
|
post_graphql(custom_emoji_query(group), current_user: user)
|
|
|
|
expect(graphql_data['group']).to be_nil
|
|
end
|
|
|
|
context 'when asset proxy is configured' do
|
|
before do
|
|
stub_asset_proxy_setting(
|
|
enabled: true,
|
|
secret_key: 'shared-secret',
|
|
url: 'https://assets.example.com'
|
|
)
|
|
end
|
|
|
|
it 'uses the proxied url' do
|
|
post_graphql(custom_emoji_query(group), current_user: current_user)
|
|
expect(graphql_data['group']['customEmoji']['nodes'].first['url']).to start_with('https://assets.example.com')
|
|
end
|
|
end
|
|
end
|
|
end
|