Sha256: 4eac0b346c36747758c3affea296a7c8dd121421f0e68899143f68f432740c1c

Contents?: true

Size: 872 Bytes

Versions: 72

Compression:

Stored size: 872 Bytes

Contents

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

  compute = Fog::Compute[:vsphere]

  reconfig_target = '50137835-88a1-436e-768e-9b2677076e67'
  reconfig_spec = {'guestId' => 'rhel5_64Guest'}

  tests('The response should') do
    response = compute.vm_reconfig_hardware('instance_uuid' => reconfig_target, 'hardware_spec' => reconfig_spec)
    test('be a kind of Hash') { response.kind_of? Hash }
    test('should have a task_state key') { response.key? 'task_state' }
  end

  tests('The expected options') do
    raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_reconfig_hardware('hardware_spec' => reconfig_spec) }
    raises(ArgumentError, 'raises ArgumentError when hardware_spec option is missing') { compute.vm_reconfig_hardware('instance_uuid' => reconfig_target) }
  end

end

Version data entries

72 entries across 72 versions & 5 rubygems

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