mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
45 lines
1 KiB
Ruby
45 lines
1 KiB
Ruby
Shindo.tests('Fog::Compute[:hp] | flavor requests', ['hp']) do
|
|
|
|
@flavor_format = {
|
|
'rxtx_quota' => Integer,
|
|
'rxtx_cap' => Integer,
|
|
'vcpus' => Integer,
|
|
'swap' => Integer,
|
|
'disk' => Integer,
|
|
'ram' => Integer,
|
|
'id' => Integer,
|
|
'links' => [Hash],
|
|
'name' => String
|
|
}
|
|
|
|
@list_flavors_format = {
|
|
'id' => Integer,
|
|
'name' => String,
|
|
'links' => [Hash]
|
|
}
|
|
|
|
tests('success') do
|
|
|
|
tests('#list_flavors').formats({'flavors' => [@list_flavors_format]}) do
|
|
Fog::Compute[:hp].list_flavors.body
|
|
end
|
|
|
|
tests('#get_flavor_details(1)').formats(@flavor_format) do
|
|
Fog::Compute[:hp].get_flavor_details(1).body['flavor']
|
|
end
|
|
|
|
tests('#list_flavors_detail').formats({'flavors' => [@flavor_format]}) do
|
|
Fog::Compute[:hp].list_flavors_detail.body
|
|
end
|
|
|
|
end
|
|
|
|
tests('failure') do
|
|
|
|
tests('#get_flavor_details(9999)').raises(Fog::Compute::HP::NotFound) do
|
|
Fog::Compute[:hp].get_flavor_details(9999)
|
|
end
|
|
|
|
end
|
|
|
|
end
|