2017-09-28 16:43:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-22 13:16:59 -04:00
|
|
|
require "test_helper"
|
|
|
|
require "database/setup"
|
|
|
|
|
2017-09-28 16:43:37 -04:00
|
|
|
require "active_storage/previewer/pdf_previewer"
|
|
|
|
|
|
|
|
class ActiveStorage::Previewer::PDFPreviewerTest < ActiveSupport::TestCase
|
|
|
|
setup do
|
|
|
|
@blob = create_file_blob(filename: "report.pdf", content_type: "application/pdf")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "previewing a PDF document" do
|
|
|
|
ActiveStorage::Previewer::PDFPreviewer.new(@blob).preview do |attachable|
|
|
|
|
assert_equal "image/png", attachable[:content_type]
|
|
|
|
assert_equal "report.png", attachable[:filename]
|
|
|
|
|
|
|
|
image = MiniMagick::Image.read(attachable[:io])
|
|
|
|
assert_equal 612, image.width
|
|
|
|
assert_equal 792, image.height
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|