2018-03-03 15:36:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "test_helper"
|
|
|
|
require "database/setup"
|
|
|
|
|
|
|
|
class ActiveStorage::RepresentationsControllerWithVariantsTest < ActionDispatch::IntegrationTest
|
|
|
|
setup do
|
|
|
|
@blob = create_file_blob filename: "racecar.jpg"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "showing variant inline" do
|
|
|
|
get rails_blob_representation_url(
|
|
|
|
filename: @blob.filename,
|
|
|
|
signed_blob_id: @blob.signed_id,
|
|
|
|
variation_key: ActiveStorage::Variation.encode(resize: "100x100"))
|
|
|
|
|
2019-12-06 14:26:00 -05:00
|
|
|
assert_redirected_to(/racecar\.jpg/)
|
|
|
|
follow_redirect!
|
|
|
|
assert_match(/^inline/, response.headers["Content-Disposition"])
|
2018-03-03 15:36:43 -05:00
|
|
|
|
|
|
|
image = read_image(@blob.variant(resize: "100x100"))
|
|
|
|
assert_equal 100, image.width
|
|
|
|
assert_equal 67, image.height
|
|
|
|
end
|
|
|
|
|
|
|
|
test "showing variant with invalid signed blob ID" do
|
|
|
|
get rails_blob_representation_url(
|
|
|
|
filename: @blob.filename,
|
|
|
|
signed_blob_id: "invalid",
|
|
|
|
variation_key: ActiveStorage::Variation.encode(resize: "100x100"))
|
|
|
|
|
|
|
|
assert_response :not_found
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ActiveStorage::RepresentationsControllerWithPreviewsTest < ActionDispatch::IntegrationTest
|
|
|
|
setup do
|
|
|
|
@blob = create_file_blob filename: "report.pdf", content_type: "application/pdf"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "showing preview inline" do
|
|
|
|
get rails_blob_representation_url(
|
|
|
|
filename: @blob.filename,
|
|
|
|
signed_blob_id: @blob.signed_id,
|
|
|
|
variation_key: ActiveStorage::Variation.encode(resize: "100x100"))
|
|
|
|
|
|
|
|
assert_predicate @blob.preview_image, :attached?
|
2019-12-06 14:26:00 -05:00
|
|
|
assert_redirected_to(/report\.png/)
|
|
|
|
follow_redirect!
|
|
|
|
assert_match(/^inline/, response.headers["Content-Disposition"])
|
2018-03-03 15:36:43 -05:00
|
|
|
|
|
|
|
image = read_image(@blob.preview_image.variant(resize: "100x100"))
|
|
|
|
assert_equal 77, image.width
|
|
|
|
assert_equal 100, image.height
|
|
|
|
end
|
|
|
|
|
|
|
|
test "showing preview with invalid signed blob ID" do
|
|
|
|
get rails_blob_representation_url(
|
|
|
|
filename: @blob.filename,
|
|
|
|
signed_blob_id: "invalid",
|
|
|
|
variation_key: ActiveStorage::Variation.encode(resize: "100x100"))
|
|
|
|
|
|
|
|
assert_response :not_found
|
|
|
|
end
|
|
|
|
end
|