@@ -1,200 +1,200 | |||
|
1 | 1 | # Redmine - project management software |
|
2 | 2 | # Copyright (C) 2006-2011 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 IssuesTest < ActionController::IntegrationTest |
|
21 | 21 | fixtures :projects, |
|
22 | 22 | :users, |
|
23 | 23 | :roles, |
|
24 | 24 | :members, |
|
25 | 25 | :trackers, |
|
26 | 26 | :projects_trackers, |
|
27 | 27 | :enabled_modules, |
|
28 | 28 | :issue_statuses, |
|
29 | 29 | :issues, |
|
30 | 30 | :enumerations, |
|
31 | 31 | :custom_fields, |
|
32 | 32 | :custom_values, |
|
33 | 33 | :custom_fields_trackers |
|
34 | 34 | |
|
35 | 35 | # create an issue |
|
36 | 36 | def test_add_issue |
|
37 | 37 | log_user('jsmith', 'jsmith') |
|
38 | 38 | get 'projects/1/issues/new', :tracker_id => '1' |
|
39 | 39 | assert_response :success |
|
40 | 40 | assert_template 'issues/new' |
|
41 | 41 | |
|
42 | 42 | post 'projects/1/issues', :tracker_id => "1", |
|
43 | 43 | :issue => { :start_date => "2006-12-26", |
|
44 | 44 | :priority_id => "4", |
|
45 | 45 | :subject => "new test issue", |
|
46 | 46 | :category_id => "", |
|
47 | 47 | :description => "new issue", |
|
48 | 48 | :done_ratio => "0", |
|
49 | 49 | :due_date => "", |
|
50 | 50 | :assigned_to_id => "" }, |
|
51 | 51 | :custom_fields => {'2' => 'Value for field 2'} |
|
52 | 52 | # find created issue |
|
53 | 53 | issue = Issue.find_by_subject("new test issue") |
|
54 | 54 | assert_kind_of Issue, issue |
|
55 | 55 | |
|
56 | 56 | # check redirection |
|
57 | 57 | assert_redirected_to :controller => 'issues', :action => 'show', :id => issue |
|
58 | 58 | follow_redirect! |
|
59 | 59 | assert_equal issue, assigns(:issue) |
|
60 | 60 | |
|
61 | 61 | # check issue attributes |
|
62 | 62 | assert_equal 'jsmith', issue.author.login |
|
63 | 63 | assert_equal 1, issue.project.id |
|
64 | 64 | assert_equal 1, issue.status.id |
|
65 | 65 | end |
|
66 | 66 | |
|
67 | 67 | # add then remove 2 attachments to an issue |
|
68 |
def test_issue_attach |
|
|
68 | def test_issue_attachments | |
|
69 | 69 | log_user('jsmith', 'jsmith') |
|
70 | 70 | set_tmp_attachments_directory |
|
71 | 71 | |
|
72 | 72 | put 'issues/1', |
|
73 | 73 | :notes => 'Some notes', |
|
74 | 74 | :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), 'description' => 'This is an attachment'}} |
|
75 | 75 | assert_redirected_to "/issues/1" |
|
76 | 76 | |
|
77 | 77 | # make sure attachment was saved |
|
78 | 78 | attachment = Issue.find(1).attachments.find_by_filename("testfile.txt") |
|
79 | 79 | assert_kind_of Attachment, attachment |
|
80 | 80 | assert_equal Issue.find(1), attachment.container |
|
81 | 81 | assert_equal 'This is an attachment', attachment.description |
|
82 | 82 | # verify the size of the attachment stored in db |
|
83 | 83 | #assert_equal file_data_1.length, attachment.filesize |
|
84 | 84 | # verify that the attachment was written to disk |
|
85 | 85 | assert File.exist?(attachment.diskfile) |
|
86 | 86 | |
|
87 | 87 | # remove the attachments |
|
88 | 88 | Issue.find(1).attachments.each(&:destroy) |
|
89 | 89 | assert_equal 0, Issue.find(1).attachments.length |
|
90 | 90 | end |
|
91 | 91 | |
|
92 | 92 | def test_other_formats_links_on_get_index |
|
93 | 93 | get '/projects/ecookbook/issues' |
|
94 | 94 | |
|
95 | 95 | %w(Atom PDF CSV).each do |format| |
|
96 | 96 | assert_tag :a, :content => format, |
|
97 | 97 | :attributes => { :href => "/projects/ecookbook/issues.#{format.downcase}", |
|
98 | 98 | :rel => 'nofollow' } |
|
99 | 99 | end |
|
100 | 100 | end |
|
101 | 101 | |
|
102 | 102 | def test_other_formats_links_on_post_index_without_project_id_in_url |
|
103 | 103 | post '/issues', :project_id => 'ecookbook' |
|
104 | 104 | |
|
105 | 105 | %w(Atom PDF CSV).each do |format| |
|
106 | 106 | assert_tag :a, :content => format, |
|
107 | 107 | :attributes => { :href => "/projects/ecookbook/issues.#{format.downcase}", |
|
108 | 108 | :rel => 'nofollow' } |
|
109 | 109 | end |
|
110 | 110 | end |
|
111 | 111 | |
|
112 | 112 | def test_pagination_links_on_get_index |
|
113 | 113 | Setting.per_page_options = '2' |
|
114 | 114 | get '/projects/ecookbook/issues' |
|
115 | 115 | |
|
116 | 116 | assert_tag :a, :content => '2', |
|
117 | 117 | :attributes => { :href => '/projects/ecookbook/issues?page=2' } |
|
118 | 118 | |
|
119 | 119 | end |
|
120 | 120 | |
|
121 | 121 | def test_pagination_links_on_post_index_without_project_id_in_url |
|
122 | 122 | Setting.per_page_options = '2' |
|
123 | 123 | post '/issues', :project_id => 'ecookbook' |
|
124 | 124 | |
|
125 | 125 | assert_tag :a, :content => '2', |
|
126 | 126 | :attributes => { :href => '/projects/ecookbook/issues?page=2' } |
|
127 | 127 | |
|
128 | 128 | end |
|
129 | 129 | |
|
130 | 130 | def test_issue_with_user_custom_field |
|
131 | 131 | @field = IssueCustomField.create!(:name => 'Tester', :field_format => 'user', :is_for_all => true, :trackers => Tracker.all) |
|
132 | 132 | Role.anonymous.add_permission! :add_issues, :edit_issues |
|
133 | 133 | users = Project.find(1).users |
|
134 | 134 | tester = users.first |
|
135 | 135 | |
|
136 | 136 | # Issue form |
|
137 | 137 | get '/projects/ecookbook/issues/new' |
|
138 | 138 | assert_response :success |
|
139 | 139 | assert_tag :select, |
|
140 | 140 | :attributes => {:name => "issue[custom_field_values][#{@field.id}]"}, |
|
141 | 141 | :children => {:count => (users.size + 1)}, # +1 for blank value |
|
142 | 142 | :child => { |
|
143 | 143 | :tag => 'option', |
|
144 | 144 | :attributes => {:value => tester.id.to_s}, |
|
145 | 145 | :content => tester.name |
|
146 | 146 | } |
|
147 | 147 | |
|
148 | 148 | # Create issue |
|
149 | 149 | assert_difference 'Issue.count' do |
|
150 | 150 | post '/projects/ecookbook/issues', |
|
151 | 151 | :issue => { |
|
152 | 152 | :tracker_id => '1', |
|
153 | 153 | :priority_id => '4', |
|
154 | 154 | :subject => 'Issue with user custom field', |
|
155 | 155 | :custom_field_values => {@field.id.to_s => users.first.id.to_s} |
|
156 | 156 | } |
|
157 | 157 | end |
|
158 | 158 | issue = Issue.first(:order => 'id DESC') |
|
159 | 159 | assert_response 302 |
|
160 | 160 | |
|
161 | 161 | # Issue view |
|
162 | 162 | follow_redirect! |
|
163 | 163 | assert_tag :th, |
|
164 | 164 | :content => /Tester/, |
|
165 | 165 | :sibling => { |
|
166 | 166 | :tag => 'td', |
|
167 | 167 | :content => tester.name |
|
168 | 168 | } |
|
169 | 169 | assert_tag :select, |
|
170 | 170 | :attributes => {:name => "issue[custom_field_values][#{@field.id}]"}, |
|
171 | 171 | :children => {:count => (users.size + 1)}, # +1 for blank value |
|
172 | 172 | :child => { |
|
173 | 173 | :tag => 'option', |
|
174 | 174 | :attributes => {:value => tester.id.to_s, :selected => 'selected'}, |
|
175 | 175 | :content => tester.name |
|
176 | 176 | } |
|
177 | 177 | |
|
178 | 178 | # Update issue |
|
179 | 179 | new_tester = users[1] |
|
180 | 180 | assert_difference 'Journal.count' do |
|
181 | 181 | put "/issues/#{issue.id}", |
|
182 | 182 | :notes => 'Updating custom field', |
|
183 | 183 | :issue => { |
|
184 | 184 | :custom_field_values => {@field.id.to_s => new_tester.id.to_s} |
|
185 | 185 | } |
|
186 | 186 | end |
|
187 | 187 | assert_response 302 |
|
188 | 188 | |
|
189 | 189 | # Issue view |
|
190 | 190 | follow_redirect! |
|
191 | 191 | assert_tag :content => 'Tester', |
|
192 | 192 | :ancestor => {:tag => 'ul', :attributes => {:class => /details/}}, |
|
193 | 193 | :sibling => { |
|
194 | 194 | :content => tester.name, |
|
195 | 195 | :sibling => { |
|
196 | 196 | :content => new_tester.name |
|
197 | 197 | } |
|
198 | 198 | } |
|
199 | 199 | end |
|
200 | 200 | end |
General Comments 0
You need to be logged in to leave comments.
Login now