db620d33df
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
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
88 lines
3.1 KiB
C#
88 lines
3.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using A2A;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace Microsoft.Agents.AI.A2A.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Unit tests for the <see cref="ChatMessageExtensions"/> class.
|
|
/// </summary>
|
|
public sealed class ChatMessageExtensionsTests
|
|
{
|
|
[Fact]
|
|
public void ToA2AMessage_WithMessageContainingMultipleContents_AddsAllContentsAsParts()
|
|
{
|
|
// Arrange
|
|
var contents = new List<AIContent>
|
|
{
|
|
new UriContent("https://example.com/report.pdf", "file/pdf"),
|
|
new TextContent("please summarize the file content"),
|
|
new TextContent("and send it to me over email")
|
|
};
|
|
var chatMessage = new ChatMessage(ChatRole.User, contents);
|
|
var messages = new List<ChatMessage> { chatMessage };
|
|
|
|
// Act
|
|
var a2aMessage = messages.ToA2AMessage();
|
|
|
|
// Assert
|
|
Assert.NotNull(a2aMessage);
|
|
Assert.NotNull(a2aMessage.MessageId);
|
|
Assert.NotEmpty(a2aMessage.MessageId);
|
|
|
|
Assert.Equal(Role.User, a2aMessage.Role);
|
|
|
|
Assert.NotNull(a2aMessage.Parts);
|
|
Assert.Equal(3, a2aMessage.Parts.Count);
|
|
|
|
Assert.Equal(PartContentCase.Url, a2aMessage.Parts[0].ContentCase);
|
|
Assert.Equal("https://example.com/report.pdf", a2aMessage.Parts[0].Url);
|
|
|
|
Assert.Equal(PartContentCase.Text, a2aMessage.Parts[1].ContentCase);
|
|
Assert.Equal("please summarize the file content", a2aMessage.Parts[1].Text);
|
|
|
|
Assert.Equal(PartContentCase.Text, a2aMessage.Parts[2].ContentCase);
|
|
Assert.Equal("and send it to me over email", a2aMessage.Parts[2].Text);
|
|
}
|
|
|
|
[Fact]
|
|
public void ToA2AMessage_WithMixedMessages_AddsAllContentsAsParts()
|
|
{
|
|
// Arrange
|
|
var firstMessage = new ChatMessage(ChatRole.User, [
|
|
new UriContent("https://example.com/report.pdf", "file/pdf"),
|
|
]);
|
|
var secondMessage = new ChatMessage(ChatRole.User, [
|
|
new TextContent("please summarize the file content")
|
|
]);
|
|
var thirdMessage = new ChatMessage(ChatRole.User, [
|
|
new TextContent("and send it to me over email")
|
|
]);
|
|
var messages = new List<ChatMessage> { firstMessage, secondMessage, thirdMessage };
|
|
|
|
// Act
|
|
var a2aMessage = messages.ToA2AMessage();
|
|
|
|
// Assert
|
|
Assert.NotNull(a2aMessage);
|
|
Assert.NotNull(a2aMessage.MessageId);
|
|
Assert.NotEmpty(a2aMessage.MessageId);
|
|
|
|
Assert.Equal(Role.User, a2aMessage.Role);
|
|
|
|
Assert.NotNull(a2aMessage.Parts);
|
|
Assert.Equal(3, a2aMessage.Parts.Count);
|
|
|
|
Assert.Equal(PartContentCase.Url, a2aMessage.Parts[0].ContentCase);
|
|
Assert.Equal("https://example.com/report.pdf", a2aMessage.Parts[0].Url);
|
|
|
|
Assert.Equal(PartContentCase.Text, a2aMessage.Parts[1].ContentCase);
|
|
Assert.Equal("please summarize the file content", a2aMessage.Parts[1].Text);
|
|
|
|
Assert.Equal(PartContentCase.Text, a2aMessage.Parts[2].ContentCase);
|
|
Assert.Equal("and send it to me over email", a2aMessage.Parts[2].Text);
|
|
}
|
|
}
|