Sha256: 56ea0bd6e5c9fd5b0f35747e3fc5d2dc14556ccc8a17e21cf672bfd5e3afc0d0

Contents?: true

Size: 854 Bytes

Versions: 3

Compression:

Stored size: 854 Bytes

Contents

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

# Test class for List Zones Request
class TestListZones < Minitest::Test
  def setup
    @service = Fog::DNS::AzureRM.new(credentials)
    @dns_client = @service.instance_variable_get(:@dns_client)
    @zones = @dns_client.zones
  end

  def test_list_zones_success
    mocked_response = ApiStub::Requests::DNS::Zone.zone_response(@dns_client)
    @zones.stub :list_in_subscription, mocked_response do
      assert_equal @service.list_zones, mocked_response
    end
  end

  def test_list_zones_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @zones.stub :list_in_subscription, response do
      assert_raises RuntimeError do
        @service.list_zones
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/dns/test_list_zones.rb
fog-azure-rm-0.1.0 test/requests/dns/test_list_zones.rb
fog-azure-rm-0.0.9 test/requests/dns/test_list_zones.rb