summaryrefslogtreecommitdiff
path: root/spec/services/projects/participants_service_spec.rb
blob: 063b3bd76eb4e5d85cf7e5a519da1d5fe200a383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'spec_helper'

describe Projects::ParticipantsService, services: true do
  describe '#groups' do
    describe 'avatar_url' do
      let(:project) { create(:empty_project, :public) }
      let(:group) { create(:group, avatar: fixture_file_upload(Rails.root + 'spec/fixtures/dk.png')) }
      let(:user) { create(:user) }
      let(:base_url) { Settings.send(:build_base_gitlab_url) }
      let!(:group_member) { create(:group_member, group: group, user: user) }

      it 'should return an url for the avatar' do
        participants = described_class.new(project, user)
        groups = participants.groups

        expect(groups.size).to eq 1
        expect(groups.first[:avatar_url]).to eq "#{base_url}/uploads/group/avatar/#{group.id}/dk.png"
      end

      it 'should return an url for the avatar with relative url' do
        stub_config_setting(relative_url_root: '/gitlab')
        stub_config_setting(url: Settings.send(:build_gitlab_url))

        participants = described_class.new(project, user)
        groups = participants.groups

        expect(groups.size).to eq 1
        expect(groups.first[:avatar_url]).to eq "#{base_url}/gitlab/uploads/group/avatar/#{group.id}/dk.png"
      end
    end
  end
end