Sha256: b79b40bc031f4f0da4e87f39d933c1afd908aea23c7d32cc6febf21e67937175

Contents?: true

Size: 1.26 KB

Versions: 25

Compression:

Stored size: 1.26 KB

Contents

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

# Test class for Check Application Gateway Exists Request
class TestCheckAGExists < 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_check_ag_exists_success
    mocked_response = ApiStub::Requests::ApplicationGateway::Gateway.create_application_gateway_response(@gateway_client)
    @gateways.stub :get, mocked_response do
      assert @service.check_ag_exists('fog-test-rg', 'fogRM-rg')
    end
  end

  def test_check_ag_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceNotFound' }) }
    @gateways.stub :get, response do
      assert !@service.check_ag_exists('fog-test-rg', 'fogRM-rg')
    end
  end

  def test_check_ag_exists_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @gateways.stub :get, response do
      assert_raises(RuntimeError) { @service.check_ag_exists('fog-test-rg', 'fogRM-rg') }
    end
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
fog-azure-rm-0.2.4 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.2.3 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.2.2 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.2.1 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.2.0 test/requests/application_gateway/test_check_ag_exists.rb