< Summary

Class:Azure.Core.Pipeline.ClientDiagnostics
Assembly:Azure.Analytics.Synapse.Spark
File(s):C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\Shared\ClientDiagnostics.cs
Covered lines:12
Uncovered lines:59
Coverable lines:71
Total lines:192
Line coverage:16.9% (12 of 71)
Covered branches:4
Total branches:32
Branch coverage:12.5% (4 of 32)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
CreateRequestFailedExceptionAsync()-0%100%
CreateRequestFailedException(...)-0%100%
CreateRequestFailedExceptionWithContent(...)-0%0%
CreateRequestFailedMessageAsync(...)-0%100%
CreateRequestFailedMessage(...)-0%100%
CreateRequestFailedMessageAsync()-0%100%
CreateRequestFailedMessageWithContent(...)-0%0%
ReadContentAsync()-0%0%
GetResourceProviderNamespace(...)-80%66.67%

File(s)

C:\Git\azure-sdk-for-net\sdk\core\Azure.Core\src\Shared\ClientDiagnostics.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Diagnostics;
 7using System.Globalization;
 8using System.IO;
 9using System.Linq;
 10using System.Reflection;
 11using System.Text;
 12using System.Threading.Tasks;
 13using Azure.Core.Pipeline;
 14
 15#nullable enable
 16
 17namespace Azure.Core.Pipeline
 18{
 19    internal sealed partial class ClientDiagnostics : DiagnosticScopeFactory
 20    {
 21        private const string DefaultMessage = "Service request failed.";
 22
 23        private readonly HttpMessageSanitizer _sanitizer;
 1624        public ClientDiagnostics(ClientOptions options) : base(
 1625            options.GetType().Namespace!,
 1626            GetResourceProviderNamespace(options.GetType().Assembly),
 1627            options.Diagnostics.IsDistributedTracingEnabled)
 28        {
 1629            _sanitizer = new HttpMessageSanitizer(
 1630                options.Diagnostics.LoggedQueryParameters.ToArray(),
 1631                options.Diagnostics.LoggedHeaderNames.ToArray());
 1632        }
 33
 34        /// <summary>
 35        /// Partial method that can optionally be defined to extract the error
 36        /// message, code, and details in a service specific manner.
 37        /// </summary>
 38        /// <param name="content">The error content.</param>
 39        /// <param name="message">The error message.</param>
 40        /// <param name="errorCode">The error code.</param>
 41        /// <param name="additionalInfo">Additional error details.</param>
 42        partial void ExtractFailureContent(
 43            string? content,
 44            ref string? message,
 45            ref string? errorCode,
 46            ref IDictionary<string, string>? additionalInfo);
 47
 48        public async ValueTask<RequestFailedException> CreateRequestFailedExceptionAsync(Response response, string? mess
 49        {
 050            var content = await ReadContentAsync(response, true).ConfigureAwait(false);
 51            ExtractFailureContent(content, ref message, ref errorCode, ref additionalInfo);
 052            return CreateRequestFailedExceptionWithContent(response, message, content, errorCode, additionalInfo, innerE
 053        }
 54
 55        public RequestFailedException CreateRequestFailedException(Response response, string? message = null, string? er
 56        {
 057            string? content = ReadContentAsync(response, false).EnsureCompleted();
 58            ExtractFailureContent(content, ref message, ref errorCode, ref additionalInfo);
 059            return CreateRequestFailedExceptionWithContent(response, message, content, errorCode, additionalInfo, innerE
 60        }
 61
 62        public RequestFailedException CreateRequestFailedExceptionWithContent(
 63            Response response,
 64            string? message = null,
 65            string? content = null,
 66            string? errorCode = null,
 67            IDictionary<string, string>? additionalInfo = null,
 68            Exception? innerException = null)
 69        {
 070            var formatMessage = CreateRequestFailedMessageWithContent(response, message, content, errorCode, additionalI
 071            var exception = new RequestFailedException(response.Status, formatMessage, errorCode, innerException);
 72
 073            if (additionalInfo != null)
 74            {
 075                foreach (KeyValuePair<string, string> keyValuePair in additionalInfo)
 76                {
 077                    exception.Data.Add(keyValuePair.Key, keyValuePair.Value);
 78                }
 79            }
 80
 081            return exception;
 82        }
 83
 84        public ValueTask<string> CreateRequestFailedMessageAsync(Response response, string? message = null, string? erro
 85        {
 086            return CreateRequestFailedMessageAsync(response, message, errorCode, additionalInfo, true);
 87        }
 88
 89        public string CreateRequestFailedMessage(Response response, string? message = null, string? errorCode = null, ID
 90        {
 091            return CreateRequestFailedMessageAsync(response, message, errorCode, additionalInfo, false).EnsureCompleted(
 92        }
 93
 94        private async ValueTask<string> CreateRequestFailedMessageAsync(Response response, string? message, string? erro
 95        {
 096            var content = await ReadContentAsync(response, async).ConfigureAwait(false);
 97
 098            return CreateRequestFailedMessageWithContent(response, message, content, errorCode, additionalInfo);
 099        }
 100
 101        public string CreateRequestFailedMessageWithContent(Response response, string? message, string? content, string?
 102        {
 0103            StringBuilder messageBuilder = new StringBuilder()
 0104                .AppendLine(message ?? DefaultMessage)
 0105                .Append("Status: ")
 0106                .Append(response.Status.ToString(CultureInfo.InvariantCulture));
 107
 0108            if (!string.IsNullOrEmpty(response.ReasonPhrase))
 109            {
 0110                messageBuilder.Append(" (")
 0111                    .Append(response.ReasonPhrase)
 0112                    .AppendLine(")");
 113            }
 114            else
 115            {
 0116                messageBuilder.AppendLine();
 117            }
 118
 0119            if (!string.IsNullOrWhiteSpace(errorCode))
 120            {
 0121                messageBuilder.Append("ErrorCode: ")
 0122                    .Append(errorCode)
 0123                    .AppendLine();
 124            }
 125
 0126            if (additionalInfo != null && additionalInfo.Count > 0)
 127            {
 0128                messageBuilder
 0129                    .AppendLine()
 0130                    .AppendLine("Additional Information:");
 0131                foreach (KeyValuePair<string, string> info in additionalInfo)
 132                {
 0133                    messageBuilder
 0134                        .Append(info.Key)
 0135                        .Append(": ")
 0136                        .AppendLine(info.Value);
 137                }
 138            }
 139
 0140            if (content != null)
 141            {
 0142                messageBuilder
 0143                    .AppendLine()
 0144                    .AppendLine("Content:")
 0145                    .AppendLine(content);
 146            }
 147
 0148            messageBuilder
 0149                .AppendLine()
 0150                .AppendLine("Headers:");
 151
 0152            foreach (HttpHeader responseHeader in response.Headers)
 153            {
 0154                string headerValue = _sanitizer.SanitizeHeader(responseHeader.Name, responseHeader.Value);
 0155                messageBuilder.AppendLine($"{responseHeader.Name}: {headerValue}");
 156            }
 157
 0158            return messageBuilder.ToString();
 159        }
 160
 161        private static async ValueTask<string?> ReadContentAsync(Response response, bool async)
 162        {
 0163            string? content = null;
 164
 0165            if (response.ContentStream != null &&
 0166                ContentTypeUtilities.TryGetTextEncoding(response.Headers.ContentType, out var encoding))
 167            {
 0168                using (var streamReader = new StreamReader(response.ContentStream, encoding))
 169                {
 0170                    content = async ? await streamReader.ReadToEndAsync().ConfigureAwait(false) : streamReader.ReadToEnd
 0171                }
 172            }
 173
 0174            return content;
 0175        }
 176
 177        internal static string? GetResourceProviderNamespace(Assembly assembly)
 178        {
 208179            foreach (var customAttribute in assembly.GetCustomAttributes(true))
 180            {
 181                // Weak bind internal shared type
 96182                var attributeType = customAttribute.GetType();
 96183                if (attributeType.Name == "AzureResourceProviderNamespaceAttribute")
 184                {
 16185                    return attributeType.GetProperty("ResourceProviderNamespace")?.GetValue(customAttribute) as string;
 186                }
 187            }
 188
 0189            return null;
 190        }
 191    }
 192}