mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
66 lines
2.2 KiB
Ruby
66 lines
2.2 KiB
Ruby
require "test_helper"
|
|
require "database/setup"
|
|
|
|
require "action_controller"
|
|
require "action_controller/test_case"
|
|
|
|
require "active_storage/direct_uploads_controller"
|
|
|
|
if SERVICE_CONFIGURATIONS[:s3]
|
|
class ActiveStorage::S3DirectUploadsControllerTest < ActionController::TestCase
|
|
setup do
|
|
@blob = create_blob
|
|
@routes = Routes
|
|
@controller = ActiveStorage::DirectUploadsController.new
|
|
|
|
@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
|
|
post :create, params: { blob: {
|
|
filename: "hello.txt", byte_size: 6, checksum: Digest::MD5.base64digest("Hello"), content_type: "text/plain" } }
|
|
|
|
details = JSON.parse(@response.body)
|
|
|
|
assert_match /#{SERVICE_CONFIGURATIONS[:s3][:bucket]}\.s3.(\S+)?amazonaws\.com/, details["url"]
|
|
assert_equal "hello.txt", GlobalID::Locator.locate_signed(details["sgid"]).filename.to_s
|
|
end
|
|
end
|
|
else
|
|
puts "Skipping S3 Direct Upload tests because no S3 configuration was supplied"
|
|
end
|
|
|
|
if SERVICE_CONFIGURATIONS[:gcs]
|
|
class ActiveStorage::GCSDirectUploadsControllerTest < ActionController::TestCase
|
|
setup do
|
|
@blob = create_blob
|
|
@routes = Routes
|
|
@controller = ActiveStorage::DirectUploadsController.new
|
|
@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
|
|
post :create, params: { blob: {
|
|
filename: "hello.txt", byte_size: 6, checksum: Digest::MD5.base64digest("Hello"), content_type: "text/plain" } }
|
|
|
|
details = JSON.parse(@response.body)
|
|
|
|
assert_match %r{storage\.googleapis\.com/#{@config[:bucket]}}, details["url"]
|
|
assert_equal "hello.txt", GlobalID::Locator.locate_signed(details["sgid"]).filename.to_s
|
|
end
|
|
end
|
|
else
|
|
puts "Skipping GCS Direct Upload tests because no GCS configuration was supplied"
|
|
end
|