Sha256: a2218c0b47116898749d01e6d3db1d51c6410c3995dd5fc473f6c9fd4a1b4db7

Contents?: true

Size: 1.22 KB

Versions: 32

Compression:

Stored size: 1.22 KB

Contents

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

# Test class for List Record Sets Request
class TestListRecordSets < Minitest::Test
  def setup
    @service = Fog::DNS::AzureRM.new(credentials)
    @dns_client = @service.instance_variable_get(:@dns_client)
    @record_sets = @dns_client.record_sets
  end

  def test_list_record_sets_success
    mocked_response = [ApiStub::Requests::DNS::RecordSet.list_record_sets_response(@dns_client)]
    @record_sets.stub :list_by_dns_zone, mocked_response do
      assert_equal @service.list_record_sets('fog-test-rg', 'fog-test-zone'), mocked_response
    end
  end

  def test_list_record_sets_failure
    response = ApiStub::Requests::DNS::RecordSet.list_record_sets_response(@dns_client)
    @record_sets.stub :list_by_dns_zone, response do
      assert_raises ArgumentError do
        @service.list_record_sets('fog-test-rg')
      end
    end
  end

  def test_list_record_sets_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @record_sets.stub :list_by_dns_zone, response do
      assert_raises RuntimeError do
        @service.list_record_sets('fog-test-rg', 'fog-test-zone')
      end
    end
  end
end

Version data entries

32 entries across 32 versions & 4 rubygems

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