Browse Source

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
tags/3.2.0
Jean-Philippe Lang 8 years ago
parent
commit
e3e0f5440d

+ 9
- 0
db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb View File

@@ -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

+ 11
- 0
test/unit/attachment_test.rb View File

@@ -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…
Cancel
Save