1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activestorage/test/previewer/poppler_pdf_previewer_test.rb

24 lines
705 B
Ruby
Raw Normal View History

2017-09-28 16:43:37 -04:00
# frozen_string_literal: true
require "test_helper"
require "database/setup"
require "active_storage/previewer/poppler_pdf_previewer"
2017-09-28 16:43:37 -04:00
class ActiveStorage::Previewer::PopplerPDFPreviewerTest < ActiveSupport::TestCase
2017-09-28 16:43:37 -04:00
setup do
@blob = create_file_blob(filename: "report.pdf", content_type: "application/pdf")
end
test "previewing a PDF document" do
ActiveStorage::Previewer::PopplerPDFPreviewer.new(@blob).preview do |attachable|
2017-09-28 16:43:37 -04:00
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