require File.expand_path '../../test_helper', __dir__ # Test class for PowerOff Virtual Machine Request class TestPowerOffVirtualMachine < Minitest::Test def setup @service = Fog::Compute::AzureRM.new(credentials) compute_client = @service.instance_variable_get(:@compute_mgmt_client) @virtual_machines = compute_client.virtual_machines end def test_power_off_virtual_machine_success @virtual_machines.stub :power_off, true do assert @service.power_off_virtual_machine('fog-test-rg', 'fog-test-server') end end def test_power_off_virtual_machine_failure response = proc { fail MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @virtual_machines.stub :power_off, response do assert_raises(RuntimeError) { @service.power_off_virtual_machine('fog-test-rg', 'fog-test-server') } end end end