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


                                                                        
                                                                            


                                                      


















                                                                                                                                             
                                   
                    









                                                                                                                      
require "service/shared_service_tests"
require "httparty"

if SERVICE_CONFIGURATIONS[:gcs]
  class ActiveStorage::Service::GCSServiceTest < ActiveSupport::TestCase
    SERVICE = ActiveStorage::Service.configure(:gcs, SERVICE_CONFIGURATIONS)

    include ActiveStorage::Service::SharedServiceTests

    test "direct upload" do
      begin
        key = SecureRandom.base58(24)
        data = "Something else entirely!"
        direct_upload_url = @service.url_for_direct_upload(key, expires_in: 5.minutes, content_type: "text/plain", content_length: data.size)

        HTTParty.put(
          direct_upload_url,
          body: data,
          headers: { "Content-Type" => "text/plain" },
          debug_output: STDOUT
        )

        assert_equal data, @service.download(key)
      ensure
        @service.delete key
      end
    end

    test "signed URL generation" do
      freeze_time do
        url = SERVICE.bucket.signed_url(FIXTURE_KEY, expires: 120) +
          "&response-content-disposition=inline%3B+filename%3D%22test.txt%22"

        assert_equal url, @service.url(FIXTURE_KEY, expires_in: 2.minutes, disposition: :inline, filename: "test.txt")
      end
    end
  end
else
  puts "Skipping GCS Service tests because no GCS configuration was supplied"
end