Files
agent-framework/dotnet/tests/Microsoft.Agents.Orchestration.UnitTests/ChatGroupExtensionsTests.cs
T
Stephen ToubandGitHub 456e7d1b65 Round 2 of cleanup for agent runtime and orchestrations (#164)
- Moved InProcessRuntime type into abstractions package and deleted InProcess package.
- Moved several members of IAgentRuntime to be extension methods instead, e.g. multiple GetActorAsync overloads.
- Added synchronous RegisterMessageHandler overloads and used them to avoid unnecessary async usage at call sites.
- Removed unnecessary surface area from InProcessRuntime, e.g. StopAsync, RunUntilIdleAsync, etc.
- Fixed spin loop in InProcessRuntime that would consume an entire core for the duration of the orchestration's operation.
- Removed a bunch of allocation from InProcessRuntime.
- Made a runtime optional for orchestrations, defaulting to using a temporary InProcessRuntime if none is provided.
- Removed custom delegate types from orchestrations.
- Consolidated namespaces.
- Used records to simplify message classes.
- Tweaked naming on AgentActor to make purpose of protected methods more clear.
- Removed invocation in AgentActor.InvokeAsync of empty update / isFinal parameter.
- Changed OrchestrationHandoffs to avoid needing to pass in agents duplicatively.
- Made various extension methods, such as those on OrchestrationHandoffsExtensions, into instance methods.
2025-07-11 11:12:18 -04:00

86 lines
2.2 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
using System;
namespace Microsoft.Agents.Orchestration.UnitTest;
public class ChatGroupExtensionsTests
{
[Fact]
public void FormatNamesWithMultipleAgentsReturnsCommaSeparatedList()
{
// Arrange
GroupChatTeam group = new()
{
{ "AgentOne", ("agent1", "First agent description") },
{ "AgentTwo", ("agent2", "Second agent description") },
{ "AgentThree", ("agent3", "Third agent description") }
};
// Act
string result = group.FormatNames();
// Assert
Assert.Equal("AgentOne,AgentTwo,AgentThree", result);
}
[Fact]
public void FormatNamesWithSingleAgentReturnsSingleName()
{
// Arrange
GroupChatTeam group = new()
{
{ "AgentOne", ("agent1", "First agent description") },
};
// Act
string result = group.FormatNames();
// Assert
Assert.Equal("AgentOne", result);
}
[Fact]
public void FormatNamesWithEmptyGroupReturnsEmptyString()
{
// Arrange
GroupChatTeam group = [];
// Act
string result = group.FormatNames();
// Assert
Assert.Equal(string.Empty, result);
}
[Fact]
public void FormatListWithMultipleAgentsReturnsMarkdownList()
{
// Arrange
GroupChatTeam group = new()
{
{ "AgentOne", ("agent1", "First agent description") },
{ "AgentTwo", ("agent2", "Second agent description") },
{ "AgentThree", ("agent3", "Third agent description") }
};
// Act
string result = group.FormatList();
// Assert
string expected = $"- AgentOne: First agent description{Environment.NewLine}- AgentTwo: Second agent description{Environment.NewLine}- AgentThree: Third agent description";
Assert.Equal(expected, result);
}
[Fact]
public void FormatListWithEmptyGroupReturnsEmptyString()
{
// Arrange
GroupChatTeam group = [];
// Act & Assert
Assert.Equal(string.Empty, group.FormatNames());
Assert.Equal(string.Empty, group.FormatList());
}
}