Sha256: 8372ef502b53116b025965b719d06c5a19ad0c38b1af204ed0cbf12426347b96

Contents?: true

Size: 887 Bytes

Versions: 33

Compression:

Stored size: 887 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

33 entries across 33 versions & 4 rubygems

Version Path
fog-azure-rm-0.4.5 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-temp-0.0.5 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.4.4 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.4.3 test/requests/application_gateway/test_start_application_gateway.rb
far-gem-0.5.1 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.4.2 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.4.1 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.4.0 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.9 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.8 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.7 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.6 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.5 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.4 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-temp-0.0.4 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-temp-0.0.3 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.3 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-temp-0.0.2 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-temp-0.0.1 test/requests/application_gateway/test_start_application_gateway.rb
fog-azure-rm-0.3.2 test/requests/application_gateway/test_start_application_gateway.rb