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
63 lines
2.4 KiB
C#
63 lines
2.4 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Agents.AI.Workflows.Declarative.Events;
|
|
using Microsoft.Extensions.AI;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.Events;
|
|
|
|
/// <summary>
|
|
/// Verify <see cref="ExternalInputRequest"/> class
|
|
/// </summary>
|
|
public sealed class ExternalInputRequestTest(ITestOutputHelper output) : EventTest(output)
|
|
{
|
|
[Fact]
|
|
public void VerifySerializationWithText()
|
|
{
|
|
// Arrange
|
|
ExternalInputRequest source = new(new AgentResponse(new ChatMessage(ChatRole.User, "Wassup?")));
|
|
|
|
// Act
|
|
ExternalInputRequest copy = VerifyEventSerialization(source);
|
|
|
|
// Assert
|
|
ChatMessage messageCopy = Assert.Single(source.AgentResponse.Messages);
|
|
AssertMessage(messageCopy, copy.AgentResponse.Messages[0]);
|
|
}
|
|
|
|
[Fact]
|
|
public void VerifySerializationWithRequests()
|
|
{
|
|
// Arrange
|
|
ExternalInputRequest source =
|
|
new(new AgentResponse(
|
|
new ChatMessage(
|
|
ChatRole.Assistant,
|
|
[
|
|
new McpServerToolApprovalRequestContent("call1", new McpServerToolCallContent("call1", "testmcp", "server-name")),
|
|
new FunctionApprovalRequestContent("call2", new FunctionCallContent("call2", "result1")),
|
|
new FunctionCallContent("call3", "myfunc"),
|
|
new TextContent("Heya"),
|
|
])));
|
|
|
|
// Act
|
|
ExternalInputRequest copy = VerifyEventSerialization(source);
|
|
|
|
// Assert
|
|
ChatMessage messageCopy = Assert.Single(source.AgentResponse.Messages);
|
|
Assert.Equal(messageCopy.Contents.Count, copy.AgentResponse.Messages[0].Contents.Count);
|
|
|
|
McpServerToolApprovalRequestContent mcpRequest = AssertContent<McpServerToolApprovalRequestContent>(messageCopy);
|
|
Assert.Equal("call1", mcpRequest.Id);
|
|
|
|
FunctionApprovalRequestContent functionRequest = AssertContent<FunctionApprovalRequestContent>(messageCopy);
|
|
Assert.Equal("call2", functionRequest.Id);
|
|
|
|
FunctionCallContent functionCall = AssertContent<FunctionCallContent>(messageCopy);
|
|
Assert.Equal("call3", functionCall.CallId);
|
|
|
|
TextContent textContent = AssertContent<TextContent>(messageCopy);
|
|
Assert.Equal("Heya", textContent.Text);
|
|
}
|
|
}
|