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

39 lines
1.3 KiB
Ruby
Raw Normal View History

require 'ecloud/spec_helper'
2010-06-30 00:23:15 -04:00
if Fog.mocking?
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
subject { Fog::Compute::Ecloud::Node }
2010-06-30 00:23:15 -04: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
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 }
it { should be_an_instance_of(Fog::Compute::Ecloud::Node) }
2010-06-30 00:23:15 -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