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/requests/instantiate_vapp_template_spec.rb

79 lines
2.5 KiB
Ruby
Raw Normal View History

require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')
if Fog.mocking?
describe "Fog::Vcloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do
subject { @vcloud }
it { should respond_to :instantiate_vapp_template }
describe "#instantiate_vapp_template" do
let(:vdc) { @vcloud.vdcs.first }
let(:catalog_item) { vdc.catalog.first }
let(:catalog_item_data) { @vcloud.catalog_item_and_vdc_from_catalog_item_uri(catalog_item.href).first }
let(:new_vapp_data) do
{
:name => "foobar",
:network_uri => @mock_network[:href],
:row => "test row",
:group => "test group",
:memory => 1024,
:cpus => 2,
:vdc_uri => vdc.href
}
end
context "with a valid data" do
let(:template_instantiation) { @vcloud.instantiate_vapp_template(catalog_item.href, new_vapp_data) }
subject { template_instantiation }
it_should_behave_like "all responses"
it { should have_headers_denoting_a_content_type_of "application/xml" }
it "updates the mock data properly" do
expect { template_instantiation }.to change { @vcloud.vdc_from_uri(vdc.href)[:vms].count }.by(1)
end
describe "added mock data" do
subject { template_instantiation; @vcloud.vdc_from_uri(vdc.href)[:vms].last }
it { should include :id }
it { should include :href }
it { should include :disks }
it { should include :ip }
its(:disks) { should == catalog_item_data[:disks] }
specify { subject.values_at(*new_vapp_data.keys).should == new_vapp_data.values }
end
describe "#body" do
subject { template_instantiation.body }
it { should have(9).items }
it_should_behave_like "it has the standard vcloud v0.8 xmlns attributes" # 3 keys
its(:href) { should =~ %r{/vapp/\d+$} }
its(:type) { should == "application/vnd.vmware.vcloud.vApp+xml" }
its(:name) { should == new_vapp_data[:name] }
its(:status) { should == "0" }
its(:size) { should == "4" }
it { should include :Link }
describe "Link" do
subject { template_instantiation.body[:Link] }
it { should have(3).keys }
its(:rel) { should == "up" }
its(:type) { should == "application/vnd.vmware.vcloud.vdc+xml" }
its(:href) { should == vdc.href }
end
end
end
end
end
else
end