1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/vcloud_director/requests/compute/vapp_tests.rb
2014-06-19 09:51:13 +01:00

123 lines
4.9 KiB
Ruby

Shindo.tests('Compute::VcloudDirector | vapp requests', ['vclouddirector']) do
@service = Fog::Compute::VcloudDirector.new
@org = VcloudDirector::Compute::Helper.current_org(@service)
tests('Each vDC') do
@org[:Link].select do |l|
l[:type] == 'application/vnd.vmware.vcloud.vdc+xml'
end.each do |link|
@vdc = @service.get_vdc(link[:href].split('/').last).body
tests('Each vApp') do
@vdc[:ResourceEntities][:ResourceEntity].select do |r|
r[:type] == 'application/vnd.vmware.vcloud.vApp+xml'
end.each do |v|
@vapp_id = v[:href].split('/').last
#tests("#get_vapp(#{@vapp_id})").data_matches_schema(VcloudDirector::Compute::Schema::VAPP_TYPE) do
tests("#get_vapp(#{@vapp_id}).body").returns(Hash) do
@service.get_vapp(@vapp_id).body.class
end
tests("#get_vapp(#{@vapp_id}).body[:name]").returns(String) do
@service.get_vapp(@vapp_id).body[:name].class
end
tests("#get_vapp(#{@vapp_id}).body[:href]").returns(v[:href]) do
@service.get_vapp(@vapp_id).body[:href]
end
tests("#get_lease_settings_section_vapp(#{@vapp_id})").returns(Hash) do
@service.get_lease_settings_section_vapp(@vapp_id).body.class
end
tests("#get_lease_settings_section_vapp(#{@vapp_id}).body[:DeploymentLeaseInSeconds] is >= 0").returns(true) do
Integer(@service.get_lease_settings_section_vapp(@vapp_id).body[:DeploymentLeaseInSeconds]) >= 0
end
tests("#get_vapp(#{@vapp_id}).body[:LeaseSettingsSection[:DeploymentLeaseInSeconds] is >= 0").returns(true) do
Integer(@service.get_vapp(@vapp_id).body[:LeaseSettingsSection][:DeploymentLeaseInSeconds]) >= 0
end
tests("#get_vapp(#{@vapp_id}).body[:NetworkConfigSection]").returns(Hash) do
@service.get_vapp(@vapp_id).body[:NetworkConfigSection].class
end
tests("#get_network_config_section_vapp(#{@vapp_id})").returns(Hash) do
@service.get_network_config_section_vapp(@vapp_id).body.class
end
tests("#get_network_section_vapp(#{@vapp_id})").returns(Hash) do
pending if Fog.mocking?
@service.get_network_section_vapp(@vapp_id).body.class
end
tests("#get_product_sections_vapp(#{@vapp_id})").returns(Hash) do
pending if Fog.mocking?
@service.get_product_sections_vapp(@vapp_id).body.class
end
tests("#get_vapp(#{@vapp_id}).body[:'ovf:StartupSection']").returns(Hash) do
@service.get_vapp(@vapp_id).body[:"ovf:StartupSection"].class
end
tests("#put_product_sections(#{@vapp_id})").returns(Hash) do
pending if Fog.mocking?
@service.put_product_sections(@vapp_id, ["a" => "1"]).body.class
end
tests("#get_startup_section(#{@vapp_id})").returns(Hash) do
@service.get_startup_section(@vapp_id).body.class
end
tests("#get_vapp_metadata(#{@vapp_id})").data_matches_schema(VcloudDirector::Compute::Schema::METADATA_TYPE) do
pending if Fog.mocking?
@service.get_vapp_metadata(@vapp_id).body
end
tests("#get_vapp_owner(#{@vapp_id})").data_matches_schema(VcloudDirector::Compute::Schema::OWNER_TYPE) do
@service.get_vapp_owner(@vapp_id).body
end
tests("#get_vapp(#{@vapp_id}).body[:Owner]").data_matches_schema(VcloudDirector::Compute::Schema::OWNER_TYPE) do
@service.get_vapp(@vapp_id).body[:Owner]
end
tests("#get_control_access_params_vapp(#{@vapp_id})").data_matches_schema(VcloudDirector::Compute::Schema::CONTROL_ACCESS_PARAMS_TYPE) do
pending if Fog.mocking?
@service.get_control_access_params_vapp(@vapp_id).body
end
end
end
end
end
tests('#get_vapps_in_lease_from_query') do
pending if Fog.mocking?
%w[idrecords records references].each do |format|
tests(":format => #{format}") do
tests('#body').data_matches_schema(VcloudDirector::Compute::Schema::CONTAINER_TYPE) do
@body = @service.get_vapps_in_lease_from_query(:format => format).body
end
key = (format == 'references') ? 'VAppReference' : 'VAppRecord'
tests("#body.key?(:#{key})").returns(true) { @body.key?(key.to_sym) }
end
end
end
tests('Retrieve non-existent vApp').raises(Fog::Compute::VcloudDirector::Forbidden) do
pending if Fog.mocking?
@service.get_vapp('00000000-0000-0000-0000-000000000000')
end
tests('Retrieve owner of non-existent vApp').raises(Fog::Compute::VcloudDirector::Forbidden) do
@service.get_vapp_owner('00000000-0000-0000-0000-000000000000')
end
tests('Delete non-existent vApp').raises(Fog::Compute::VcloudDirector::Forbidden) do
pending if Fog.mocking?
@service.delete_vapp('00000000-0000-0000-0000-000000000000')
end
end