Sha256: 2519b95fe7413f4f2c01eca228a077f4e806061c1605ecc39950f5077960f19c

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

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

# Test class for List Express Route Circuits Request
class TestListExpressRouteCircuits < Minitest::Test
  def setup
    @service = Fog::Network::AzureRM.new(credentials)
    @network_client = @service.instance_variable_get(:@network_client)
    @circuit = @network_client.express_route_circuits
    @promise = Concurrent::Promise.execute do
    end
  end

  def test_list_express_route_circuits_success
    mocked_response = ApiStub::Requests::Network::ExpressRouteCircuit.list_express_route_circuit_response(@network_client)
    @circuit.stub :list, mocked_response do
      assert_equal @service.list_express_route_circuits('fogRM-rg'), mocked_response
    end
  end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/network/test_list_express_route_circuits.rb
fog-azure-rm-0.1.0 test/requests/network/test_list_express_route_circuits.rb
fog-azure-rm-0.0.9 test/requests/network/test_list_express_route_circuits.rb
fog-azure-rm-0.0.8 test/requests/network/test_list_express_route_circuits.rb
fog-azure-rm-0.0.6 test/requests/network/test_list_express_route_circuits.rb
fog-azure-rm-0.0.5 test/requests/network/test_list_express_route_circuits.rb