2011-01-10 01:12:48 -05:00
|
|
|
require 'vcloud/spec_helper'
|
2010-10-11 10:25:02 -04:00
|
|
|
|
|
|
|
if Fog.mocking?
|
|
|
|
describe "Fog::Vcloud, initialized w/ the TMRK Ecloud module", :type => :mock_tmrk_ecloud_request do
|
|
|
|
subject { @vcloud }
|
|
|
|
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should respond_to(:get_customization_options) }
|
2010-10-11 10:25:02 -04:00
|
|
|
|
|
|
|
describe "#get_customization_options" do
|
|
|
|
context "with a valid catalog_item customizations uri" do
|
|
|
|
let(:catalog_item) { @vcloud.get_catalog_item(@vcloud.vdcs.first.catalog.first.href) }
|
|
|
|
|
|
|
|
before { @customization_options = @vcloud.get_customization_options(catalog_item.body[:Link][:href]) }
|
|
|
|
subject { @customization_options }
|
|
|
|
|
|
|
|
it_should_behave_like "all responses"
|
2011-02-15 16:47:14 -05:00
|
|
|
it { should have_headers_denoting_a_content_type_of("application/vnd.tmrk.ecloud.catalogItemCustomizationParameters+xml") }
|
2010-10-11 10:25:02 -04:00
|
|
|
|
|
|
|
describe "#body" do
|
|
|
|
subject { @customization_options.body }
|
|
|
|
|
|
|
|
it { should have(5).items }
|
|
|
|
|
|
|
|
it_should_behave_like "it has the standard vcloud v0.8 xmlns attributes" # 3 keys
|
|
|
|
|
|
|
|
specify { subject[:CustomizeNetwork].should == "true" }
|
|
|
|
specify { subject[:CustomizePassword].should == "false" }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a catalog uri that doesn't exist" do
|
|
|
|
subject { lambda { @vcloud.get_catalog(URI.parse('https://www.fakey.com/api/v0.8/vdc/999/catalog')) } }
|
|
|
|
|
|
|
|
it_should_behave_like "a request for a resource that doesn't exist"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
end
|