Sha256: 4402a71fb5e1d0f576e8159c223136e2910a0b9d16e1ea6bc8af256e0311baae

Contents?: true

Size: 1.73 KB

Versions: 3

Compression:

Stored size: 1.73 KB

Contents

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

# Test class for ExpressRouteCircuitPeering Collection
class TestExpressRouteCircuitPeerings < Minitest::Test
  def setup
    @service = Fog::Network::AzureRM.new(credentials)
    @circuit_peerings = Fog::Network::AzureRM::ExpressRouteCircuitPeerings.new(resource_group: 'fog-test-rg', circuit_name: 'testCircuit', service: @service)
    @network_client = @service.instance_variable_get(:@network_client)
  end

  def test_collection_methods
    methods = [
      :all,
      :get
    ]
    methods.each do |method|
      assert @circuit_peerings.respond_to? method
    end
  end

  def test_collection_attributes
    assert @circuit_peerings.respond_to? :resource_group
    assert @circuit_peerings.respond_to? :circuit_name
  end

  def test_all_method_response
    response = [ApiStub::Models::Network::ExpressRouteCircuitPeering.create_express_route_circuit_peering_response(@network_client)]
    @service.stub :list_express_route_circuit_peerings, response do
      assert_instance_of Fog::Network::AzureRM::ExpressRouteCircuitPeerings, @circuit_peerings.all
      assert @circuit_peerings.all.size >= 1
      @circuit_peerings.all.each do |circuit_peering|
        assert_instance_of Fog::Network::AzureRM::ExpressRouteCircuitPeering, circuit_peering
      end
    end
  end

  def test_get_method_response
    response = ApiStub::Models::Network::ExpressRouteCircuitPeering.create_express_route_circuit_peering_response(@network_client)
    @service.stub :get_express_route_circuit_peering, response do
      assert_instance_of Fog::Network::AzureRM::ExpressRouteCircuitPeering, @circuit_peerings.get('HaiderRG', 'AzurePrivatePeering', 'testCircuit')
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fog-azure-rm-0.0.8 test/models/network/test_express_route_circuit_peerings.rb
fog-azure-rm-0.0.6 test/models/network/test_express_route_circuit_peerings.rb
fog-azure-rm-0.0.5 test/models/network/test_express_route_circuit_peerings.rb