Sha256: fe3185e7f6b91b19b1ea8d1d372a87cc5a23a6ffbf333b0a1801c5d71df0a1ed

Contents?: true

Size: 912 Bytes

Versions: 3

Compression:

Stored size: 912 Bytes

Contents

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

# Test class for Start Application Gateway Request
class TestStartApplicationGateway < 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_start_application_gateway_success
    @gateways.stub :start, nil do
      assert_equal @service.start_application_gateway('test-rg', 'test-ag'), true
    end
  end

  def test_start_application_gateway_exception_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @gateways.stub :start, response do
      assert_raises RuntimeError do
        @service.start_application_gateway('test-rg', 'test-ag')
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.1.0 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.0.9 test/requests/application_gateway/test_start_application_gateway.rb