summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/api/issuable_participants_examples.rb
blob: 96d59e0c4728e412ad3b1684befb5a23ed787dab (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
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(200)
    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}/999/participants", user)

    expect(response).to have_gitlab_http_status(404)
  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(404)
  end
end