Some checks failed
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
dotnet-build-and-test / paths-filter (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test (Debug, windows-latest, net9.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test (Release, integration, true, ubuntu-latest, net10.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test (Release, integration, true, windows-latest, net472) (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test (Release, ubuntu-latest, net8.0) (push) Has been cancelled
dotnet-build-and-test / dotnet-build-and-test-check (push) Has been cancelled
Python - Merge - Tests / paths-filter (push) Has been cancelled
Python - Merge - Tests / Python Tests - Core (integration, ubuntu-latest, 3.10) (push) Has been cancelled
Python - Merge - Tests / Python Tests - Azure AI (integration, ubuntu-latest, 3.10) (push) Has been cancelled
Python - Merge - Tests / python-integration-tests-check (push) Has been cancelled
Python - Lab Tests / paths-filter (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (ubuntu-latest, 3.10) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (ubuntu-latest, 3.11) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (ubuntu-latest, 3.12) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (ubuntu-latest, 3.13) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (ubuntu-latest, 3.14) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (windows-latest, 3.10) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (windows-latest, 3.11) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (windows-latest, 3.12) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (windows-latest, 3.13) (push) Has been cancelled
Python - Lab Tests / Python Lab Tests (windows-latest, 3.14) (push) Has been cancelled
Check .md links / markdown-link-check (push) Has been cancelled
88 lines
2.5 KiB
C#
88 lines
2.5 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="A2AAIContentExtensions"/> class.
|
|
/// </summary>
|
|
public sealed class A2AAIContentExtensionsTests
|
|
{
|
|
[Fact]
|
|
public void ToA2AParts_WithEmptyCollection_ReturnsNull()
|
|
{
|
|
// Arrange
|
|
var emptyContents = new List<AIContent>();
|
|
|
|
// Act
|
|
var result = emptyContents.ToParts();
|
|
|
|
// Assert
|
|
Assert.Null(result);
|
|
}
|
|
|
|
[Fact]
|
|
public void ToA2AParts_WithMultipleContents_ReturnsListWithAllParts()
|
|
{
|
|
// Arrange
|
|
var contents = new List<AIContent>
|
|
{
|
|
new TextContent("First text"),
|
|
new UriContent("https://example.com/file1.txt", "file/txt"),
|
|
new TextContent("Second text"),
|
|
};
|
|
|
|
// Act
|
|
var result = contents.ToParts();
|
|
|
|
// Assert
|
|
Assert.NotNull(result);
|
|
Assert.Equal(3, result.Count);
|
|
|
|
var firstTextPart = Assert.IsType<TextPart>(result[0]);
|
|
Assert.Equal("First text", firstTextPart.Text);
|
|
|
|
var filePart = Assert.IsType<FilePart>(result[1]);
|
|
Assert.Equal("https://example.com/file1.txt", filePart.File.Uri?.ToString());
|
|
|
|
var secondTextPart = Assert.IsType<TextPart>(result[2]);
|
|
Assert.Equal("Second text", secondTextPart.Text);
|
|
}
|
|
|
|
[Fact]
|
|
public void ToA2AParts_WithMixedSupportedAndUnsupportedContent_IgnoresUnsupportedContent()
|
|
{
|
|
// Arrange
|
|
var contents = new List<AIContent>
|
|
{
|
|
new TextContent("First text"),
|
|
new MockAIContent(), // Unsupported - should be ignored
|
|
new UriContent("https://example.com/file.txt", "file/txt"),
|
|
new MockAIContent(), // Unsupported - should be ignored
|
|
new TextContent("Second text")
|
|
};
|
|
|
|
// Act
|
|
var result = contents.ToParts();
|
|
|
|
// Assert
|
|
Assert.NotNull(result);
|
|
Assert.Equal(3, result.Count);
|
|
|
|
var firstTextPart = Assert.IsType<TextPart>(result[0]);
|
|
Assert.Equal("First text", firstTextPart.Text);
|
|
|
|
var filePart = Assert.IsType<FilePart>(result[1]);
|
|
Assert.Equal("https://example.com/file.txt", filePart.File.Uri?.ToString());
|
|
|
|
var secondTextPart = Assert.IsType<TextPart>(result[2]);
|
|
Assert.Equal("Second text", secondTextPart.Text);
|
|
}
|
|
|
|
// Mock class for testing unsupported scenarios
|
|
private sealed class MockAIContent : AIContent;
|
|
}
|