27 lines
688 B
Ruby
27 lines
688 B
Ruby
# frozen_string_literal: true
|
|
|
|
describe Jobs::UpdateAnimatedUploads do
|
|
let!(:upload) { Fabricate(:upload) }
|
|
let!(:gif_upload) { Fabricate(:upload, extension: "gif") }
|
|
|
|
before do
|
|
url = Discourse.store.path_for(gif_upload) || gif_upload.url
|
|
FastImage.expects(:animated?).with(url).returns(true).once
|
|
end
|
|
|
|
it "affects only GIF uploads" do
|
|
described_class.new.execute({})
|
|
|
|
expect(upload.reload.animated).to eq(nil)
|
|
expect(gif_upload.reload.animated).to eq(true)
|
|
end
|
|
|
|
it "works with uploads larger than current limits" do
|
|
SiteSetting.max_image_size_kb = 1
|
|
|
|
described_class.new.execute({})
|
|
|
|
expect(gif_upload.reload.animated).to eq(true)
|
|
end
|
|
end
|