Sha256: 9e94e74185d2e6b8f753aed7b654e0fb0237c0bde8e43c0b385abb7ebe678b4c

Contents?: true

Size: 1004 Bytes

Versions: 13

Compression:

Stored size: 1004 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.is_a? 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

13 entries across 11 versions & 2 rubygems

Version Path
fog-vsphere-3.7.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-3.6.8 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-3.6.7 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-3.6.6 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-3.0.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.5.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.4.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.3.0 tests/requests/compute/vm_reboot_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-vsphere-2.2.0/tests/requests/compute/vm_reboot_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-vsphere-2.2.0/tests/requests/compute/vm_reboot_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-vsphere-2.2.0/tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-2.2.0 tests/requests/compute/vm_reboot_tests.rb
fog-vsphere-1.7.0.1 tests/requests/compute/vm_reboot_tests.rb