Sha256: 53289bf9598693fd5f59975e5aafbd4fada720f6a236a0184bbd4457e54f46b0

Contents?: true

Size: 1.98 KB

Versions: 20

Compression:

Stored size: 1.98 KB

Contents

Shindo.tests("Storage[:aws] | file", ["aws"]) do

  require 'tempfile'

  file_attributes = {
    :key => 'fog_file_tests',
    :body => lorem_file,
    :public => true
  }

  directory_attributes = {
    # Add a random suffix to prevent collision
    :key => "fogfilestests-#{rand(65536)}"
  }

  @directory = Fog::Storage[:aws].directories.create(directory_attributes)

  model_tests(@directory.files, file_attributes, Fog.mocking?) do

    tests("#version") do
      tests("#version should be null if versioning isn't enabled").returns(nil) do
        @instance.version
      end
    end

  end

  @directory.versioning = true

  model_tests(@directory.files, file_attributes, Fog.mocking?) do

    tests("#version") do
      tests("#version should not be null if versioning is enabled").returns(false) do
        @instance.version == nil
      end
    end


    @directory.files.create(:key => @instance.key)
    @instance.destroy

    tests("#versions") do
      tests('#versions.size includes versions (including DeleteMarkers) for all keys').returns(3) do
        @instance.versions.size
      end

      tests('#versions are all for the correct key').returns(true) do
        @instance.versions.all? { |v| v.key == @instance.key }
      end
    end

    tests("#destroy") do
      tests("#destroy a specific version should delete the version, not create a DeleteMarker").returns(2) do
        @instance.destroy('versionId' => @instance.version)
        @instance.versions.all.size
      end
    end

    tests("multipart upload") do
      pending if Fog.mocking?

      # A 6MB file
      @large_file = Tempfile.new("fog-test-aws-s3-multipart")
      6.times { @large_file.write("x" * (1024**2)) }
      @large_file.rewind

      tests("#save(:multipart_chunk_size => 5242880)").succeeds do
        @directory.files.create(:key => 'multipart-upload', :body => @large_file, :multipart_chunk_size => 5242880)
      end

      @large_file.close

    end

  end

  @directory.versions.each(&:destroy)
  @directory.destroy

end

Version data entries

20 entries across 20 versions & 9 rubygems

Version Path
hpfog-0.0.20 tests/aws/models/storage/file_tests.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/tests/aws/models/storage/file_tests.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/tests/aws/models/storage/file_tests.rb
fog-nirvanix-1.8.2 tests/aws/models/storage/file_tests.rb
fog-nirvanix-1.8.1 tests/aws/models/storage/file_tests.rb
fog-1.10.1 tests/aws/models/storage/file_tests.rb
fog-parser-fix-1.6.1 tests/aws/models/storage/file_tests.rb
fog-test-again-1.6.0 tests/aws/models/storage/file_tests.rb
fog-test-me-1.10.0 tests/aws/models/storage/file_tests.rb
fog-parser-fix-1.6.0 tests/aws/models/storage/file_tests.rb
fog-1.10.0 tests/aws/models/storage/file_tests.rb
fog-1.9.0 tests/aws/models/storage/file_tests.rb
fog-maestrodev-1.8.0.20130114204828 tests/aws/models/storage/file_tests.rb
fog-maestrodev-1.8.0.20130111070250 tests/aws/models/storage/file_tests.rb
fog-maestrodev-1.8.0.20130109172219 tests/aws/models/storage/file_tests.rb
fog-sgonyea-1.8.1 tests/aws/models/storage/file_tests.rb
fog-1.8.0 tests/aws/models/storage/file_tests.rb
fog-maestrodev-1.7.0.20121114190951 tests/aws/models/storage/file_tests.rb
fog-1.7.0 tests/aws/models/storage/file_tests.rb
fog-1.6.0 tests/aws/models/storage/file_tests.rb