debian-mirror-gitlab/spec/requests/api/labels_spec.rb

472 lines
17 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe API::Labels do
2014-09-02 18:07:02 +05:30
let(:user) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, creator_id: user.id, namespace: user.namespace) }
2014-09-02 18:07:02 +05:30
let!(:label1) { create(:label, title: 'label1', project: project) }
2017-08-17 22:00:37 +05:30
let!(:priority_label) { create(:label, title: 'bug', project: project, priority: 3) }
2014-09-02 18:07:02 +05:30
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2014-09-02 18:07:02 +05:30
end
describe 'GET /projects/:id/labels' do
2019-10-12 21:52:04 +05:30
let(:group) { create(:group) }
let!(:group_label) { create(:group_label, title: 'feature', group: group) }
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
before do
project.update!(group: group)
end
2016-11-03 12:29:30 +05:30
2019-10-12 21:52:04 +05:30
it 'returns all available labels to the project' do
2014-09-02 18:07:02 +05:30
get api("/projects/#{project.id}/labels", user)
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(response).to include_pagination_headers
2019-10-12 21:52:04 +05:30
expect(json_response).to all(match_schema('public_api/v4/labels/project_label'))
2017-08-17 22:00:37 +05:30
expect(json_response.size).to eq(3)
expect(json_response.map { |l| l['name'] }).to match_array([group_label.name, priority_label.name, label1.name])
2019-10-12 21:52:04 +05:30
end
context 'when the with_counts parameter is set' do
before do
create(:labeled_issue, project: project, labels: [group_label], author: user)
create(:labeled_issue, project: project, labels: [label1], author: user, state: :closed)
create(:labeled_merge_request, labels: [priority_label], author: user, source_project: project )
end
it 'includes counts in the response' do
get api("/projects/#{project.id}/labels", user), params: { with_counts: true }
expect(response).to have_gitlab_http_status(200)
expect(response).to include_pagination_headers
expect(json_response).to all(match_schema('public_api/v4/labels/project_label_with_counts'))
expect(json_response.size).to eq(3)
expect(json_response.map { |l| l['name'] }).to match_array([group_label.name, priority_label.name, label1.name])
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
label1_response = json_response.find { |l| l['name'] == label1.title }
group_label_response = json_response.find { |l| l['name'] == group_label.title }
priority_label_response = json_response.find { |l| l['name'] == priority_label.title }
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
expect(label1_response).to include('open_issues_count' => 0,
'closed_issues_count' => 1,
'open_merge_requests_count' => 0,
'name' => label1.name,
'description' => nil,
'color' => a_string_matching(/^#\h{6}$/),
'text_color' => a_string_matching(/^#\h{6}$/),
'priority' => nil,
'subscribed' => false,
'is_project_label' => true)
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
expect(group_label_response).to include('open_issues_count' => 1,
'closed_issues_count' => 0,
'open_merge_requests_count' => 0,
'name' => group_label.name,
'description' => nil,
'color' => a_string_matching(/^#\h{6}$/),
'text_color' => a_string_matching(/^#\h{6}$/),
'priority' => nil,
'subscribed' => false,
'is_project_label' => false)
2017-08-17 22:00:37 +05:30
2019-10-12 21:52:04 +05:30
expect(priority_label_response).to include('open_issues_count' => 0,
'closed_issues_count' => 0,
'open_merge_requests_count' => 1,
'name' => priority_label.name,
'description' => nil,
'color' => a_string_matching(/^#\h{6}$/),
'text_color' => a_string_matching(/^#\h{6}$/),
'priority' => 3,
'subscribed' => false,
'is_project_label' => true)
end
2014-09-02 18:07:02 +05:30
end
end
describe 'POST /projects/:id/labels' do
2016-09-13 17:45:13 +05:30
it 'returns created label when all params' do
2016-06-02 11:05:42 +05:30
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'Foo',
color: '#FFAABB',
description: 'test',
priority: 2
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response['name']).to eq('Foo')
expect(json_response['color']).to eq('#FFAABB')
expect(json_response['description']).to eq('test')
2017-08-17 22:00:37 +05:30
expect(json_response['priority']).to eq(2)
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns created label when only required params' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'Foo & Bar',
color: '#FFAABB'
}
2017-08-17 22:00:37 +05:30
expect(response.status).to eq(201)
expect(json_response['name']).to eq('Foo & Bar')
expect(json_response['color']).to eq('#FFAABB')
expect(json_response['description']).to be_nil
expect(json_response['priority']).to be_nil
end
it 'creates a prioritized label' do
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'Foo & Bar',
color: '#FFAABB',
priority: 3
}
2017-08-17 22:00:37 +05:30
2015-04-26 12:48:37 +05:30
expect(response.status).to eq(201)
2016-08-24 12:49:21 +05:30
expect(json_response['name']).to eq('Foo & Bar')
2015-04-26 12:48:37 +05:30
expect(json_response['color']).to eq('#FFAABB')
2016-06-02 11:05:42 +05:30
expect(json_response['description']).to be_nil
2017-08-17 22:00:37 +05:30
expect(json_response['priority']).to eq(3)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns a 400 bad request if name not given' do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/labels", user), params: { color: '#FFAABB' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns a 400 bad request if color not given' do
2019-02-15 15:39:39 +05:30
post api("/projects/#{project.id}/labels", user), params: { name: 'Foobar' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 for invalid color' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'Foo',
color: '#FFAA'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-12-23 02:04:40 +05:30
expect(json_response['message']['color']).to eq(['must be a valid color code'])
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 for too long color code' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'Foo',
color: '#FFAAFFFF'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-12-23 02:04:40 +05:30
expect(json_response['message']['color']).to eq(['must be a valid color code'])
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 for invalid name' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: ',',
color: '#FFAABB'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-04-26 12:48:37 +05:30
expect(json_response['message']['title']).to eq(['is invalid'])
2014-09-02 18:07:02 +05:30
end
2016-11-24 13:41:30 +05:30
it 'returns 409 if label already exists in group' do
group = create(:group)
group_label = create(:group_label, group: group)
project.update(group: group)
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: group_label.name,
color: '#FFAABB'
}
2016-11-24 13:41:30 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(409)
2016-11-24 13:41:30 +05:30
expect(json_response['message']).to eq('Label already exists')
end
2017-08-17 22:00:37 +05:30
it 'returns 400 for invalid priority' do
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'Foo',
color: '#FFAAFFFF',
priority: 'foo'
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
end
2016-11-24 13:41:30 +05:30
it 'returns 409 if label already exists in project' do
2014-09-02 18:07:02 +05:30
post api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
color: '#FFAABB'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(409)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('Label already exists')
2014-09-02 18:07:02 +05:30
end
end
describe 'DELETE /projects/:id/labels' do
2017-08-17 22:00:37 +05:30
it 'returns 204 for existing label' do
2019-02-15 15:39:39 +05:30
delete api("/projects/#{project.id}/labels", user), params: { name: 'label1' }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(204)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 404 for non existing label' do
2019-02-15 15:39:39 +05:30
delete api("/projects/#{project.id}/labels", user), params: { name: 'label2' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2015-04-26 12:48:37 +05:30
expect(json_response['message']).to eq('404 Label Not Found')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 for wrong parameters' do
2014-09-02 18:07:02 +05:30
delete api("/projects/#{project.id}/labels", user)
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
end
it_behaves_like '412 response' do
let(:request) { api("/projects/#{project.id}/labels", user) }
let(:params) { { name: 'label1' } }
2014-09-02 18:07:02 +05:30
end
end
describe 'PUT /projects/:id/labels' do
2016-09-13 17:45:13 +05:30
it 'returns 200 if name and colors and description are changed' do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
new_name: 'New Label',
color: '#FFFFFF',
description: 'test'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['name']).to eq('New Label')
expect(json_response['color']).to eq('#FFFFFF')
2016-06-02 11:05:42 +05:30
expect(json_response['description']).to eq('test')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 200 if name is changed' do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
new_name: 'New Label'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['name']).to eq('New Label')
expect(json_response['color']).to eq(label1.color)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 200 if colors is changed' do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
color: '#FFFFFF'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-04-26 12:48:37 +05:30
expect(json_response['name']).to eq(label1.name)
expect(json_response['color']).to eq('#FFFFFF')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 200 if description is changed' do
2016-06-02 11:05:42 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'bug',
description: 'test'
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
expect(json_response['name']).to eq(priority_label.name)
2016-06-02 11:05:42 +05:30
expect(json_response['description']).to eq('test')
2017-08-17 22:00:37 +05:30
expect(json_response['priority']).to eq(3)
end
it 'returns 200 if priority is changed' do
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'bug',
priority: 10
}
2017-08-17 22:00:37 +05:30
expect(response.status).to eq(200)
expect(json_response['name']).to eq(priority_label.name)
expect(json_response['priority']).to eq(10)
end
it 'returns 200 if a priority is added' do
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
priority: 3
}
2017-08-17 22:00:37 +05:30
expect(response.status).to eq(200)
expect(json_response['name']).to eq(label1.name)
expect(json_response['priority']).to eq(3)
end
it 'returns 200 if the priority is removed' do
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: priority_label.name,
priority: nil
}
2017-08-17 22:00:37 +05:30
expect(response.status).to eq(200)
expect(json_response['name']).to eq(priority_label.name)
expect(json_response['priority']).to be_nil
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 404 if label does not exist' do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label2',
new_name: 'label3'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 if no label name given' do
2019-02-15 15:39:39 +05:30
put api("/projects/#{project.id}/labels", user), params: { new_name: 'label2' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('name is missing')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 if no new parameters given' do
2019-02-15 15:39:39 +05:30
put api("/projects/#{project.id}/labels", user), params: { name: 'label1' }
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('new_name, color, description, priority are missing, '\
'at least one parameter must be provided')
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 for invalid name' do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
new_name: ',',
color: '#FFFFFF'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-04-26 12:48:37 +05:30
expect(json_response['message']['title']).to eq(['is invalid'])
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 when color code is too short' do
2014-09-02 18:07:02 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
color: '#FF'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-12-23 02:04:40 +05:30
expect(json_response['message']['color']).to eq(['must be a valid color code'])
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
it 'returns 400 for too long color code' do
2018-11-20 20:47:30 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
color: '#FFAAFFFF'
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2015-12-23 02:04:40 +05:30
expect(json_response['message']['color']).to eq(['must be a valid color code'])
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
it 'returns 400 for invalid priority' do
2018-11-20 20:47:30 +05:30
put api("/projects/#{project.id}/labels", user),
2019-02-15 15:39:39 +05:30
params: {
name: 'label1',
priority: 'foo'
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
end
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
describe "POST /projects/:id/labels/:label_id/subscribe" do
2016-06-02 11:05:42 +05:30
context "when label_id is a label title" do
2016-09-13 17:45:13 +05:30
it "subscribes to the label" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/#{label1.title}/subscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response["name"]).to eq(label1.title)
expect(json_response["subscribed"]).to be_truthy
end
end
context "when label_id is a label ID" do
2016-09-13 17:45:13 +05:30
it "subscribes to the label" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/#{label1.id}/subscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response["name"]).to eq(label1.title)
expect(json_response["subscribed"]).to be_truthy
end
end
context "when user is already subscribed to label" do
2017-09-10 17:25:29 +05:30
before do
label1.subscribe(user, project)
end
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
it "returns 304" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/#{label1.id}/subscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(304)
2016-06-02 11:05:42 +05:30
end
end
context "when label ID is not found" do
2016-09-13 17:45:13 +05:30
it "returns 404 error" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/1234/subscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
describe "POST /projects/:id/labels/:label_id/unsubscribe" do
2017-09-10 17:25:29 +05:30
before do
label1.subscribe(user, project)
end
2016-06-02 11:05:42 +05:30
context "when label_id is a label title" do
2016-09-13 17:45:13 +05:30
it "unsubscribes from the label" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/#{label1.title}/unsubscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response["name"]).to eq(label1.title)
expect(json_response["subscribed"]).to be_falsey
end
end
context "when label_id is a label ID" do
2016-09-13 17:45:13 +05:30
it "unsubscribes from the label" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/#{label1.id}/unsubscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(201)
2016-06-02 11:05:42 +05:30
expect(json_response["name"]).to eq(label1.title)
expect(json_response["subscribed"]).to be_falsey
end
end
context "when user is already unsubscribed from label" do
2017-09-10 17:25:29 +05:30
before do
label1.unsubscribe(user, project)
end
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
it "returns 304" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/#{label1.id}/unsubscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(304)
2016-06-02 11:05:42 +05:30
end
end
context "when label ID is not found" do
2016-09-13 17:45:13 +05:30
it "returns 404 error" do
2017-08-17 22:00:37 +05:30
post api("/projects/#{project.id}/labels/1234/unsubscribe", user)
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2016-06-02 11:05:42 +05:30
end
end
end
2014-09-02 18:07:02 +05:30
end