Sha256: 6515e11278e48134663fb3c41add98df4ca0a44bc9a2e96422a0a109d106a679

Contents?: true

Size: 1 KB

Versions: 6

Compression:

Stored size: 1 KB

Contents

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

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

  tests('The response should') do
    response = compute.vm_power_off('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 power_off_type key') { response.key? 'power_off_type' }
  end

  # When forcing the shutdown, we expect the result to be
  { true => 'cut_power', false => 'shutdown_guest' }.each do |force, expected|
    tests("When 'force' => #{force}") do
      response = compute.vm_power_off('instance_uuid' => powered_on_vm, 'force' => force)
      test("should retur power_off_type of #{expected}") { response['power_off_type'] == expected }
    end
  end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fog-vsphere-3.7.0 tests/requests/compute/vm_power_off_tests.rb
fog-vsphere-3.6.8 tests/requests/compute/vm_power_off_tests.rb
fog-vsphere-3.6.7 tests/requests/compute/vm_power_off_tests.rb
fog-vsphere-3.6.6 tests/requests/compute/vm_power_off_tests.rb
fog-vsphere-3.0.0 tests/requests/compute/vm_power_off_tests.rb
fog-vsphere-2.5.0 tests/requests/compute/vm_power_off_tests.rb