comparison test/integration/api_test/issue_relations_test.rb @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents 433d4f72a19b
children e248c7af89ec
comparison
equal deleted inserted replaced
1296:038ba2d95de8 1464:261b3d9a4903
1 # Redmine - project management software 1 # Redmine - project management software
2 # Copyright (C) 2006-2012 Jean-Philippe Lang 2 # Copyright (C) 2006-2013 Jean-Philippe Lang
3 # 3 #
4 # This program is free software; you can redistribute it and/or 4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License 5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2 6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version. 7 # of the License, or (at your option) any later version.
15 # along with this program; if not, write to the Free Software 15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 require File.expand_path('../../../test_helper', __FILE__) 18 require File.expand_path('../../../test_helper', __FILE__)
19 19
20 class ApiTest::IssueRelationsTest < ActionController::IntegrationTest 20 class Redmine::ApiTest::IssueRelationsTest < Redmine::ApiTest::Base
21 fixtures :projects, :trackers, :issue_statuses, :issues, 21 fixtures :projects, :trackers, :issue_statuses, :issues,
22 :enumerations, :users, :issue_categories, 22 :enumerations, :users, :issue_categories,
23 :projects_trackers, 23 :projects_trackers,
24 :roles, 24 :roles,
25 :member_roles, 25 :member_roles,
26 :members, 26 :members,
27 :enabled_modules, 27 :enabled_modules,
28 :workflows,
29 :issue_relations 28 :issue_relations
30 29
31 def setup 30 def setup
32 Setting.rest_api_enabled = '1' 31 Setting.rest_api_enabled = '1'
33 end 32 end
34 33
35 context "/issues/:issue_id/relations" do 34 test "GET /issues/:issue_id/relations.xml should return issue relations" do
36 context "GET" do 35 get '/issues/9/relations.xml', {}, credentials('jsmith')
37 should "return issue relations" do
38 get '/issues/9/relations.xml', {}, credentials('jsmith')
39 36
40 assert_response :success 37 assert_response :success
41 assert_equal 'application/xml', @response.content_type 38 assert_equal 'application/xml', @response.content_type
42 39
43 assert_tag :tag => 'relations', 40 assert_tag :tag => 'relations',
44 :attributes => { :type => 'array' }, 41 :attributes => { :type => 'array' },
45 :child => { 42 :child => {
46 :tag => 'relation', 43 :tag => 'relation',
47 :child => { 44 :child => {
48 :tag => 'id', 45 :tag => 'id',
49 :content => '1' 46 :content => '1'
50 } 47 }
51 } 48 }
52 end 49 end
50
51 test "POST /issues/:issue_id/relations.xml should create the relation" do
52 assert_difference('IssueRelation.count') do
53 post '/issues/2/relations.xml', {:relation => {:issue_to_id => 7, :relation_type => 'relates'}}, credentials('jsmith')
53 end 54 end
54 55
55 context "POST" do 56 relation = IssueRelation.first(:order => 'id DESC')
56 should "create a relation" do 57 assert_equal 2, relation.issue_from_id
57 assert_difference('IssueRelation.count') do 58 assert_equal 7, relation.issue_to_id
58 post '/issues/2/relations.xml', {:relation => {:issue_to_id => 7, :relation_type => 'relates'}}, credentials('jsmith') 59 assert_equal 'relates', relation.relation_type
59 end
60 60
61 relation = IssueRelation.first(:order => 'id DESC') 61 assert_response :created
62 assert_equal 2, relation.issue_from_id 62 assert_equal 'application/xml', @response.content_type
63 assert_equal 7, relation.issue_to_id 63 assert_tag 'relation', :child => {:tag => 'id', :content => relation.id.to_s}
64 assert_equal 'relates', relation.relation_type
65
66 assert_response :created
67 assert_equal 'application/xml', @response.content_type
68 assert_tag 'relation', :child => {:tag => 'id', :content => relation.id.to_s}
69 end
70
71 context "with failure" do
72 should "return the errors" do
73 assert_no_difference('IssueRelation.count') do
74 post '/issues/2/relations.xml', {:relation => {:issue_to_id => 7, :relation_type => 'foo'}}, credentials('jsmith')
75 end
76
77 assert_response :unprocessable_entity
78 assert_tag :errors, :child => {:tag => 'error', :content => /relation_type is not included in the list/}
79 end
80 end
81 end
82 end 64 end
83 65
84 context "/relations/:id" do 66 test "POST /issues/:issue_id/relations.xml with failure should return errors" do
85 context "GET" do 67 assert_no_difference('IssueRelation.count') do
86 should "return the relation" do 68 post '/issues/2/relations.xml', {:relation => {:issue_to_id => 7, :relation_type => 'foo'}}, credentials('jsmith')
87 get '/relations/2.xml', {}, credentials('jsmith')
88
89 assert_response :success
90 assert_equal 'application/xml', @response.content_type
91 assert_tag 'relation', :child => {:tag => 'id', :content => '2'}
92 end
93 end 69 end
94 70
95 context "DELETE" do 71 assert_response :unprocessable_entity
96 should "delete the relation" do 72 assert_tag :errors, :child => {:tag => 'error', :content => /relation_type is not included in the list/}
97 assert_difference('IssueRelation.count', -1) do 73 end
98 delete '/relations/2.xml', {}, credentials('jsmith')
99 end
100 74
101 assert_response :ok 75 test "GET /relations/:id.xml should return the relation" do
102 assert_equal '', @response.body 76 get '/relations/2.xml', {}, credentials('jsmith')
103 assert_nil IssueRelation.find_by_id(2) 77
104 end 78 assert_response :success
79 assert_equal 'application/xml', @response.content_type
80 assert_tag 'relation', :child => {:tag => 'id', :content => '2'}
81 end
82
83 test "DELETE /relations/:id.xml should delete the relation" do
84 assert_difference('IssueRelation.count', -1) do
85 delete '/relations/2.xml', {}, credentials('jsmith')
105 end 86 end
87
88 assert_response :ok
89 assert_equal '', @response.body
90 assert_nil IssueRelation.find_by_id(2)
106 end 91 end
107 end 92 end