s3_service_test.rb 1.5 KB
Newer Older
1
require "service/shared_service_tests"
D
David Heinemeier Hansson 已提交
2 3
require "httparty"
require "uri"
4 5 6

if SERVICE_CONFIGURATIONS[:s3]
  class ActiveStorage::Service::S3ServiceTest < ActiveSupport::TestCase
7
    SERVICE = ActiveStorage::Service.configure(:s3, SERVICE_CONFIGURATIONS)
8 9

    include ActiveStorage::Service::SharedServiceTests
10

D
David Heinemeier Hansson 已提交
11 12 13 14 15 16 17 18
    test "direct upload" do
      # FIXME: This test is failing because of a mismatched request signature, but it works in the browser.
      skip

      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)
19

D
David Heinemeier Hansson 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32
        url   = URI.parse(direct_upload_url).to_s.split("?").first
        query = CGI::parse(URI.parse(direct_upload_url).query).collect { |(k, v)| [ k, v.first ] }.to_h

        HTTParty.post(
          url,
          query: query,
          body: data,
          headers: {
            "Content-Type": "text/plain",
            "Origin": "http://localhost:3000"
          },
          debug_output: STDOUT
        )
33

D
David Heinemeier Hansson 已提交
34 35 36 37 38
        assert_equal data, @service.download(key)
      ensure
        @service.delete key
      end
    end
39

40
    test "signed URL generation" do
41 42
      assert_match /.+s3.+amazonaws.com.*response-content-disposition=inline.*avatar\.png/,
        @service.url(FIXTURE_KEY, expires_in: 5.minutes, disposition: :inline, filename: "avatar.png")
43
    end
44 45 46 47
  end
else
  puts "Skipping S3 Service tests because no S3 configuration was supplied"
end