mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
![Dan Peterson](/assets/img/avatar_default.png)
Make some mock behavior reflect reality at Terremark. Add mocks for Terremark configure_vapp and delete_vapp.
104 lines
3.9 KiB
Ruby
104 lines
3.9 KiB
Ruby
require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')
|
|
|
|
if Fog.mocking?
|
|
shared_examples_for "the expected internet service item" do
|
|
specify { service.should be_an_instance_of Hash }
|
|
specify { service.should have(11).attributes }
|
|
specify { service[:Name].should == mock_service.name }
|
|
specify { service[:Id].should == mock_service.object_id.to_s }
|
|
specify { service[:Href].should == mock_service.href }
|
|
|
|
specify { service[:PublicIpAddress].should be_an_instance_of Hash }
|
|
specify { service[:PublicIpAddress].should have(3).attributes }
|
|
specify { service[:PublicIpAddress][:Name].should == mock_ip.name }
|
|
specify { service[:PublicIpAddress][:Href].should == mock_ip.href }
|
|
specify { service[:PublicIpAddress][:Id].should == mock_ip.object_id.to_s }
|
|
|
|
specify { service[:Port].should == mock_service.port.to_s }
|
|
specify { service[:Protocol].should == mock_service.protocol }
|
|
specify { service[:Enabled].should == mock_service.enabled.to_s }
|
|
specify { service[:Timeout].should == mock_service.timeout.to_s }
|
|
specify { service[:Description].should == mock_service.description }
|
|
specify { service[:RedirectURL].should == (mock_service.redirect_url || "") }
|
|
specify { service[:Monitor].should == "" }
|
|
end
|
|
|
|
describe "Fog::Vcloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do
|
|
subject { @vcloud }
|
|
|
|
it { should respond_to :get_internet_services }
|
|
|
|
describe "#get_internet_services" do
|
|
context "with a valid VDC internet_services_uri" do
|
|
before { @services = @vcloud.get_internet_services(@mock_vdc_service_collection.href) }
|
|
subject { @services }
|
|
|
|
it_should_behave_like "all responses"
|
|
it { should have_headers_denoting_a_content_type_of "application/vnd.tmrk.ecloud.internetServicesList+xml" }
|
|
|
|
describe "#body" do
|
|
subject { @services.body }
|
|
|
|
it { should have(3).items }
|
|
|
|
its(:xmlns) { should == "urn:tmrk:eCloudExtensions-2.3" }
|
|
its(:xmlns_i) { should == "http://www.w3.org/2001/XMLSchema-instance" }
|
|
|
|
context "[:InternetService]" do
|
|
subject { @services.body[:InternetService] }
|
|
|
|
it { should have(4).items }
|
|
|
|
[0,1,2,3].each do |idx|
|
|
let(:service) { subject[idx] }
|
|
let(:mock_service) { @mock_vdc.public_ip_collection.items.map {|ip| ip.internet_service_collection.items }.flatten[idx] }
|
|
let(:mock_ip) { mock_service._parent._parent }
|
|
|
|
it_should_behave_like "the expected internet service item"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with a valid Public IP uri" do
|
|
before do
|
|
@services = @vcloud.get_internet_services(@mock_service_collection.href)
|
|
end
|
|
subject { @services }
|
|
|
|
it_should_behave_like "all responses"
|
|
it { should have_headers_denoting_a_content_type_of "application/vnd.tmrk.ecloud.internetServicesList+xml" }
|
|
|
|
describe "#body" do
|
|
subject { @services.body }
|
|
|
|
it { should have(3).items }
|
|
|
|
its(:xmlns) { should == "urn:tmrk:eCloudExtensions-2.3" }
|
|
its(:xmlns_i) { should == "http://www.w3.org/2001/XMLSchema-instance" }
|
|
|
|
context "[:InternetService]" do
|
|
subject { @services.body[:InternetService] }
|
|
|
|
it { should have(2).items }
|
|
|
|
[0,1].each do |idx|
|
|
let(:service) { subject[idx] }
|
|
let(:mock_service) { @mock_service_collection.items[idx] }
|
|
let(:mock_ip) { @mock_public_ip }
|
|
|
|
it_should_behave_like "the expected internet service item"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with a public_ips_uri that doesn't exist" do
|
|
subject { lambda { @vcloud.get_internet_services(URI.parse('https://www.fakey.c/piv8vc99')) } }
|
|
|
|
it_should_behave_like "a request for a resource that doesn't exist"
|
|
end
|
|
end
|
|
end
|
|
else
|
|
end
|