Sha256: c76b93cd35f81c5627e149524cfa07221dad5152f2fc0d93e396ef45cbf41bb6

Contents?: true

Size: 1008 Bytes

Versions: 72

Compression:

Stored size: 1008 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.key? 'task_state' }
    test('should have a reboot_type key') { response.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

72 entries across 72 versions & 5 rubygems

Version Path
fog-vsphere-2.1.1 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.1.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.0.1 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.0.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.13.1 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.13.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.12.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.11.3 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.11.2 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.11.1 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.11.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.10.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.9.2 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.9.1 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.9.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.8.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.7.1 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.7.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.6.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.5.2 tests/requests/compute/vm_reboot_tests.rb