debian-mirror-gitlab/spec/support/shared_examples/requests/api/issuable_participants_examples.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2020-03-13 15:44:24 +05:30
RSpec.shared_examples 'issuable participants endpoint' do
2018-03-17 18:26:18 +05:30
let(:area) { entity.class.name.underscore.pluralize }
it 'returns participants' do
get api("/projects/#{project.id}/#{area}/#{entity.iid}/participants", user)
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:ok)
2018-03-17 18:26:18 +05:30
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
2020-04-22 19:07:51 +05:30
get api("/projects/#{project.id}/#{area}/#{non_existing_record_iid}/participants", user)
2018-03-17 18:26:18 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2018-03-17 18:26:18 +05:30
end
it 'returns a 404 when id is used instead of iid' do
get api("/projects/#{project.id}/#{area}/#{entity.id}/participants", user)
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2018-03-17 18:26:18 +05:30
end
end