mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
871 B
Ruby
35 lines
871 B
Ruby
#
|
|
# AFAICT - This is basically undocumented - 6/18/2010 - freeformz
|
|
#
|
|
|
|
module Fog
|
|
module Compute
|
|
class Ecloud
|
|
|
|
class Real
|
|
basic_request :get_network_ips
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_network_ips(network_ips_uri)
|
|
network_ips_uri = ensure_unparsed(network_ips_uri)
|
|
|
|
if network_ip_collection = mock_data.network_ip_collection_from_href(network_ips_uri)
|
|
builder = Builder::XmlMarkup.new
|
|
xml = builder.IpAddresses do
|
|
network_ip_collection.ordered_ips.each do |network_ip|
|
|
network_ip_response(builder, network_ip)
|
|
end
|
|
end
|
|
|
|
mock_it 200, xml, { 'Content-Type' => 'application/vnd.tmrk.ecloud.ipAddressesList+xml' }
|
|
else
|
|
mock_error 200, "401 Unauthorized"
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|