2011-02-17 13:44:46 -05:00
|
|
|
require 'ecloud/spec_helper'
|
2010-06-30 00:23:15 -04:00
|
|
|
|
|
|
|
if Fog.mocking?
|
2011-06-20 18:00:48 -04:00
|
|
|
describe "Fog::Compute::Ecloud::Node", :type => :mock_tmrk_ecloud_model do
|
2010-06-30 00:23:15 -04:00
|
|
|
|
|
|
|
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.first }
|
|
|
|
|
|
|
|
describe :class do
|
2011-06-20 18:00:48 -04:00
|
|
|
subject { Fog::Compute::Ecloud::Node }
|
2010-06-30 00:23:15 -04:00
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should have_identity(:href) }
|
|
|
|
it { should have_only_these_attributes([:href, :ip_address, :description, :name, :port, :enabled, :id]) }
|
2010-06-30 00:23:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with no uri" do
|
|
|
|
|
2011-06-20 18:00:48 -04:00
|
|
|
subject { Fog::Compute::Ecloud::Node.new() }
|
2010-06-30 00:23:15 -04:00
|
|
|
it { should have_all_attributes_be_nil }
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context "as a collection member" do
|
|
|
|
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.first.reload }
|
|
|
|
|
2011-06-20 18:00:48 -04:00
|
|
|
it { should be_an_instance_of(Fog::Compute::Ecloud::Node) }
|
2010-06-30 00:23:15 -04:00
|
|
|
|
2010-10-17 19:06:44 -04:00
|
|
|
its(:href) { should == @mock_node.href }
|
|
|
|
its(:identity) { should == @mock_node.href }
|
|
|
|
its(:name) { should == @mock_node.name }
|
|
|
|
its(:id) { should == @mock_node.object_id.to_s }
|
|
|
|
its(:port) { should == @mock_node.port.to_s }
|
|
|
|
its(:enabled) { should == @mock_node.enabled.to_s }
|
|
|
|
its(:description) { should == @mock_node.description }
|
2010-06-30 00:23:15 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
end
|