1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/vcloud/terremark/ecloud/requests/get_public_ip_spec.rb

39 lines
1.1 KiB
Ruby
Raw Normal View History

require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')
2010-05-27 17:17:59 -04:00
if Fog.mocking?
describe "Fog::Vcloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do
subject { @vcloud }
2010-05-27 17:17:59 -04:00
it { should respond_to :get_public_ip }
2010-05-27 17:17:59 -04:00
describe "#get_public_ip" do
context "with a valid public_ip_uri" do
before do
@public_ip = @vcloud.get_public_ip(@mock_public_ip.href)
end
2010-05-27 17:17:59 -04:00
subject { @public_ip }
2010-05-27 17:17:59 -04:00
it_should_behave_like "all responses"
it { should have_headers_denoting_a_content_type_of "application/vnd.tmrk.ecloud.publicIp+xml" }
2010-05-27 17:17:59 -04:00
describe "#body" do
subject { @public_ip.body }
2010-05-27 17:17:59 -04:00
its(:Name) { should == @mock_public_ip.name }
its(:Href) { should == @mock_public_ip.href }
its(:Id) { should == @mock_public_ip.object_id.to_s }
2010-05-27 17:17:59 -04:00
end
2010-05-27 17:17:59 -04:00
end
context "with a public_ips_uri that doesn't exist" do
subject { lambda { @vcloud.get_public_ip(URI.parse('https://www.fakey.c/piv89')) } }
2010-05-27 17:17:59 -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
else
2010-05-27 17:17:59 -04:00
end