mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
e877f95034
This patch adds support for mocking the cloudfront API. CDN Tests now can both be run with mocking and non mocking activated. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
15 lines
556 B
Ruby
15 lines
556 B
Ruby
Shindo.tests("Fog::CDN[:aws] | invalidations", ['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
|
|
|
|
collection_tests(@distribution.invalidations, { :paths => [ '/index.html' ]}, true)
|
|
|
|
tests("distribution#destroy - may take 15/20 minutes to complete").succeeds do
|
|
@distribution.wait_for { ready? }
|
|
@distribution.disable
|
|
@distribution.wait_for { ready? }
|
|
@distribution.destroy
|
|
end
|
|
end
|
|
|