mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
958e6d27ce
* Initial plan * Add unit tests for Microsoft.Agents.AI.OpenAI to improve code coverage Co-authored-by: rogerbarreto <19890735+rogerbarreto@users.noreply.github.com> * Address code review feedback: remove unused using directives Co-authored-by: rogerbarreto <19890735+rogerbarreto@users.noreply.github.com> * Fix format issues: file encoding and remove unused using directives Co-authored-by: rogerbarreto <19890735+rogerbarreto@users.noreply.github.com> * Fix redundant cast error by using named parameter Co-authored-by: rogerbarreto <19890735+rogerbarreto@users.noreply.github.com> * Remove excessive inline comments per PR review feedback --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: rogerbarreto <19890735+rogerbarreto@users.noreply.github.com>
110 lines
3.6 KiB
C#
110 lines
3.6 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.ClientModel;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.AI;
|
|
using OpenAI.Chat;
|
|
|
|
namespace Microsoft.Agents.AI.OpenAI.UnitTests.ChatClient;
|
|
|
|
/// <summary>
|
|
/// Unit tests for the <see cref="AsyncStreamingChatCompletionUpdateCollectionResult"/> class.
|
|
/// </summary>
|
|
public sealed class AsyncStreamingChatCompletionUpdateCollectionResultTests
|
|
{
|
|
/// <summary>
|
|
/// Verify that GetContinuationToken returns null.
|
|
/// </summary>
|
|
[Fact]
|
|
public void GetContinuationToken_ReturnsNull()
|
|
{
|
|
// Arrange
|
|
IAsyncEnumerable<AgentResponseUpdate> updates = CreateTestUpdatesAsync();
|
|
AsyncCollectionResult<StreamingChatCompletionUpdate> collectionResult = new AsyncStreamingChatCompletionUpdateCollectionResult(updates);
|
|
|
|
// Act
|
|
ContinuationToken? token = collectionResult.GetContinuationToken(null!);
|
|
|
|
// Assert
|
|
Assert.Null(token);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verify that GetRawPagesAsync returns a single page.
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task GetRawPagesAsync_ReturnsSinglePageAsync()
|
|
{
|
|
// Arrange
|
|
IAsyncEnumerable<AgentResponseUpdate> updates = CreateTestUpdatesAsync();
|
|
AsyncCollectionResult<StreamingChatCompletionUpdate> collectionResult = new AsyncStreamingChatCompletionUpdateCollectionResult(updates);
|
|
|
|
// Act
|
|
List<ClientResult> pages = [];
|
|
await foreach (ClientResult page in collectionResult.GetRawPagesAsync())
|
|
{
|
|
pages.Add(page);
|
|
}
|
|
|
|
// Assert
|
|
Assert.Single(pages);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verify that iterating through the collection yields streaming updates.
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task IterateCollection_YieldsUpdatesAsync()
|
|
{
|
|
// Arrange
|
|
IAsyncEnumerable<AgentResponseUpdate> updates = CreateTestUpdatesAsync();
|
|
AsyncCollectionResult<StreamingChatCompletionUpdate> collectionResult = new AsyncStreamingChatCompletionUpdateCollectionResult(updates);
|
|
|
|
// Act
|
|
List<StreamingChatCompletionUpdate> results = [];
|
|
await foreach (StreamingChatCompletionUpdate update in collectionResult)
|
|
{
|
|
results.Add(update);
|
|
}
|
|
|
|
// Assert
|
|
Assert.Single(results);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verify that iterating through the collection with multiple updates yields all updates.
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task IterateCollection_WithMultipleUpdates_YieldsAllUpdatesAsync()
|
|
{
|
|
// Arrange
|
|
IAsyncEnumerable<AgentResponseUpdate> updates = CreateMultipleTestUpdatesAsync();
|
|
AsyncCollectionResult<StreamingChatCompletionUpdate> collectionResult = new AsyncStreamingChatCompletionUpdateCollectionResult(updates);
|
|
|
|
// Act
|
|
List<StreamingChatCompletionUpdate> results = [];
|
|
await foreach (StreamingChatCompletionUpdate update in collectionResult)
|
|
{
|
|
results.Add(update);
|
|
}
|
|
|
|
// Assert
|
|
Assert.Equal(3, results.Count);
|
|
}
|
|
|
|
private static async IAsyncEnumerable<AgentResponseUpdate> CreateTestUpdatesAsync()
|
|
{
|
|
yield return new AgentResponseUpdate(ChatRole.Assistant, "test");
|
|
await Task.CompletedTask;
|
|
}
|
|
|
|
private static async IAsyncEnumerable<AgentResponseUpdate> CreateMultipleTestUpdatesAsync()
|
|
{
|
|
yield return new AgentResponseUpdate(ChatRole.Assistant, "first");
|
|
yield return new AgentResponseUpdate(ChatRole.Assistant, "second");
|
|
yield return new AgentResponseUpdate(ChatRole.Assistant, "third");
|
|
await Task.CompletedTask;
|
|
}
|
|
}
|