mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
9666c9c7e0
This patch brings models for AWS CDN, including tests and documentation. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
19 lines
669 B
Ruby
19 lines
669 B
Ruby
Shindo.tests("Fog::CDN[:aws] | streaming_distribution", ['aws', 'cdn']) do
|
|
params = { :s3_origin => { 'DNSName' => 'fog_test_cdn.s3.amazonaws.com'}, :enabled => true }
|
|
model_tests(Fog::CDN[:aws].streaming_distributions, params, false) do
|
|
# distribution needs to be ready before being disabled
|
|
tests("#ready? - may take 15 minutes to complete...").succeeds do
|
|
pending if Fog.mocking?
|
|
|
|
@instance.wait_for { ready? }
|
|
end
|
|
|
|
# and disabled before being distroyed
|
|
tests("#disable - may take 15 minutes to complete...").succeeds do
|
|
pending if Fog.mocking?
|
|
|
|
@instance.disable
|
|
@instance.wait_for { ready? }
|
|
end
|
|
end
|
|
end
|