2017-08-12 08:32:15 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-06 06:22:44 -04:00
|
|
|
require "service/shared_service_tests"
|
|
|
|
|
|
|
|
class ActiveStorage::Service::DiskServiceTest < ActiveSupport::TestCase
|
2017-07-09 07:23:21 -04:00
|
|
|
SERVICE = ActiveStorage::Service::DiskService.new(root: File.join(Dir.tmpdir, "active_storage"))
|
2017-07-06 06:22:44 -04:00
|
|
|
|
|
|
|
include ActiveStorage::Service::SharedServiceTests
|
2017-07-09 11:04:37 -04:00
|
|
|
|
|
|
|
test "url generation" do
|
2017-08-04 23:21:21 -04:00
|
|
|
assert_match(/rails\/active_storage\/disk\/.*\/avatar\.png\?.+disposition=inline/,
|
|
|
|
@service.url(FIXTURE_KEY, expires_in: 5.minutes, disposition: :inline, filename: "avatar.png", content_type: "image/png"))
|
2017-07-09 11:04:37 -04:00
|
|
|
end
|
2017-07-06 06:22:44 -04:00
|
|
|
end
|