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/interface_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

24 lines
649 B
Ruby

Shindo.tests('Brightbox::Compute | interface requests', ['brightbox']) do
tests('success') do
server = Brightbox[:compute].servers.first
@interface_id = server.interfaces.first["id"]
tests("#get_interface('#{@interface_id}')").formats(Brightbox::Compute::Formats::Full::INTERFACE) do
Brightbox[:compute].get_interface(@interface_id)
end
end
tests('failure') do
tests("#get_interface('int-00000')").raises(Excon::Errors::Forbidden) do
Brightbox[:compute].get_interface('int-00000')
end
tests("#get_interface()").raises(ArgumentError) do
Brightbox[:compute].get_interface()
end
end
end