mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[Vcloud] Basic tests for node(s)
This commit is contained in:
parent
150778aff7
commit
8089f45736
2 changed files with 67 additions and 0 deletions
38
spec/vcloud/terremark/ecloud/models/node_spec.rb
Normal file
38
spec/vcloud/terremark/ecloud/models/node_spec.rb
Normal file
|
@ -0,0 +1,38 @@
|
|||
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper')
|
||||
|
||||
if Fog.mocking?
|
||||
describe "Fog::Vcloud::Terremark::Ecloud::Node", :type => :mock_tmrk_ecloud_model do
|
||||
|
||||
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.first }
|
||||
|
||||
describe :class do
|
||||
subject { Fog::Vcloud::Terremark::Ecloud::Node }
|
||||
|
||||
it { should have_identity :href }
|
||||
it { should have_only_these_attributes [:href, :ip_address, :description, :name, :port, :enabled, :id] }
|
||||
end
|
||||
|
||||
context "with no uri" do
|
||||
|
||||
subject { Fog::Vcloud::Terremark::Ecloud::Node.new() }
|
||||
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::Vcloud::Terremark::Ecloud::Node }
|
||||
|
||||
its(:href) { should == @mock_node[:href] }
|
||||
its(:identity) { should == @mock_node[:href] }
|
||||
its(:name) { should == @mock_node[:name] }
|
||||
its(:id) { should == @mock_node[:id] }
|
||||
its(:port) { should == @mock_node[:port] }
|
||||
its(:enabled) { should == @mock_node[:enabled] }
|
||||
its(:description) { should == @mock_node[:description] }
|
||||
|
||||
end
|
||||
end
|
||||
else
|
||||
end
|
29
spec/vcloud/terremark/ecloud/models/nodes_spec.rb
Normal file
29
spec/vcloud/terremark/ecloud/models/nodes_spec.rb
Normal file
|
@ -0,0 +1,29 @@
|
|||
require File.join(File.dirname(__FILE__),'..','..','..','spec_helper')
|
||||
|
||||
if Fog.mocking?
|
||||
describe "Fog::Vcloud::Terremark::Ecloud::InternetServices", :type => :mock_tmrk_ecloud_model do
|
||||
context "as an attribute of an internet_service" do
|
||||
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first }
|
||||
|
||||
it { should respond_to :nodes }
|
||||
|
||||
describe :class do
|
||||
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes.class }
|
||||
its(:model) { should == Fog::Vcloud::Terremark::Ecloud::Node }
|
||||
end
|
||||
|
||||
describe :nodes do
|
||||
subject { @vcloud.vdcs.first.public_ips.first.internet_services.first.nodes }
|
||||
|
||||
it { should respond_to :create }
|
||||
|
||||
it { should be_an_instance_of Fog::Vcloud::Terremark::Ecloud::Nodes }
|
||||
|
||||
its(:length) { should == 2 }
|
||||
|
||||
it { should have_members_of_the_right_model }
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
end
|
Loading…
Add table
Reference in a new issue