1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/brightbox/requests/compute/zone_tests.rb
Paul Thornthwaite 6500fa46bf [brightbox] Tests for remaining API requests
* Request tests for accounts, api_clients, cloud_ips, images, interfaces, server types, user and zones
* Added 'ready?' methods to CloudIp and Image models
* Reworked brightbox helper to include Format patterns for all of the
* Added "hack" to allow select objects to be one class OR NilClass for fields that may be a JSON string or null if unset
* Some tests are not enabled (commented out) because they need manual steps (such as uploading Image to your account before registration)
2010-12-09 13:28:51 +00:00

28 lines
687 B
Ruby

Shindo.tests('Brightbox::Compute | zone requests', ['brightbox']) do
tests('success') do
tests("#list_zones()").formats(Brightbox::Compute::Formats::Collection::ZONES) do
data = Brightbox[:compute].list_zones()
@zone_id = data.first["id"]
data
end
tests("#get_zone('#{@zone_id}')").formats(Brightbox::Compute::Formats::Full::ZONE) do
Brightbox[:compute].get_zone(@zone_id)
end
end
tests('failure') do
tests("#get_zone('zon-00000')").raises(Excon::Errors::NotFound) do
Brightbox[:compute].get_zone('zon-00000')
end
tests("#get_zone()").raises(ArgumentError) do
Brightbox[:compute].get_zone()
end
end
end