Sha256: b8ed46581267eafe6705cb6695b2a0e3a1f443e79d310f59a698417a35a6d5d1

Contents?: true

Size: 1.67 KB

Versions: 14

Compression:

Stored size: 1.67 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_app_gateway_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, '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_app_gateway_resource_group_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @gateways.stub :get, response do
      assert !@service.check_ag_exists('fog-test-rg', 'fogRM-rg')
    end
  end

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

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fog-azure-rm-0.6.0 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.5.3 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.5.2 test/requests/application_gateway/test_check_ag_exists.rb
far-gem-0.5.6 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.5.1 test/requests/application_gateway/test_check_ag_exists.rb
far-gem-0.5.5 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.5.0 test/requests/application_gateway/test_check_ag_exists.rb
far-gem-0.5.4 test/requests/application_gateway/test_check_ag_exists.rb
far-gem-0.5.3 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.4.9 test/requests/application_gateway/test_check_ag_exists.rb
far-gem-0.5.2 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.4.8 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.4.7 test/requests/application_gateway/test_check_ag_exists.rb
fog-azure-rm-0.4.6 test/requests/application_gateway/test_check_ag_exists.rb