Sha256: 6db635a04f4631f7872302f7580cfd1de337a914a622b1f1bd3d9cc0fd193460

Contents?: true

Size: 1016 Bytes

Versions: 103

Compression:

Stored size: 1016 Bytes

Contents

Shindo.tests('Fog::Compute[:vsphere] | vm_reboot request', ['vsphere']) do

  compute = Fog::Compute[:vsphere]

  powered_on_vm = '5032c8a5-9c5e-ba7a-3804-832a03e16381'

  tests('The response should') do
    response = compute.vm_reboot('instance_uuid' => powered_on_vm)
    test('be a kind of Hash') { response.kind_of? Hash }
    test('should have a task_state key') { response.has_key? 'task_state' }
    test('should have a reboot_type key') { response.has_key? 'reboot_type' }
  end

  # When forcing the shutdown, we expect the result to be
  { true => 'reset_power', false => 'reboot_guest'}.each do |force, expected|
    tests("When force => #{force}") do
      response = compute.vm_reboot('instance_uuid' => powered_on_vm, 'force' => force)
      test("should return reboot_type of #{expected}") { response['reboot_type'] == expected }
    end
  end

  tests('The expected options') do
    raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_reboot }
  end

end

Version data entries

103 entries across 103 versions & 17 rubygems

Version Path
fog-1.22.0 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-1.21.0 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-1.20.0 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-1.19.0 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/vsphere/requests/compute/vm_reboot_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/vsphere/requests/compute/vm_reboot_tests.rb