mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
46db463d06
This fixes following warnings: ``` test/models/variant_test.rb:11: warning: ambiguous first argument; put parentheses or a space even after `/' operator lib/active_storage/attached/macros.rb:63: warning: instance variable @active_storage_attached_highlights not initialized lib/active_storage/attached/macros.rb:25: warning: instance variable @active_storage_attached_avatar not initialized ```
122 lines
5.1 KiB
Ruby
122 lines
5.1 KiB
Ruby
require "test_helper"
|
|
require "database/setup"
|
|
|
|
if SERVICE_CONFIGURATIONS[:s3] && SERVICE_CONFIGURATIONS[:s3][:access_key_id].present?
|
|
class ActiveStorage::S3DirectUploadsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
@old_service = ActiveStorage::Blob.service
|
|
ActiveStorage::Blob.service = ActiveStorage::Service.configure(:s3, SERVICE_CONFIGURATIONS)
|
|
end
|
|
|
|
teardown do
|
|
ActiveStorage::Blob.service = @old_service
|
|
end
|
|
|
|
test "creating new direct upload" do
|
|
checksum = Digest::MD5.base64digest("Hello")
|
|
|
|
post rails_direct_uploads_url, params: { blob: {
|
|
filename: "hello.txt", byte_size: 6, checksum: checksum, content_type: "text/plain" } }
|
|
|
|
response.parsed_body.tap do |details|
|
|
assert_equal ActiveStorage::Blob.find(details["id"]), ActiveStorage::Blob.find_signed(details["signed_id"])
|
|
assert_equal "hello.txt", details["filename"]
|
|
assert_equal 6, details["byte_size"]
|
|
assert_equal checksum, details["checksum"]
|
|
assert_equal "text/plain", details["content_type"]
|
|
assert_match SERVICE_CONFIGURATIONS[:s3][:bucket], details["direct_upload"]["url"]
|
|
assert_match(/s3\.(\S+)?amazonaws\.com/, details["direct_upload"]["url"])
|
|
assert_equal({ "Content-Type" => "text/plain", "Content-MD5" => checksum }, details["direct_upload"]["headers"])
|
|
end
|
|
end
|
|
end
|
|
else
|
|
puts "Skipping S3 Direct Upload tests because no S3 configuration was supplied"
|
|
end
|
|
|
|
if SERVICE_CONFIGURATIONS[:gcs]
|
|
class ActiveStorage::GCSDirectUploadsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
@config = SERVICE_CONFIGURATIONS[:gcs]
|
|
|
|
@old_service = ActiveStorage::Blob.service
|
|
ActiveStorage::Blob.service = ActiveStorage::Service.configure(:gcs, SERVICE_CONFIGURATIONS)
|
|
end
|
|
|
|
teardown do
|
|
ActiveStorage::Blob.service = @old_service
|
|
end
|
|
|
|
test "creating new direct upload" do
|
|
checksum = Digest::MD5.base64digest("Hello")
|
|
|
|
post rails_direct_uploads_url, params: { blob: {
|
|
filename: "hello.txt", byte_size: 6, checksum: checksum, content_type: "text/plain" } }
|
|
|
|
@response.parsed_body.tap do |details|
|
|
assert_equal ActiveStorage::Blob.find(details["id"]), ActiveStorage::Blob.find_signed(details["signed_id"])
|
|
assert_equal "hello.txt", details["filename"]
|
|
assert_equal 6, details["byte_size"]
|
|
assert_equal checksum, details["checksum"]
|
|
assert_equal "text/plain", details["content_type"]
|
|
assert_match %r{storage\.googleapis\.com/#{@config[:bucket]}}, details["direct_upload"]["url"]
|
|
assert_equal({ "Content-Type" => "text/plain", "Content-MD5" => checksum }, details["direct_upload"]["headers"])
|
|
end
|
|
end
|
|
end
|
|
else
|
|
puts "Skipping GCS Direct Upload tests because no GCS configuration was supplied"
|
|
end
|
|
|
|
if SERVICE_CONFIGURATIONS[:azure]
|
|
class ActiveStorage::AzureStorageDirectUploadsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
@config = SERVICE_CONFIGURATIONS[:azure]
|
|
|
|
@old_service = ActiveStorage::Blob.service
|
|
ActiveStorage::Blob.service = ActiveStorage::Service.configure(:azure, SERVICE_CONFIGURATIONS)
|
|
end
|
|
|
|
teardown do
|
|
ActiveStorage::Blob.service = @old_service
|
|
end
|
|
|
|
test "creating new direct upload" do
|
|
checksum = Digest::MD5.base64digest("Hello")
|
|
|
|
post rails_direct_uploads_url, params: { blob: {
|
|
filename: "hello.txt", byte_size: 6, checksum: checksum, content_type: "text/plain" } }
|
|
|
|
@response.parsed_body.tap do |details|
|
|
assert_equal ActiveStorage::Blob.find(details["id"]), ActiveStorage::Blob.find_signed(details["signed_id"])
|
|
assert_equal "hello.txt", details["filename"]
|
|
assert_equal 6, details["byte_size"]
|
|
assert_equal checksum, details["checksum"]
|
|
assert_equal "text/plain", details["content_type"]
|
|
assert_match %r{#{@config[:storage_account_name]}\.blob\.core\.windows\.net/#{@config[:container]}}, details["direct_upload"]["url"]
|
|
assert_equal({ "Content-Type" => "text/plain", "Content-MD5" => checksum, "x-ms-blob-type" => "BlockBlob" }, details["direct_upload"]["headers"])
|
|
end
|
|
end
|
|
end
|
|
else
|
|
puts "Skipping Azure Storage Direct Upload tests because no Azure Storage configuration was supplied"
|
|
end
|
|
|
|
class ActiveStorage::DiskDirectUploadsControllerTest < ActionDispatch::IntegrationTest
|
|
test "creating new direct upload" do
|
|
checksum = Digest::MD5.base64digest("Hello")
|
|
|
|
post rails_direct_uploads_url, params: { blob: {
|
|
filename: "hello.txt", byte_size: 6, checksum: checksum, content_type: "text/plain" } }
|
|
|
|
@response.parsed_body.tap do |details|
|
|
assert_equal ActiveStorage::Blob.find(details["id"]), ActiveStorage::Blob.find_signed(details["signed_id"])
|
|
assert_equal "hello.txt", details["filename"]
|
|
assert_equal 6, details["byte_size"]
|
|
assert_equal checksum, details["checksum"]
|
|
assert_equal "text/plain", details["content_type"]
|
|
assert_match(/rails\/active_storage\/disk/, details["direct_upload"]["url"])
|
|
assert_equal({ "Content-Type" => "text/plain" }, details["direct_upload"]["headers"])
|
|
end
|
|
end
|
|
end
|