mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Linq;
|
|
using System.Text.Json;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Base class for event tests.
|
|
/// </summary>
|
|
public abstract class EventTest(ITestOutputHelper output) : WorkflowTest(output)
|
|
{
|
|
protected static TEvent VerifyEventSerialization<TEvent>(TEvent source)
|
|
{
|
|
string? text = JsonSerializer.Serialize(source, AIJsonUtilities.DefaultOptions);
|
|
Assert.NotNull(text);
|
|
TEvent? copy = JsonSerializer.Deserialize<TEvent>(text, AIJsonUtilities.DefaultOptions);
|
|
Assert.NotNull(copy);
|
|
return copy;
|
|
}
|
|
|
|
protected static void AssertMessage(ChatMessage source, ChatMessage copy)
|
|
{
|
|
Assert.Equal(source.Role, copy.Role);
|
|
Assert.Equal(source.Text, copy.Text);
|
|
Assert.Equal(source.Contents.Count, copy.Contents.Count);
|
|
}
|
|
|
|
protected static TContent AssertContent<TContent>(ChatMessage message) where TContent : AIContent
|
|
{
|
|
TContent[] contents = message.Contents.OfType<TContent>().ToArray();
|
|
return Assert.Single(contents);
|
|
}
|
|
}
|