Sha256: 0bccdaafb757504bd83d5f9fe63ee371530abfef997ccb687bb40b0d88ff4da7
Contents?: true
Size: 1.34 KB
Versions: 14
Compression:
Stored size: 1.34 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Deallocate Virtual Machine Request class TestDeallocateVirtualMachine < 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_deallocate_virtual_machine_success @virtual_machines.stub :deallocate, true do assert @service.deallocate_virtual_machine('fog-test-rg', 'fog-test-server', false) end async_response = Concurrent::Promise.execute { 10 } @virtual_machines.stub :deallocate_async, async_response do assert @service.deallocate_virtual_machine('fog-test-rg', 'fog-test-server', true), async_response end end def test_deallocate_virtual_machine_failure response = proc { fail MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @virtual_machines.stub :deallocate, response do assert_raises(MsRestAzure::AzureOperationError) { @service.deallocate_virtual_machine('fog-test-rg', 'fog-test-server', false) } end @virtual_machines.stub :deallocate_async, response do assert_raises(MsRestAzure::AzureOperationError) { @service.deallocate_virtual_machine('fog-test-rg', 'fog-test-server', true) } end end end
Version data entries
14 entries across 14 versions & 2 rubygems