Commit a5bb17ff authored by Micaël Bergeron's avatar Micaël Bergeron

porting changes from upstream

parent c614089d
...@@ -35,12 +35,12 @@ class GitlabUploader < CarrierWave::Uploader::Base ...@@ -35,12 +35,12 @@ class GitlabUploader < CarrierWave::Uploader::Base
# Reduce disk IO # Reduce disk IO
def move_to_cache def move_to_cache
super.nil? ? true : super file_storage?
end end
# Reduce disk IO # Reduce disk IO
def move_to_store def move_to_store
super.nil? ? true : super file_storage?
end end
def exists? def exists?
......
...@@ -18,7 +18,7 @@ FactoryBot.define do ...@@ -18,7 +18,7 @@ FactoryBot.define do
end end
trait :with_avatar do trait :with_avatar do
avatar { File.open(Rails.root.join('spec/fixtures/dk.png')) } avatar { fixture_file_upload('spec/fixtures/dk.png') }
end end
trait :access_requestable do trait :access_requestable do
......
...@@ -90,7 +90,7 @@ FactoryBot.define do ...@@ -90,7 +90,7 @@ FactoryBot.define do
end end
trait :with_avatar do trait :with_avatar do
avatar { File.open(Rails.root.join('spec/fixtures/dk.png')) } avatar { fixture_file_upload('spec/fixtures/dk.png') }
end end
trait :broken_storage do trait :broken_storage do
......
...@@ -38,7 +38,7 @@ FactoryBot.define do ...@@ -38,7 +38,7 @@ FactoryBot.define do
end end
trait :with_avatar do trait :with_avatar do
avatar { File.open(Rails.root.join('spec/fixtures/dk.png')) } avatar { fixture_file_upload('spec/fixtures/dk.png') }
end end
trait :two_factor_via_otp do trait :two_factor_via_otp do
......
...@@ -11,16 +11,4 @@ describe AttachmentUploader do ...@@ -11,16 +11,4 @@ describe AttachmentUploader do
store_dir: %r[uploads/-/system/note/attachment/], store_dir: %r[uploads/-/system/note/attachment/],
upload_path: %r[uploads/-/system/note/attachment/], upload_path: %r[uploads/-/system/note/attachment/],
absolute_path: %r[#{CarrierWave.root}/uploads/-/system/note/attachment/] absolute_path: %r[#{CarrierWave.root}/uploads/-/system/note/attachment/]
describe '#move_to_cache' do
it 'is true' do
expect(uploader.move_to_cache).to eq(true)
end
end
describe '#move_to_store' do
it 'is true' do
expect(uploader.move_to_store).to eq(true)
end
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment