Sha256: 51abf9cff37685c3c0540649f1351f9c79a1caacbfc8b6186c4df349cbe77435
Contents?: true
Size: 1.57 KB
Versions: 25
Compression:
Stored size: 1.57 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Check Virtual Network Gateway Connection Exists Request class TestCheckVirtualNetworkGatewayConnectionExists < 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 end def test_check_vnet_gateway_connection_exists_success mocked_response = ApiStub::Requests::Network::VirtualNetworkGatewayConnection.create_virtual_network_gateway_connection_response(@network_client) @gateway_connections.stub :get, mocked_response do assert_equal @service.check_vnet_gateway_connection_exists('fog-test-rg', 'fog-test-gateway-connection'), true end end def test_check_vnet_gateway_connection_exists_failure response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceNotFound' }) } @gateway_connections.stub :get, response do assert !@service.check_vnet_gateway_connection_exists('fog-test-rg', 'fog-test-gateway-connection') end end def test_check_vnet_gateway_connection_exists_exception response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) } @gateway_connections.stub :get, response do assert_raises(RuntimeError) { @service.check_vnet_gateway_connection_exists('fog-test-rg', 'fog-test-gateway-connection') } end end end
Version data entries
25 entries across 25 versions & 3 rubygems