Sha256: 66ddbb00fa070813288df32c2e6e5f3c7ee72b3708352777546ec2fd1a7225f4
Contents?: true
Size: 1.24 KB
Versions: 14
Compression:
Stored size: 1.24 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 MsRestAzure::AzureOperationError do @service.list_record_sets('fog-test-rg', 'fog-test-zone') end end end end
Version data entries
14 entries across 14 versions & 2 rubygems