mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
4e41e00fed
Using #data_matches_schema which correctly fails when a nullable resource is absent.
34 lines
944 B
Ruby
34 lines
944 B
Ruby
Shindo.tests('Fog::Compute[:brightbox] | zone requests', ['brightbox']) do
|
|
|
|
tests('success') do
|
|
|
|
tests("#list_zones") do
|
|
pending if Fog.mocking?
|
|
result = Fog::Compute[:brightbox].list_zones
|
|
@zone_id = result.first["id"]
|
|
data_matches_schema(Brightbox::Compute::Formats::Collection::ZONES, {:allow_extra_keys => true}) { result }
|
|
end
|
|
|
|
tests("#get_zone('#{@zone_id}')") do
|
|
pending if Fog.mocking?
|
|
result = Fog::Compute[:brightbox].get_zone(@zone_id)
|
|
data_matches_schema(Brightbox::Compute::Formats::Full::ZONE, {:allow_extra_keys => true}) { result }
|
|
end
|
|
|
|
end
|
|
|
|
tests('failure') do
|
|
|
|
tests("#get_zone('zon-00000')").raises(Excon::Errors::NotFound) do
|
|
pending if Fog.mocking?
|
|
Fog::Compute[:brightbox].get_zone('zon-00000')
|
|
end
|
|
|
|
tests("#get_zone").raises(ArgumentError) do
|
|
pending if Fog.mocking?
|
|
Fog::Compute[:brightbox].get_zone
|
|
end
|
|
|
|
end
|
|
|
|
end
|