db620d33df
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
dotnet-build-and-test / dotnet-test-functions (push) Has been cancelled
dotnet-build-and-test / paths-filter (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Debug, windows-latest, net9.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, ubuntu-latest, net8.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build (Release, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-test (Release, integration, true, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-foundry-hosted-it (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test-check (push) Has been cancelled
dotnet-build-and-test / Integration Test Report (push) Has been cancelled
52 lines
2.2 KiB
C#
52 lines
2.2 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Tests declarative workflow exceptions.
|
|
/// </summary>
|
|
public sealed class DeclarativeWorkflowExceptionTest(ITestOutputHelper output) : WorkflowTest(output)
|
|
{
|
|
[Fact]
|
|
public void WorkflowExecutionException()
|
|
{
|
|
AssertDefault<DeclarativeActionException>(() => throw new DeclarativeActionException());
|
|
AssertMessage<DeclarativeActionException>((message) => throw new DeclarativeActionException(message));
|
|
AssertInner<DeclarativeActionException>((message, inner) => throw new DeclarativeActionException(message, inner));
|
|
}
|
|
|
|
[Fact]
|
|
public void WorkflowModelException()
|
|
{
|
|
AssertDefault<DeclarativeModelException>(() => throw new DeclarativeModelException());
|
|
AssertMessage<DeclarativeModelException>((message) => throw new DeclarativeModelException(message));
|
|
AssertInner<DeclarativeModelException>((message, inner) => throw new DeclarativeModelException(message, inner));
|
|
}
|
|
|
|
private static void AssertDefault<TException>(Action throwAction) where TException : Exception
|
|
{
|
|
TException exception = Assert.Throws<TException>(throwAction.Invoke);
|
|
Assert.NotEmpty(exception.Message);
|
|
Assert.Null(exception.InnerException);
|
|
}
|
|
|
|
private static void AssertMessage<TException>(Action<string> throwAction) where TException : Exception
|
|
{
|
|
const string Message = "Test exception message";
|
|
TException exception = Assert.Throws<TException>(() => throwAction.Invoke(Message));
|
|
Assert.Equal(Message, exception.Message);
|
|
Assert.Null(exception.InnerException);
|
|
}
|
|
|
|
private static void AssertInner<TException>(Action<string, Exception> throwAction) where TException : Exception
|
|
{
|
|
const string Message = "Test exception message";
|
|
NotSupportedException innerException = new("Inner exception message");
|
|
TException exception = Assert.Throws<TException>(() => throwAction.Invoke(Message, innerException));
|
|
Assert.Equal(Message, exception.Message);
|
|
Assert.Equal(innerException, exception.InnerException);
|
|
}
|
|
}
|