Commit 7eec87bf by Tieg Zaharia Committed by Tute Costa

Original file could be unlinked in post_process_style

* Regression fix
* Add specs for intermediate_files var in Paperclip::Attachment

[fixes #1908]
parent bff82b69
...@@ -521,7 +521,7 @@ module Paperclip ...@@ -521,7 +521,7 @@ module Paperclip
@queued_for_write[name] = style.processors.inject(@queued_for_write[:original]) do |file, processor| @queued_for_write[name] = style.processors.inject(@queued_for_write[:original]) do |file, processor|
file = Paperclip.processor(processor).make(file, style.processor_options, self) file = Paperclip.processor(processor).make(file, style.processor_options, self)
intermediate_files << file intermediate_files << file unless file == @queued_for_write[:original]
file file
end end
......
...@@ -700,9 +700,6 @@ describe Paperclip::Attachment do ...@@ -700,9 +700,6 @@ describe Paperclip::Attachment do
context "when assigned" do context "when assigned" do
it "calls #make on all specified processors" do it "calls #make on all specified processors" do
Paperclip::Thumbnail.stubs(:make).with(any_parameters).returns(@file)
Paperclip::Test.stubs(:make).with(any_parameters).returns(@file)
@dummy.avatar = @file @dummy.avatar = @file
expect(Paperclip::Thumbnail).to have_received(:make) expect(Paperclip::Thumbnail).to have_received(:make)
...@@ -717,7 +714,6 @@ describe Paperclip::Attachment do ...@@ -717,7 +714,6 @@ describe Paperclip::Attachment do
convert_options: "", convert_options: "",
source_file_options: "" source_file_options: ""
}) })
Paperclip::Thumbnail.stubs(:make).returns(@file)
@dummy.avatar = @file @dummy.avatar = @file
...@@ -725,12 +721,36 @@ describe Paperclip::Attachment do ...@@ -725,12 +721,36 @@ describe Paperclip::Attachment do
end end
it "calls #make with attachment passed as third argument" do it "calls #make with attachment passed as third argument" do
Paperclip::Test.expects(:make).returns(@file)
@dummy.avatar = @file @dummy.avatar = @file
expect(Paperclip::Test).to have_received(:make).with(anything, anything, @dummy.avatar) expect(Paperclip::Test).to have_received(:make).with(anything, anything, @dummy.avatar)
end end
it "calls #make and unlinks intermediary files afterward" do
@dummy.avatar.expects(:unlink_files).with([@file, @file])
@dummy.avatar = @file
end
end
end
context "An attachment with a processor that returns original file" do
before do
class Paperclip::Test < Paperclip::Processor
def make; @file; end
end
rebuild_model processors: [:test], styles: { once: "100x100" }
@file = StringIO.new("...")
@file.stubs(:close)
@dummy = Dummy.new
end
context "when assigned" do
it "#calls #make and doesn't unlink the original file" do
@dummy.avatar.expects(:unlink_files).with([])
@dummy.avatar = @file
end
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