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

Version Path
fog-azure-rm-0.4.0 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.9 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.8 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.7 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.6 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.5 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.4 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-temp-0.0.4 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-temp-0.0.3 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.3 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-temp-0.0.2 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-temp-0.0.1 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.2 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-downgraded-0.3.1 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.1 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-downgraded-0.3.0 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.3.0 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.7 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.6 test/requests/network/test_check_vnet_gateway_connection_exists.rb
fog-azure-rm-0.2.5 test/requests/network/test_check_vnet_gateway_connection_exists.rb