summaryrefslogtreecommitdiff
path: root/spec/serializers/group_link/group_link_entity_spec.rb
blob: 941445feaa2508981501320d0697892fcf4e79d9 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GroupLink::GroupLinkEntity do
  include_context 'group_group_link'

  let(:entity) { described_class.new(group_group_link) }
  let(:entity_hash) { entity.as_json }

  it 'matches json schema' do
    expect(entity.to_json).to match_schema('group_link/group_link')
  end

  it 'correctly exposes `valid_roles`' do
    expect(entity_hash[:valid_roles]).to include(Gitlab::Access.options_with_owner)
  end

  it 'correctly exposes `shared_with_group.avatar_url`' do
    avatar_url = 'https://gitlab.com/uploads/-/system/group/avatar/24/foobar.png?width=40'
    allow(shared_with_group).to receive(:avatar_url).with(only_path: false, size: Member::AVATAR_SIZE).and_return(avatar_url)

    expect(entity_hash[:shared_with_group][:avatar_url]).to match(avatar_url)
  end
end