diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-28 11:12:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-28 11:12:40 +0000 |
commit | 241f79ac06b2c66e2a4fb164c970263f491b22d6 (patch) | |
tree | fff931e9045372542253a799559aa602fa24a1c5 /test/unit/attachment_test.rb | |
parent | 82310d3162ed4353dd37d16890eb691c38cd32d9 (diff) | |
download | redmine-241f79ac06b2c66e2a4fb164c970263f491b22d6.tar.gz redmine-241f79ac06b2c66e2a4fb164c970263f491b22d6.zip |
Fixed: attachments with the same name at the same time overwrite (#3691).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3511 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/attachment_test.rb')
-rw-r--r-- | test/unit/attachment_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/unit/attachment_test.rb b/test/unit/attachment_test.rb index 8c25adb41..7c6a9b4b1 100644 --- a/test/unit/attachment_test.rb +++ b/test/unit/attachment_test.rb @@ -46,6 +46,16 @@ class AttachmentTest < ActiveSupport::TestCase assert_equal 'text/plain', a.content_type end + def test_identical_attachments_at_the_same_time_should_not_overwrite + a1 = Attachment.create!(:container => Issue.find(1), + :file => uploaded_test_file("testfile.txt", ""), + :author => User.find(1)) + a2 = Attachment.create!(:container => Issue.find(1), + :file => uploaded_test_file("testfile.txt", ""), + :author => User.find(1)) + assert a1.disk_filename != a2.disk_filename + end + def test_diskfilename assert Attachment.disk_filename("test_file.txt") =~ /^\d{12}_test_file.txt$/ assert_equal 'test_file.txt', Attachment.disk_filename("test_file.txt")[13..-1] |