Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issuable_participants_examples.rb « api « requests « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5e5803c0a7899767ea0d87bb87d5be25b844b3e (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# frozen_string_literal: true

RSpec.shared_examples 'issuable participants endpoint' do
  let(:area) { entity.class.name.underscore.pluralize }

  it 'returns participants' do
    get api("/projects/#{project.id}/#{area}/#{entity.iid}/participants", user)

    expect(response).to have_gitlab_http_status(:ok)
    expect(response).to include_pagination_headers
    expect(json_response).to be_an Array
    expect(json_response.size).to eq(entity.participants.size)

    last_participant = entity.participants.last
    expect(json_response.last['id']).to eq(last_participant.id)
    expect(json_response.last['name']).to eq(last_participant.name)
    expect(json_response.last['username']).to eq(last_participant.username)
  end

  it 'returns a 404 when iid does not exist' do
    get api("/projects/#{project.id}/#{area}/#{non_existing_record_iid}/participants", user)

    expect(response).to have_gitlab_http_status(:not_found)
  end

  it 'returns a 404 when id is used instead of iid' do
    get api("/projects/#{project.id}/#{area}/#{entity.id}/participants", user)

    expect(response).to have_gitlab_http_status(:not_found)
  end

  context 'with a confidential note' do
    let!(:note) do
      create(
        :note,
        :confidential,
        project: project,
        noteable: entity,
        author: create(:user)
      )
    end

    it 'returns a full list of participants' do
      get api("/projects/#{project.id}/#{area}/#{entity.iid}/participants", user)

      expect(response).to have_gitlab_http_status(:ok)
      participant_ids = json_response.map { |el| el['id'] }
      expect(participant_ids).to match_array([entity.author_id, note.author_id])
    end

    context 'when user cannot see a confidential note' do
      it 'returns a limited list of participants' do
        get api("/projects/#{project.id}/#{area}/#{entity.iid}/participants", create(:user))

        expect(response).to have_gitlab_http_status(:ok)
        participant_ids = json_response.map { |el| el['id'] }
        expect(participant_ids).to match_array([entity.author_id])
      end
    end
  end
end