Sha256: 7d107c91e448bdf6160078979bdebbbe45a332b0b4aa210022b477e20be9a269

Contents?: true

Size: 925 Bytes

Versions: 79

Compression:

Stored size: 925 Bytes

Contents

Shindo.tests("Fog::CDN[:aws] | invalidation", ['aws', 'cdn']) do

  tests("distributions#create").succeeds do
    @distribution = Fog::CDN[:aws].distributions.create(:s3_origin => {'DNSName' => 'fog_test.s3.amazonaws.com'}, :enabled => true)
  end

  params = { :paths => [ '/index.html', '/path/to/index.html' ] }

  model_tests(@distribution.invalidations, params, true) do

    tests("#id") do
      returns(true) { @instance.identity != nil }
    end

    tests("#paths") do
      returns([ '/index.html', '/path/to/index.html' ].sort) { @instance.paths.sort }
    end

    tests("#ready? - may take 15 minutes to complete...").succeeds do
      @instance.wait_for { ready? }
    end
  end

  tests("distribution#destroy - may take around 15/20 minutes to complete...").succeeds do
    @distribution.wait_for { ready? }
    @distribution.disable
    @distribution.wait_for { ready? }
    @distribution.destroy
  end

end

Version data entries

79 entries across 77 versions & 6 rubygems

Version Path
fog-aws-3.12.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.11.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.10.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.9.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.8.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.7.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.6.7 tests/models/cdn/invalidation_tests.rb
fog-aws-3.6.6 tests/models/cdn/invalidation_tests.rb
fog-aws-3.6.5 tests/models/cdn/invalidation_tests.rb
fog-aws-3.6.4 tests/models/cdn/invalidation_tests.rb
fog-aws-3.6.3 tests/models/cdn/invalidation_tests.rb
fog-aws-3.6.2 tests/models/cdn/invalidation_tests.rb
fog-aws-3.5.2 tests/models/cdn/invalidation_tests.rb
fog-aws-3.5.1 tests/models/cdn/invalidation_tests.rb
fog-aws-3.5.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.4.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.3.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.2.0 tests/models/cdn/invalidation_tests.rb
fog-aws-3.1.0 tests/models/cdn/invalidation_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/tests/models/cdn/invalidation_tests.rb