discourse/spec/models/optimized_image_spec.rb

139 lines
3.2 KiB
Ruby
Raw Normal View History

2013-06-16 04:39:48 -04:00
require 'spec_helper'
describe OptimizedImage do
it { should belong_to :upload }
2013-11-05 13:04:47 -05:00
let(:upload) { build(:upload) }
before { upload.id = 42 }
describe ".create_for" do
2013-11-05 13:04:47 -05:00
context "when using an internal store" do
let(:store) { FakeInternalStore.new }
before { Discourse.stubs(:store).returns(store) }
context "when an error happened while generating the thumbnail" do
2013-11-05 13:04:47 -05:00
it "returns nil" do
OptimizedImage.expects(:resize).returns(false)
2013-11-05 13:04:47 -05:00
OptimizedImage.create_for(upload, 100, 200).should be_nil
end
end
context "when the thumbnail is properly generated" do
before do
OptimizedImage.expects(:resize).returns(true)
end
2013-11-05 13:04:47 -05:00
it "does not download a copy of the original image" do
store.expects(:download).never
OptimizedImage.create_for(upload, 100, 200)
end
2013-11-05 13:04:47 -05:00
it "closes and removes the tempfile" do
Tempfile.any_instance.expects(:close!)
OptimizedImage.create_for(upload, 100, 200)
end
it "works" do
oi = OptimizedImage.create_for(upload, 100, 200)
oi.sha1.should == "da39a3ee5e6b4b0d3255bfef95601890afd80709"
2014-04-14 16:55:57 -04:00
oi.extension.should == ".png"
2013-11-05 13:04:47 -05:00
oi.width.should == 100
oi.height.should == 200
2014-04-14 16:55:57 -04:00
oi.url.should == "/internally/stored/optimized/image.png"
2013-11-05 13:04:47 -05:00
end
end
end
describe "external store" do
2013-11-05 13:04:47 -05:00
let(:store) { FakeExternalStore.new }
before { Discourse.stubs(:store).returns(store) }
context "when an error happened while generatign the thumbnail" do
it "returns nil" do
OptimizedImage.expects(:resize).returns(false)
2013-11-05 13:04:47 -05:00
OptimizedImage.create_for(upload, 100, 200).should be_nil
end
end
2013-11-05 13:04:47 -05:00
context "when the thumbnail is properly generated" do
before do
OptimizedImage.expects(:resize).returns(true)
end
2013-11-05 13:04:47 -05:00
it "downloads a copy of the original image" do
Tempfile.any_instance.expects(:close!).twice
2014-04-14 16:55:57 -04:00
store.expects(:download).with(upload).returns(Tempfile.new(["discourse-external", ".png"]))
2013-11-05 13:04:47 -05:00
OptimizedImage.create_for(upload, 100, 200)
end
it "works" do
oi = OptimizedImage.create_for(upload, 100, 200)
oi.sha1.should == "da39a3ee5e6b4b0d3255bfef95601890afd80709"
2014-04-14 16:55:57 -04:00
oi.extension.should == ".png"
2013-11-05 13:04:47 -05:00
oi.width.should == 100
oi.height.should == 200
2014-04-14 16:55:57 -04:00
oi.url.should == "/externally/stored/optimized/image.png"
2013-11-05 13:04:47 -05:00
end
end
end
end
2013-06-16 04:39:48 -04:00
end
2013-11-05 13:04:47 -05:00
class FakeInternalStore
def internal?
true
end
def external?
!internal?
end
def path_for(upload)
upload.url
end
def store_optimized_image(file, optimized_image)
"/internally/stored/optimized/image#{optimized_image.extension}"
end
end
class FakeExternalStore
def external?
true
end
def internal?
!external?
end
def store_optimized_image(file, optimized_image)
"/externally/stored/optimized/image#{optimized_image.extension}"
end
def download(upload)
extension = File.extname(upload.original_filename)
Tempfile.new(["discourse-s3", extension])
end
end