mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
add test of upload filename with plus (#11568)
git-svn-id: http://svn.redmine.org/redmine/trunk@19786 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -130,6 +130,30 @@ class AttachmentsTest < Redmine::IntegrationTest
|
||||
assert_equal 'File content'.length, attachment.filesize
|
||||
end
|
||||
|
||||
def test_upload_filename_with_plus
|
||||
log_user('jsmith', 'jsmith')
|
||||
filename = 'a+b.txt'
|
||||
token = ajax_upload(filename, 'File content')
|
||||
assert_difference 'Issue.count' do
|
||||
post(
|
||||
'/projects/ecookbook/issues',
|
||||
:params => {
|
||||
:issue => {:tracker_id => 1, :subject => 'Issue with upload'},
|
||||
:attachments => {'p0' => {:filename => filename, :token => token}}
|
||||
}
|
||||
)
|
||||
assert_response 302
|
||||
end
|
||||
issue = Issue.order('id DESC').first
|
||||
assert_equal 'Issue with upload', issue.subject
|
||||
assert_equal 1, issue.attachments.count
|
||||
|
||||
attachment = issue.attachments.first
|
||||
assert_equal filename, attachment.filename
|
||||
assert_equal '', attachment.description
|
||||
assert_equal 'File content'.length, attachment.filesize
|
||||
end
|
||||
|
||||
def test_upload_as_js_and_destroy
|
||||
log_user('jsmith', 'jsmith')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user