2017-08-12 08:32:15 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-31 11:09:12 -04:00
|
|
|
require "service/shared_service_tests"
|
|
|
|
require "uri"
|
|
|
|
|
|
|
|
if SERVICE_CONFIGURATIONS[:azure]
|
2017-08-04 18:57:02 -04:00
|
|
|
class ActiveStorage::Service::AzureStorageServiceTest < ActiveSupport::TestCase
|
2017-07-31 11:09:12 -04:00
|
|
|
SERVICE = ActiveStorage::Service.configure(:azure, SERVICE_CONFIGURATIONS)
|
|
|
|
|
|
|
|
include ActiveStorage::Service::SharedServiceTests
|
|
|
|
|
2017-08-08 10:35:42 -04:00
|
|
|
test "signed URL generation" do
|
2018-06-25 18:49:26 -04:00
|
|
|
url = @service.url(@key, expires_in: 5.minutes,
|
2017-09-28 16:43:37 -04:00
|
|
|
disposition: :inline, filename: ActiveStorage::Filename.new("avatar.png"), content_type: "image/png")
|
2017-08-08 10:35:42 -04:00
|
|
|
|
2017-09-29 16:48:23 -04:00
|
|
|
assert_match(/(\S+)&rscd=inline%3B\+filename%3D%22avatar\.png%22%3B\+filename\*%3DUTF-8%27%27avatar\.png&rsct=image%2Fpng/, url)
|
2017-08-08 10:35:42 -04:00
|
|
|
assert_match SERVICE_CONFIGURATIONS[:azure][:container], url
|
|
|
|
end
|
2018-08-03 22:41:19 -04:00
|
|
|
|
|
|
|
test "uploading a tempfile" do
|
2018-12-20 12:44:01 -05:00
|
|
|
key = SecureRandom.base58(24)
|
|
|
|
data = "Something else entirely!"
|
|
|
|
|
|
|
|
Tempfile.open do |file|
|
|
|
|
file.write(data)
|
|
|
|
file.rewind
|
|
|
|
@service.upload(key, file)
|
2018-08-03 22:41:19 -04:00
|
|
|
end
|
2018-12-20 12:44:01 -05:00
|
|
|
|
|
|
|
assert_equal data, @service.download(key)
|
|
|
|
ensure
|
|
|
|
@service.delete(key)
|
2018-08-03 22:41:19 -04:00
|
|
|
end
|
2017-07-31 11:09:12 -04:00
|
|
|
end
|
|
|
|
else
|
|
|
|
puts "Skipping Azure Storage Service tests because no Azure configuration was supplied"
|
|
|
|
end
|