Sha256: 2f9e1a2979ab89a42ac3107bd7fe8005c64dd9d0826a279e0e53cbd9e1bf2a2f
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Create Virtual Network Gateway Connection Request class TestCreateVirtualNetworkGatewayConnection < Minitest::Test def setup @service = Fog::Network::AzureRM.new(credentials) @network_client = @service.instance_variable_get(:@network_client) @gateway_connections = @network_client.virtual_network_gateway_connections @connection_response = ApiStub::Requests::Network::VirtualNetworkGatewayConnection.create_virtual_network_gateway_connection_response(@network_client) end def test_create_virtual_network_gateway_connection_success network_gateway_parms = {} @gateway_connections.stub :create_or_update, @connection_response do assert_equal @service.create_or_update_virtual_network_gateway_connection(network_gateway_parms), @connection_response end end def test_create_virtual_network_gateway_connection_argument_error_failure @gateway_connections.stub :create_or_update, @connection_response do assert_raises ArgumentError do @service.create_or_update_virtual_network_gateway_connection end end end def test_create_virtual_network_gateway_connection_exception_failure network_gateway_parms = {} response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @gateway_connections.stub :create_or_update, response do assert_raises RuntimeError do @service.create_or_update_virtual_network_gateway_connection(network_gateway_parms) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.0.8 | test/requests/network/test_create_virtual_network_gateway_connection.rb |
fog-azure-rm-0.0.6 | test/requests/network/test_create_virtual_network_gateway_connection.rb |