Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pass multiple errors #4054

Merged
merged 9 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace Microsoft.Testing.Platform.OutputDevice.Terminal;

internal class ExceptionFlattener
{
internal static FlatException[] Flatten(string? errorMessage, Exception? exception)
{
if (errorMessage is null && exception is null)
{
return Array.Empty<FlatException>();
}

List<Exception> exceptions = new();

string? message = !RoslynString.IsNullOrWhiteSpace(errorMessage) ? errorMessage : exception?.Message;
string? type = exception?.GetType().FullName;
string? stackTrace = exception?.StackTrace;
var flatException = new FlatException(message, type, stackTrace);

List<FlatException> flatExceptions = new()
{
flatException,
};

// Add all inner exceptions. This will flatten top level AggregateExceptions,
// and all AggregateExceptions that are directly in AggregateExceptions, but won't expand
// AggregateExceptions that are in non-aggregate exception inner exceptions.
IEnumerable<Exception?> aggregateExceptions = exception switch
{
AggregateException aggregate => aggregate.Flatten().InnerExceptions,
_ => [exception?.InnerException],
};

foreach (Exception? aggregate in aggregateExceptions)
{
Exception? currentException = aggregate;
while (currentException is not null)
{
flatExceptions.Add(new FlatException(
aggregate?.Message,
aggregate?.GetType().FullName,
aggregate?.StackTrace));

currentException = currentException.InnerException;
}
}

return flatExceptions.ToArray();
}
}

internal record FlatException(string? ErrorMessage, string? ErrorType, string? StackTrace);
Loading
Loading