1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/cloudstack/requests/virtual_machine_tests.rb

71 lines
2.2 KiB
Ruby
Raw Normal View History

2011-10-10 00:37:26 -04:00
Shindo.tests('Fog::Compute[:cloudstack] | virtual machine requests', ['cloudstack']) do
@virtual_machines_format = {
'listvirtualmachinesresponse' => {
'count' => Integer,
'virtualmachine' => [
'id' => Integer,
'name' => String,
'displayname' => String,
'account' => String,
'domainid' => Integer,
'domain' => String,
'created' => String,
'state' => String,
'haenable' => Fog::Boolean,
'zoneid' => Integer,
'zonename' => String,
'hostid' => Fog::Nullable::String,
2011-10-10 00:37:26 -04:00
'hostname' => Fog::Nullable::String,
'templateid' => Integer,
'templatename' => String,
'templatedisplaytext' => String,
'passwordenabled' => Fog::Boolean,
'serviceofferingid' => Integer,
'serviceofferingname' => String,
'cpunumber' => Integer,
'cpuspeed' => Integer,
'networkkbsread' => Fog::Nullable::Integer,
'memory' => Integer,
'cpuused' => Fog::Nullable::String,
'guestosid' => Integer,
'networkkbswrite' => Fog::Nullable::Integer,
'rootdeviceid' => Integer,
'rootdevicetype' => String,
'hypervisor' => String,
'group' => Fog::Nullable::String,
'groupid' => Fog::Nullable::Integer,
'isoname' => Fog::Nullable::String,
'isoid' => Fog::Nullable::Integer,
'securitygroup' => [
'id' => Integer,
'name' => Fog::Nullable::String,
'description' => Fog::Nullable::String
],
'nic' => [
'id' => Integer,
'networkid' => Integer,
'netmask' => String,
'gateway' => String,
'ipaddress' => String,
'traffictype' => String,
'type' => String,
'isdefault' => Fog::Boolean,
'macaddress' => String,
'broadcasturi' => Fog::Nullable::String,
'isolationuri' => Fog::Nullable::String
]
]
}
}
tests('success') do
tests('#list_virtual_machines').formats(@virtual_machines_format) do
pending if Fog.mocking?
Fog::Compute[:cloudstack].list_virtual_machines
end
end
end