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/models/server_spec.rb
Dan Peterson c29a72ccd1 Rework vCloud mocking to use mock objects instead of a Hash.
Make some mock behavior reflect reality at Terremark.

Add mocks for Terremark configure_vapp and delete_vapp.
2010-11-05 08:56:50 +08:00

42 lines
1.6 KiB
Ruby

require File.join(File.dirname(__FILE__),'..','..','..','spec_helper')
if Fog.mocking?
describe "Fog::Vcloud::Terremark::Ecloud::Vdc", :type => :mock_tmrk_ecloud_model do
subject { @vcloud }
describe :class do
subject { Fog::Vcloud::Terremark::Ecloud::Server }
it { should have_identity :href }
it { should have_only_these_attributes [:href, :type, :name, :status, :network_connections, :os, :virtual_hardware, :storage_size, :links] }
end
context "with no uri" do
subject { Fog::Vcloud::Terremark::Ecloud::Server.new() }
it { should have_all_attributes_be_nil }
end
context "as a collection member" do
subject { @vcloud.vdcs[0].servers.first }
its(:href) { should == @mock_vm.href }
its(:identity) { should == @mock_vm.href }
its(:name) { should == @mock_vm.name }
its(:cpus) { should == { :count => @mock_vm.cpus, :units => nil } }
its(:memory) { should == { :amount => @mock_vm.memory, :units => nil } }
its(:disks) { should == @mock_vm.to_configure_vapp_hash[:disks] }
end
context "as a new server without all info" do
before { @vcloud.return_vapp_as_creating! "test123" }
subject { @vcloud.vdcs[0].servers.create(@mock_catalog_item.href, { :name => "test123", :row => "foo", :group => "bar", :network_uri => @mock_network.href }) }
its(:cpus) { should be_nil }
its(:memory) { should be_nil }
its(:disks) { should == [] }
end
end
else
end