aboutsummaryrefslogblamecommitdiffstats
path: root/activestorage/test/previewer/mupdf_previewer_test.rb
blob: 6c2db6fcbf4db943f23f19e26431fb6172d3df66 (plain) (tree)
1
2
3
4
5
6
7
8

                             


                        
                                                  
 
                                                                            




                                                                                     
                                                                               








                                                         
# frozen_string_literal: true

require "test_helper"
require "database/setup"

require "active_storage/previewer/mupdf_previewer"

class ActiveStorage::Previewer::MuPDFPreviewerTest < ActiveSupport::TestCase
  setup do
    @blob = create_file_blob(filename: "report.pdf", content_type: "application/pdf")
  end

  test "previewing a PDF document" do
    ActiveStorage::Previewer::MuPDFPreviewer.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