1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006-2022 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../test_helper', __FILE__)
class IssuesTest < Redmine::IntegrationTest
fixtures :projects,
:users, :email_addresses,
:roles,
:members,
:member_roles,
:trackers,
:projects_trackers,
:enabled_modules,
:issue_statuses,
:issues,
:enumerations,
:custom_fields,
:custom_values,
:custom_fields_trackers, :custom_fields_projects,
:attachments,
:issue_categories
# create an issue
def test_add_issue
log_user('jsmith', 'jsmith')
get '/projects/ecookbook/issues/new'
assert_response :success
issue = new_record(Issue) do
post(
'/projects/ecookbook/issues',
:params => {
:issue => {
:tracker_id => "1",
:start_date => "2006-12-26",
:priority_id => "4",
:subject => "new test issue",
:category_id => "",
:description => "new issue",
:done_ratio => "0",
:due_date => "",
:assigned_to_id => "",
:custom_field_values => {'2' => 'Value for field 2'}
}
}
)
end
# check redirection
assert_redirected_to :controller => 'issues', :action => 'show', :id => issue
follow_redirect!
# check issue attributes
assert_equal 'jsmith', issue.author.login
assert_equal 1, issue.project.id
assert_equal 1, issue.status.id
end
def test_create_issue_by_anonymous_without_permission_should_fail
Role.anonymous.remove_permission! :add_issues
assert_no_difference 'Issue.count' do
post(
'/projects/1/issues',
:params => {
:issue => {
:tracker_id => "1",
:subject => "new test issue"
}
}
)
end
assert_response 302
end
def test_create_issue_by_anonymous_with_custom_permission_should_succeed
Role.anonymous.remove_permission! :add_issues
Member.create!(:project_id => 1, :principal => Group.anonymous, :role_ids => [3])
issue = new_record(Issue) do
post(
'/projects/1/issues',
:params => {
:issue => {
:tracker_id => "1",
:subject => "new test issue"
}
}
)
assert_response 302
end
assert_equal User.anonymous, issue.author
end
# add then remove 2 attachments to an issue
def test_issue_attachments
log_user('jsmith', 'jsmith')
set_tmp_attachments_directory
attachment = new_record(Attachment) do
put(
'/issues/1',
:params => {
:issue => {:notes => 'Some notes'},
:attachments => {
'1' => {
'file' => uploaded_test_file('testfile.txt', 'text/plain'),
'description' => 'This is an attachment'
}
}
}
)
assert_redirected_to "/issues/1"
end
assert_equal Issue.find(1), attachment.container
assert_equal 'testfile.txt', attachment.filename
assert_equal 'This is an attachment', attachment.description
# verify the size of the attachment stored in db
assert_equal 59, attachment.filesize
# verify that the attachment was written to disk
assert File.exist?(attachment.diskfile)
# remove the attachments
Issue.find(1).attachments.each(&:destroy)
assert_equal 0, Issue.find(1).attachments.length
end
def test_next_and_previous_links_should_be_displayed_after_query_grouped_and_sorted_by_version
with_settings :default_language => 'en' do
get '/projects/ecookbook/issues?set_filter=1&group_by=fixed_version&sort=priority:desc,fixed_version,id'
assert_response :success
assert_select 'td.id', :text => '5'
get '/issues/5'
assert_response :success
assert_select '.next-prev-links .position', :text => '5 of 6'
end
end
def test_next_and_previous_links_should_be_displayed_after_filter
with_settings :default_language => 'en' do
get '/projects/ecookbook/issues?set_filter=1&tracker_id=1'
assert_response :success
assert_select 'td.id', :text => '5'
get '/issues/5'
assert_response :success
assert_select '.next-prev-links .position', :text => '3 of 5'
assert_select '.next-prev-links .position a[href^=?]', '/projects/ecookbook/issues?'
end
end
def test_next_and_previous_links_should_be_displayed_after_saved_query
query =
IssueQuery.create!(
:name => 'Calendar Query',
:visibility => IssueQuery::VISIBILITY_PUBLIC,
:filters => {'tracker_id' => {:operator => '=', :values => ['1']}}
)
with_settings :default_language => 'en' do
get "/projects/ecookbook/issues?set_filter=1&query_id=#{query.id}"
assert_response :success
assert_select 'td.id', :text => '5'
get '/issues/5'
assert_response :success
assert_select '.next-prev-links .position', :text => '6 of 8'
end
end
def test_other_formats_links_on_index
get '/projects/ecookbook/issues'
%w(Atom PDF CSV).each do |format|
assert_select 'a[rel=nofollow][href=?]', "/projects/ecookbook/issues.#{format.downcase}", :text => format
end
end
def test_other_formats_links_on_index_without_project_id_in_url
get('/issues', :params => {:project_id => 'ecookbook'})
%w(Atom PDF CSV).each do |format|
assert_select 'a[rel=nofollow][href=?]', "/issues.#{format.downcase}?project_id=ecookbook", :text => format
end
end
def test_pagination_links_on_index
with_settings :per_page_options => '2' do
get '/projects/ecookbook/issues'
assert_select 'a[href=?]', '/projects/ecookbook/issues?page=2', :text => '2'
end
end
def test_pagination_links_should_preserve_query_parameters
with_settings :per_page_options => '2' do
get '/projects/ecookbook/issues?foo=bar'
assert_select 'a[href=?]', '/projects/ecookbook/issues?foo=bar&page=2', :text => '2'
end
end
def test_pagination_links_should_not_use_params_as_url_options
with_settings :per_page_options => '2' do
get '/projects/ecookbook/issues?host=foo'
assert_select 'a[href=?]', '/projects/ecookbook/issues?host=foo&page=2', :text => '2'
end
end
def test_sort_links_on_index
get '/projects/ecookbook/issues'
assert_select 'a[href=?]', '/projects/ecookbook/issues?sort=subject%2Cid%3Adesc', :text => 'Subject'
end
def test_sort_links_should_preserve_query_parameters
get '/projects/ecookbook/issues?foo=bar'
assert_select 'a[href=?]', '/projects/ecookbook/issues?foo=bar&sort=subject%2Cid%3Adesc', :text => 'Subject'
end
def test_sort_links_should_not_use_params_as_url_options
get '/projects/ecookbook/issues?host=foo'
assert_select 'a[href=?]', '/projects/ecookbook/issues?host=foo&sort=subject%2Cid%3Adesc', :text => 'Subject'
end
def test_issue_with_user_custom_field
@field = IssueCustomField.create!(:name => 'Tester', :field_format => 'user', :is_for_all => true, :trackers => Tracker.all)
Role.anonymous.add_permission! :add_issues, :edit_issues
users = Project.find(1).users.sort
tester = users.first
# Issue form
get '/projects/ecookbook/issues/new'
assert_response :success
assert_select 'select[name=?]', "issue[custom_field_values][#{@field.id}]" do
assert_select 'option', users.size + 1 # +1 for blank value
assert_select 'option[value=?]', tester.id.to_s, :text => tester.name
end
# Create issue
issue = new_record(Issue) do
post(
'/projects/ecookbook/issues',
:params => {
:issue => {
:tracker_id => '1',
:priority_id => '4',
:subject => 'Issue with user custom field',
:custom_field_values => {@field.id.to_s => users.first.id.to_s}
}
}
)
assert_response 302
end
# Issue view
follow_redirect!
assert_select ".cf_#{@field.id}" do
assert_select '.label', :text => 'Tester:'
assert_select '.value', :text => tester.name
end
assert_select 'select[name=?]', "issue[custom_field_values][#{@field.id}]" do
assert_select 'option', users.size + 1 # +1 for blank value
assert_select 'option[value=?][selected=selected]', tester.id.to_s, :text => tester.name
end
new_tester = users[1]
with_settings :default_language => 'en' do
# Update issue
assert_difference 'Journal.count' do
put(
"/issues/#{issue.id}",
:params => {
:issue => {
:notes => 'Updating custom field',
:custom_field_values => {@field.id.to_s => new_tester.id.to_s}
}
}
)
assert_redirected_to "/issues/#{issue.id}"
end
# Issue view
follow_redirect!
assert_select 'ul.details li', :text => "Tester changed from #{tester} to #{new_tester}"
end
end
def test_update_using_invalid_http_verbs
log_user('jsmith', 'jsmith')
subject = 'Updated by an invalid http verb'
get '/issues/update/1', :params => {:issue => {:subject => subject}}
assert_response 404
assert_not_equal subject, Issue.find(1).subject
post '/issues/1', :params => {:issue => {:subject => subject}}
assert_response 404
assert_not_equal subject, Issue.find(1).subject
end
def test_get_watch_should_be_invalid
log_user('jsmith', 'jsmith')
assert_no_difference 'Watcher.count' do
get '/watchers/watch?object_type=issue&object_id=1'
assert_response 404
end
end
def test_invalid_operators_should_render_404
get '/projects/ecookbook/issues', :params => {
'set_filter' => '1',
'f' => ['status_id', 'cf_9'],
'op' => {'status_id' => 'o', 'cf_9' => '=6546546546'},
'v' => {'cf_9' => ['2021-05-25']}
}
assert_response 404
end
end
|