##// END OF EJS Templates
Rails4: replace deprecated Relation#first with finder options at ApiTest::VersionsTest...
Toshi MARUYAMA -
r12336:9420d7e34557
parent child
Show More
@@ -1,142 +1,142
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2013 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.expand_path('../../../test_helper', __FILE__)
19 19
20 20 class Redmine::ApiTest::VersionsTest < Redmine::ApiTest::Base
21 21 fixtures :projects, :trackers, :issue_statuses, :issues,
22 22 :enumerations, :users, :issue_categories,
23 23 :projects_trackers,
24 24 :roles,
25 25 :member_roles,
26 26 :members,
27 27 :enabled_modules,
28 28 :versions
29 29
30 30 def setup
31 31 Setting.rest_api_enabled = '1'
32 32 end
33 33
34 34 test "GET /projects/:project_id/versions.xml should return project versions" do
35 35 get '/projects/1/versions.xml'
36 36
37 37 assert_response :success
38 38 assert_equal 'application/xml', @response.content_type
39 39 assert_tag :tag => 'versions',
40 40 :attributes => {:type => 'array'},
41 41 :child => {
42 42 :tag => 'version',
43 43 :child => {
44 44 :tag => 'id',
45 45 :content => '2',
46 46 :sibling => {
47 47 :tag => 'name',
48 48 :content => '1.0'
49 49 }
50 50 }
51 51 }
52 52 end
53 53
54 54 test "POST /projects/:project_id/versions.xml should create the version" do
55 55 assert_difference 'Version.count' do
56 56 post '/projects/1/versions.xml', {:version => {:name => 'API test'}}, credentials('jsmith')
57 57 end
58 58
59 59 version = Version.order('id DESC').first
60 60 assert_equal 'API test', version.name
61 61
62 62 assert_response :created
63 63 assert_equal 'application/xml', @response.content_type
64 64 assert_tag 'version', :child => {:tag => 'id', :content => version.id.to_s}
65 65 end
66 66
67 67 test "POST /projects/:project_id/versions.xml should create the version with due date" do
68 68 assert_difference 'Version.count' do
69 69 post '/projects/1/versions.xml', {:version => {:name => 'API test', :due_date => '2012-01-24'}}, credentials('jsmith')
70 70 end
71 71
72 72 version = Version.order('id DESC').first
73 73 assert_equal 'API test', version.name
74 74 assert_equal Date.parse('2012-01-24'), version.due_date
75 75
76 76 assert_response :created
77 77 assert_equal 'application/xml', @response.content_type
78 78 assert_tag 'version', :child => {:tag => 'id', :content => version.id.to_s}
79 79 end
80 80
81 81 test "POST /projects/:project_id/versions.xml should create the version with custom fields" do
82 82 field = VersionCustomField.generate!
83 83
84 84 assert_difference 'Version.count' do
85 85 post '/projects/1/versions.xml', {
86 86 :version => {
87 87 :name => 'API test',
88 88 :custom_fields => [
89 89 {'id' => field.id.to_s, 'value' => 'Some value'}
90 90 ]
91 91 }
92 92 }, credentials('jsmith')
93 93 end
94 94
95 version = Version.first(:order => 'id DESC')
95 version = Version.order('id DESC').first
96 96 assert_equal 'API test', version.name
97 97 assert_equal 'Some value', version.custom_field_value(field)
98 98
99 99 assert_response :created
100 100 assert_equal 'application/xml', @response.content_type
101 101 assert_select 'version>custom_fields>custom_field[id=?]>value', field.id.to_s, 'Some value'
102 102 end
103 103
104 104 test "POST /projects/:project_id/versions.xml with failure should return the errors" do
105 105 assert_no_difference('Version.count') do
106 106 post '/projects/1/versions.xml', {:version => {:name => ''}}, credentials('jsmith')
107 107 end
108 108
109 109 assert_response :unprocessable_entity
110 110 assert_tag :errors, :child => {:tag => 'error', :content => "Name can't be blank"}
111 111 end
112 112
113 113 test "GET /versions/:id.xml should return the version" do
114 114 get '/versions/2.xml'
115 115
116 116 assert_response :success
117 117 assert_equal 'application/xml', @response.content_type
118 118 assert_select 'version' do
119 119 assert_select 'id', :text => '2'
120 120 assert_select 'name', :text => '1.0'
121 121 assert_select 'sharing', :text => 'none'
122 122 end
123 123 end
124 124
125 125 test "PUT /versions/:id.xml should update the version" do
126 126 put '/versions/2.xml', {:version => {:name => 'API update'}}, credentials('jsmith')
127 127
128 128 assert_response :ok
129 129 assert_equal '', @response.body
130 130 assert_equal 'API update', Version.find(2).name
131 131 end
132 132
133 133 test "DELETE /versions/:id.xml should destroy the version" do
134 134 assert_difference 'Version.count', -1 do
135 135 delete '/versions/3.xml', {}, credentials('jsmith')
136 136 end
137 137
138 138 assert_response :ok
139 139 assert_equal '', @response.body
140 140 assert_nil Version.find_by_id(3)
141 141 end
142 142 end
General Comments 0
You need to be logged in to leave comments. Login now