aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/test/service/disk_service_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activestorage/test/service/disk_service_test.rb')
-rw-r--r--activestorage/test/service/disk_service_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activestorage/test/service/disk_service_test.rb b/activestorage/test/service/disk_service_test.rb
new file mode 100644
index 0000000000..a625521601
--- /dev/null
+++ b/activestorage/test/service/disk_service_test.rb
@@ -0,0 +1,12 @@
+require "service/shared_service_tests"
+
+class ActiveStorage::Service::DiskServiceTest < ActiveSupport::TestCase
+ SERVICE = ActiveStorage::Service::DiskService.new(root: File.join(Dir.tmpdir, "active_storage"))
+
+ include ActiveStorage::Service::SharedServiceTests
+
+ test "url generation" do
+ 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")
+ end
+end