debian-mirror-gitlab/spec/services/projects/participants_service_spec.rb

32 lines
1.1 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe Projects::ParticipantsService do
2017-08-17 22:00:37 +05:30
describe '#groups' do
describe 'avatar_url' do
2019-05-30 16:15:17 +05:30
let(:project) { create(:project, :public) }
2018-11-08 19:23:39 +05:30
let(:group) { create(:group, avatar: fixture_file_upload('spec/fixtures/dk.png')) }
2019-05-30 16:15:17 +05:30
let(:user) { create(:user) }
let!(:group_member) { create(:group_member, group: group, user: user) }
2017-08-17 22:00:37 +05:30
2019-05-30 16:15:17 +05:30
it 'should return an url for the avatar' do
participants = described_class.new(project, user)
groups = participants.groups
2017-08-17 22:00:37 +05:30
2019-05-30 16:15:17 +05:30
expect(groups.size).to eq 1
expect(groups.first[:avatar_url]).to eq("/uploads/-/system/group/avatar/#{group.id}/dk.png")
2017-08-17 22:00:37 +05:30
end
2019-05-30 16:15:17 +05:30
it 'should return an url for the avatar with relative url' do
2017-08-17 22:00:37 +05:30
stub_config_setting(relative_url_root: '/gitlab')
stub_config_setting(url: Settings.send(:build_gitlab_url))
2019-05-30 16:15:17 +05:30
participants = described_class.new(project, user)
groups = participants.groups
expect(groups.size).to eq 1
expect(groups.first[:avatar_url]).to eq("/gitlab/uploads/-/system/group/avatar/#{group.id}/dk.png")
2017-08-17 22:00:37 +05:30
end
end
end
end