mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
c29a72ccd1
Make some mock behavior reflect reality at Terremark. Add mocks for Terremark configure_vapp and delete_vapp.
62 lines
3 KiB
Ruby
62 lines
3 KiB
Ruby
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper')
|
|
|
|
if Fog.mocking?
|
|
describe "Fog::Vcloud::Terremark::Ecloud::InternetService", :type => :mock_tmrk_ecloud_model do
|
|
subject { @vcloud.vdcs[0].public_ips[0].internet_services[0] }
|
|
|
|
describe :class do
|
|
subject { Fog::Vcloud::Terremark::Ecloud::InternetService }
|
|
|
|
it { should have_identity :href }
|
|
it { should have_only_these_attributes [:href, :name, :id, :protocol, :port, :enabled, :description, :public_ip, :timeout, :redirect_url, :monitor] }
|
|
end
|
|
|
|
context "with no uri" do
|
|
|
|
subject { Fog::Vcloud::Terremark::Ecloud::InternetService.new() }
|
|
it { should have_all_attributes_be_nil }
|
|
|
|
end
|
|
|
|
context "as a collection member" do
|
|
subject { @vcloud.vdcs[0].public_ips[0].internet_services[0].reload; @vcloud.vdcs[0].public_ips[0].internet_services[0] }
|
|
|
|
let(:public_ip) {
|
|
pip = @vcloud.get_public_ip(@vcloud.vdcs[0].public_ips[0].internet_services[0].public_ip[:Href]).body
|
|
pip.delete_if{ |k,v| [:xmlns, :xmlns_i].include?(k)}
|
|
pip
|
|
}
|
|
let(:composed_public_ip_data) { @vcloud.vdcs[0].public_ips[0].internet_services[0].send(:_compose_ip_data) }
|
|
let(:composed_service_data) { @vcloud.vdcs[0].public_ips[0].internet_services[0].send(:_compose_service_data) }
|
|
|
|
it { should be_an_instance_of Fog::Vcloud::Terremark::Ecloud::InternetService }
|
|
|
|
its(:href) { should == @mock_service.href }
|
|
its(:identity) { should == @mock_service.href }
|
|
its(:name) { should == @mock_service.name }
|
|
its(:id) { should == @mock_service.object_id.to_s }
|
|
its(:protocol) { should == @mock_service.protocol }
|
|
its(:port) { should == @mock_service.port.to_s }
|
|
its(:enabled) { should == @mock_service.enabled.to_s }
|
|
its(:description) { should == @mock_service.description }
|
|
its(:public_ip) { should == public_ip }
|
|
its(:timeout) { should == @mock_service.timeout.to_s }
|
|
its(:redirect_url) { should == @mock_service.redirect_url }
|
|
its(:monitor) { should == nil }
|
|
|
|
specify { composed_public_ip_data[:href].should == public_ip[:Href].to_s }
|
|
specify { composed_public_ip_data[:name].should == public_ip[:Name] }
|
|
specify { composed_public_ip_data[:id].should == public_ip[:Id] }
|
|
|
|
specify { composed_service_data[:href].should == subject.href.to_s }
|
|
specify { composed_service_data[:name].should == subject.name }
|
|
specify { composed_service_data[:id].should == subject.id.to_s }
|
|
specify { composed_service_data[:protocol].should == subject.protocol }
|
|
specify { composed_service_data[:port].should == subject.port.to_s }
|
|
specify { composed_service_data[:enabled].should == subject.enabled.to_s }
|
|
specify { composed_service_data[:description].should == subject.description }
|
|
specify { composed_service_data[:timeout].should == subject.timeout.to_s }
|
|
end
|
|
end
|
|
else
|
|
end
|