gitlabhq/spec/requests/api/issues_spec.rb

101 lines
3.1 KiB
Ruby
Raw Permalink Normal View History

2012-07-24 14:19:51 +02:00
require 'spec_helper'
describe Gitlab::API do
include ApiHelpers
let(:user) { create(:user) }
let!(:project) { create(:project, namespace: user.namespace ) }
let!(:issue) { create(:issue, author: user, assignee: user, project: project) }
2013-01-04 17:50:31 +01:00
before { project.team << [user, :reporter] }
2012-07-24 14:19:51 +02:00
describe "GET /issues" do
context "when unauthenticated" do
it "should return authentication error" do
get api("/issues")
response.status.should == 401
end
2012-07-24 14:19:51 +02:00
end
context "when authenticated" do
2012-07-24 14:19:51 +02:00
it "should return an array of issues" do
2012-08-25 19:43:55 +02:00
get api("/issues", user)
2012-07-24 14:19:51 +02:00
response.status.should == 200
json_response.should be_an Array
json_response.first['title'].should == issue.title
end
end
end
describe "GET /projects/:id/issues" do
it "should return project issues" do
2013-01-02 18:46:06 +01:00
get api("/projects/#{project.id}/issues", user)
2012-07-24 14:19:51 +02:00
response.status.should == 200
json_response.should be_an Array
json_response.first['title'].should == issue.title
end
end
describe "GET /projects/:id/issues/:issue_id" do
it "should return a project issue by id" do
2013-01-02 18:46:06 +01:00
get api("/projects/#{project.id}/issues/#{issue.id}", user)
2012-07-24 14:19:51 +02:00
response.status.should == 200
json_response['title'].should == issue.title
end
it "should return 404 if issue id not found" do
get api("/projects/#{project.id}/issues/54321", user)
response.status.should == 404
end
2012-07-24 14:19:51 +02:00
end
describe "POST /projects/:id/issues" do
it "should create a new project issue" do
2013-01-02 18:46:06 +01:00
post api("/projects/#{project.id}/issues", user),
title: 'new issue', labels: 'label, label2'
2012-07-24 14:19:51 +02:00
response.status.should == 201
json_response['title'].should == 'new issue'
json_response['description'].should be_nil
json_response['labels'].should == ['label', 'label2']
end
it "should return a 400 bad request if title not given" do
post api("/projects/#{project.id}/issues", user), labels: 'label, label2'
response.status.should == 400
end
2012-07-24 14:19:51 +02:00
end
2013-02-18 10:10:58 +01:00
describe "PUT /projects/:id/issues/:issue_id to update only title" do
2012-07-24 14:19:51 +02:00
it "should update a project issue" do
2013-01-02 18:46:06 +01:00
put api("/projects/#{project.id}/issues/#{issue.id}", user),
2013-02-18 10:10:58 +01:00
title: 'updated title'
2012-07-24 14:19:51 +02:00
response.status.should == 200
2013-02-18 10:10:58 +01:00
2012-07-24 14:19:51 +02:00
json_response['title'].should == 'updated title'
2013-02-18 10:10:58 +01:00
end
it "should return 404 error if issue id not found" do
put api("/projects/#{project.id}/issues/44444", user),
title: 'updated title'
response.status.should == 404
end
2013-02-18 10:10:58 +01:00
end
describe "PUT /projects/:id/issues/:issue_id to update state and label" do
it "should update a project issue" do
put api("/projects/#{project.id}/issues/#{issue.id}", user),
labels: 'label2', state_event: "close"
response.status.should == 200
2012-07-24 14:19:51 +02:00
json_response['labels'].should == ['label2']
2013-02-18 10:10:58 +01:00
json_response['state'].should eq "closed"
2012-07-24 14:19:51 +02:00
end
end
describe "DELETE /projects/:id/issues/:issue_id" do
it "should delete a project issue" do
2013-01-02 18:46:06 +01:00
delete api("/projects/#{project.id}/issues/#{issue.id}", user)
response.status.should == 405
2012-07-24 14:19:51 +02:00
end
end
end