mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-19 15:01:14 +00:00
Extend Filesize in the attachments table for files with size > 2GB (#10672).
git-svn-id: http://svn.redmine.org/redmine/trunk@14709 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
252fde10d6
commit
e3e0f5440d
@ -0,0 +1,9 @@
|
||||
class ChangeAttachmentsFilesizeLimitTo8 < ActiveRecord::Migration
|
||||
def self.up
|
||||
change_column :attachments, :filesize, :integer, :limit => 8, :default => 0, :null => false
|
||||
end
|
||||
|
||||
def self.down
|
||||
change_column :attachments, :filesize, :integer, :limit => 4, :default => 0, :null => false
|
||||
end
|
||||
end
|
||||
@ -111,6 +111,17 @@ class AttachmentTest < ActiveSupport::TestCase
|
||||
end
|
||||
end
|
||||
|
||||
def test_filesize_greater_than_2gb_should_be_supported
|
||||
with_settings :attachment_max_size => (50.gigabyte / 1024) do
|
||||
a = Attachment.create!(:container => Issue.find(1),
|
||||
:file => uploaded_test_file("testfile.txt", "text/plain"),
|
||||
:author => User.find(1))
|
||||
a.filesize = 20.gigabyte
|
||||
a.save!
|
||||
assert_equal 20.gigabyte, a.reload.filesize
|
||||
end
|
||||
end
|
||||
|
||||
def test_description_length_should_be_validated
|
||||
a = Attachment.new(:description => 'a' * 300)
|
||||
assert !a.save
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user