2011-02-17 13:44:46 -05:00
|
|
|
require 'ecloud/spec_helper'
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
if Fog.mocking?
|
2011-02-17 13:44:46 -05:00
|
|
|
describe "Fog::Ecloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do
|
2010-06-17 19:58:09 -04:00
|
|
|
subject { @vcloud }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should respond_to(:get_public_ips) }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
describe "#get_public_ips" do
|
|
|
|
context "with a valid public_ips_uri" do
|
2010-10-17 19:06:44 -04:00
|
|
|
before { @public_ips = @vcloud.get_public_ips(@mock_public_ip_collection.href) }
|
2010-06-17 19:58:09 -04:00
|
|
|
subject { @public_ips }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
it_should_behave_like "all responses"
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should have_headers_denoting_a_content_type_of("application/vnd.tmrk.ecloud.publicIpsList+xml") }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
describe "#body" do
|
|
|
|
subject { @public_ips.body }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
it { should have(1).item }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
describe "[:PublicIPAddress]" do
|
|
|
|
subject { @public_ips.body[:PublicIPAddress] }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-10-17 19:06:44 -04:00
|
|
|
it { should have(@mock_public_ip_collection.items.length).addresses }
|
2010-06-17 19:58:09 -04:00
|
|
|
|
|
|
|
[0,1,2].each do |idx|
|
|
|
|
|
|
|
|
context "[#{idx}]" do
|
|
|
|
subject { @public_ips.body[:PublicIPAddress][idx] }
|
2010-10-17 19:06:44 -04:00
|
|
|
let(:public_ip) { @mock_public_ip_collection.items[idx] }
|
|
|
|
its(:Href) { should == public_ip.href }
|
|
|
|
its(:Id) { should == public_ip.object_id.to_s }
|
|
|
|
its(:Name) { should == public_ip.name }
|
2010-06-17 19:58:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2010-05-27 17:17:59 -04:00
|
|
|
|
|
|
|
end
|
2010-06-17 19:58:09 -04:00
|
|
|
|
2010-05-27 17:17:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
context "with a public_ips_uri that doesn't exist" do
|
|
|
|
subject { lambda { @vcloud.get_public_ips(URI.parse('https://www.fakey.c/piv8vc99')) } }
|
2010-05-27 17:17:59 -04:00
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
it_should_behave_like "a request for a resource that doesn't exist"
|
|
|
|
end
|
2010-05-27 17:17:59 -04:00
|
|
|
end
|
|
|
|
end
|
2010-06-17 19:58:09 -04:00
|
|
|
else
|
2010-05-27 17:17:59 -04:00
|
|
|
end
|