Sha256: 239c253528efbcda9edd7a7f34b2cec86a0c0aaa9ac3f491ae5fdf4591587a0e

Contents?: true

Size: 1005 Bytes

Versions: 33

Compression:

Stored size: 1005 Bytes

Contents

require File.expand_path '../../test_helper', __dir__

# Test class for List Application Gateway Request
class TestListApplicationGateways < Minitest::Test
  def setup
    @service = Fog::ApplicationGateway::AzureRM.new(credentials)
    @gateway_client = @service.instance_variable_get(:@network_client)
    @gateways = @gateway_client.application_gateways
  end

  def test_list_application_gateways_success
    mocked_response = ApiStub::Requests::ApplicationGateway::Gateway.list_application_gateway_response(@gateway_client)
    @gateways.stub :list_as_lazy, mocked_response do
      assert_equal @service.list_application_gateways('fogRM-rg'), mocked_response.value
    end
  end

  def test_list_application_gateways_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @gateways.stub :list_as_lazy, response do
      assert_raises(RuntimeError) { @service.list_application_gateways('fogRM-rg') }
    end
  end
end

Version data entries

33 entries across 33 versions & 4 rubygems

Version Path
fog-azure-rm-downgraded-0.3.1 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.3.1 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-downgraded-0.3.0 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.3.0 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.7 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.6 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.5 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.4 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.3 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.2 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.1 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.2.0 test/requests/application_gateway/test_list_application_gateways.rb
fog-azure-rm-0.1.2 test/requests/application_gateway/test_list_application_gateways.rb