aboutsummaryrefslogblamecommitdiffstats
path: root/test/service/disk_service_test.rb
blob: 565acbf51696c2402380a443ed0abc890fecbd7c (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                       
                                                                                                  

                                                    

                          
                                                                                    

                                                                                                        
   
require "tmpdir"
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")    
  end
end