docbrown/spec/uploaders/cover_image_uploader_spec.rb
Molly Struve b40af82b66
Flaky Spec Fix:Remove let_it_be Test Prof Helper (#9556)
* Flaky Spec Fix:Remove let_it_be Test Prof Helper

* Spec cleanup and fixes
2020-07-29 11:31:01 +02:00

63 lines
2 KiB
Ruby

require "rails_helper"
require "carrierwave/test/matchers"
require "exifr/jpeg"
describe CoverImageUploader, type: :uploader do
include CarrierWave::Test::Matchers
let(:image_jpg) { fixture_file_upload("files/800x600.jpg", "image/jpeg") }
let(:image_png) { fixture_file_upload("files/800x600.png", "image/png") }
let(:image_webp) { fixture_file_upload("files/800x600.webp", "image/webp") }
let(:image_with_gps) { fixture_file_upload("files/image_gps_data.jpg", "image/jpeg") }
let(:event) { create(:event) }
# we need a new uploader before each test, and since the uploader is not a model
# we can recreate it quickly in memory with `let!`
let!(:uploader) { described_class.new(event, :cover_image) }
before do
described_class.include CarrierWave::MiniMagick # needed for processing
described_class.enable_processing = true
end
after do
described_class.enable_processing = false
uploader.remove!
end
it "stores files in the correct directory" do
expect(uploader.store_dir).to eq("uploads/event/cover_image/#{event.id}")
end
describe "formats" do
it "permits a set of extensions" do
expect(uploader.extension_whitelist).to eq(%w[jpg jpeg jpe gif png ico bmp dng])
end
it "permits jpegs" do
uploader.store!(image_jpg)
expect(uploader).to be_format("jpeg")
end
it "permits pngs" do
uploader.store!(image_png)
expect(uploader).to be_format("png")
end
it "rejects unsupported formats like webp" do
expect { uploader.store!(image_webp) }.to raise_error(CarrierWave::IntegrityError)
end
end
describe "exif removal" do
it "removes EXIF and GPS data on upload" do
expect(EXIFR::JPEG.new(image_with_gps.path).exif?).to be(true)
expect(EXIFR::JPEG.new(image_with_gps.path).gps.present?).to be(true)
event.cover_image = image_with_gps
event.save!
expect(EXIFR::JPEG.new(event.cover_image.path).exif?).to be(false)
expect(EXIFR::JPEG.new(event.cover_image.path).gps.present?).to be(false)
end
end
end