aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/controllers/previews_controller_test.rb
blob: c3151a710edf2279d9f218f37bc34cb3fbdfa852 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

require "test_helper"
require "database/setup"

class ActiveStorage::PreviewsControllerTest < ActionDispatch::IntegrationTest
  setup do
    @blob = create_file_blob filename: "report.pdf", content_type: "application/pdf"
  end

  test "showing preview inline" do
    get rails_blob_preview_url(
      filename: @blob.filename,
      signed_blob_id: @blob.signed_id,
      variation_key: ActiveStorage::Variation.encode(resize: "100x100"))

    assert @blob.preview_image.attached?
    assert_redirected_to(/report\.png\?.*disposition=inline/)

    image = read_image(@blob.preview_image.variant(resize: "100x100"))
    assert_equal 77, image.width
    assert_equal 100, image.height
  end
end