mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
60af59ba8b
* adds devui integration and samples
* adds unit tests for devui integration
* fix: correct formatting of copyright notice in unit test files
* fixes formatting issues
* fixes build for net8 target
* fixes formatting errors on test apphost
* adds copyright notice to multiple files and removes unnecessary using directives
* Update dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update dotnet/tests/Aspire.Hosting.AgentFramework.DevUI.UnitTests/Aspire.Hosting.AgentFramework.DevUI.UnitTests.csproj
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/DevUIIntegration.AppHost.csproj
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Refactor project files to use TargetFrameworks instead of TargetFramework for multi-targeting support; add optional port property to DevUIResource class.
* Add unit tests for DevUIAggregatorHostedService; refactor project files for TargetFrameworks support
* Refactor project files to use TargetFrameworks for multi-targeting support in DevUIIntegration samples
* Remove unnecessary using directive for Aspire.Hosting in DevUIAggregatorHostedServiceTests
* merge
* fixes Conversation routing for non-first backends
* add documentation for devui integration sample
* update project references in solution file for improved integration
* fixes package versions post merge
* move Aspire.Hosting.AgentFramework.DevUI to dotnet/src
Move the project from aspire-integration/ to src/ to be consistent
with the location of all other projects in the repo.
* move DevUI sample to samples/05-end-to-end/DevUIAspireIntegration
Move the sample from samples/DevUIIntegration/ to
samples/05-end-to-end/DevUIAspireIntegration/ to match the location
of other end-to-end samples.
* remove unnecessary net472 framework condition from sample csproj files
These projects only target net10.0, so the
Condition="'$(TargetFramework)' != 'net472'" on ItemGroup is unnecessary.
* update sample model name from gpt-4.1 to gpt-5.4
Use a more up-to-date model name in the DevUI integration samples.
* Revert "remove unnecessary net472 framework condition from sample csproj files"
This reverts commit 08cf41253b.
* fix: use TargetFrameworks to override multi-targeting from Directory.Build.props
The parent Directory.Build.props sets TargetFrameworks to net10.0;net472,
which overrides the singular TargetFramework in each csproj. Use the plural
TargetFrameworks property set to net10.0 only to properly override it, and
remove the now-unnecessary net472 condition on ItemGroup.
* fixes aspire config
* fix: update Microsoft.Extensions packages to version 10.0.1
* Address Copilot review feedback on DevUI Aspire integration
- Fix request body dropping in ProxyConversationsAsync: always read the
body when ContentLength > 0 before routing, then pass it through to
all proxy calls (previously null was passed when backend was resolved
from query param or conversation map)
- Fix resource leak: dispose aggregator on startup failure in catch block
- Fix XML docs: accurately describe embedded resource serving behavior
- Remove reflection from DevUIResourceTests (InternalsVisibleTo already set)
- Make sensitive telemetry conditional on Development environment in samples
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* fix: update chat client version to gpt41 in both EditorAgent and WriterAgent
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Roger Barreto <19890735+rogerbarreto@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
185 lines
4.7 KiB
C#
185 lines
4.7 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Aspire.Hosting.AgentFramework.DevUI.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Unit tests for the <see cref="AgentEntityInfo"/> record.
|
|
/// </summary>
|
|
public class AgentEntityInfoTests
|
|
{
|
|
#region Constructor Tests
|
|
|
|
/// <summary>
|
|
/// Verifies that the Id property is set from the constructor parameter.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Constructor_WithId_SetsIdProperty()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent");
|
|
|
|
// Assert
|
|
Assert.Equal("test-agent", info.Id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that the Description property is set when provided.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Constructor_WithDescription_SetsDescriptionProperty()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent", "A test agent");
|
|
|
|
// Assert
|
|
Assert.Equal("A test agent", info.Description);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that the Description property is null when not provided.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Constructor_WithoutDescription_DescriptionIsNull()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent");
|
|
|
|
// Assert
|
|
Assert.Null(info.Description);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Default Value Tests
|
|
|
|
/// <summary>
|
|
/// Verifies that Name defaults to the Id value when not explicitly set.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Name_NotSet_DefaultsToId()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent");
|
|
|
|
// Assert
|
|
Assert.Equal("test-agent", info.Name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that Name can be overridden with a custom value.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Name_Set_ReturnsCustomValue()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent") { Name = "Custom Name" };
|
|
|
|
// Assert
|
|
Assert.Equal("Custom Name", info.Name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that Type defaults to "agent".
|
|
/// </summary>
|
|
[Fact]
|
|
public void Type_NotSet_DefaultsToAgent()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent");
|
|
|
|
// Assert
|
|
Assert.Equal("agent", info.Type);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that Type can be overridden with a custom value.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Type_Set_ReturnsCustomValue()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent") { Type = "workflow" };
|
|
|
|
// Assert
|
|
Assert.Equal("workflow", info.Type);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that Framework defaults to "agent_framework".
|
|
/// </summary>
|
|
[Fact]
|
|
public void Framework_NotSet_DefaultsToAgentFramework()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent");
|
|
|
|
// Assert
|
|
Assert.Equal("agent_framework", info.Framework);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that Framework can be overridden with a custom value.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Framework_Set_ReturnsCustomValue()
|
|
{
|
|
// Arrange & Act
|
|
var info = new AgentEntityInfo("test-agent") { Framework = "custom_framework" };
|
|
|
|
// Assert
|
|
Assert.Equal("custom_framework", info.Framework);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Record Equality Tests
|
|
|
|
/// <summary>
|
|
/// Verifies that two AgentEntityInfo records with identical values are equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Equality_SameValues_AreEqual()
|
|
{
|
|
// Arrange
|
|
var info1 = new AgentEntityInfo("agent", "description");
|
|
var info2 = new AgentEntityInfo("agent", "description");
|
|
|
|
// Assert
|
|
Assert.Equal(info1, info2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that two AgentEntityInfo records with different Ids are not equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Equality_DifferentIds_AreNotEqual()
|
|
{
|
|
// Arrange
|
|
var info1 = new AgentEntityInfo("agent1");
|
|
var info2 = new AgentEntityInfo("agent2");
|
|
|
|
// Assert
|
|
Assert.NotEqual(info1, info2);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies that with-expression creates a modified copy.
|
|
/// </summary>
|
|
[Fact]
|
|
public void WithExpression_ModifiesProperty_CreatesNewInstance()
|
|
{
|
|
// Arrange
|
|
var original = new AgentEntityInfo("agent", "Original description");
|
|
|
|
// Act
|
|
var modified = original with { Description = "Modified description" };
|
|
|
|
// Assert
|
|
Assert.Equal("Original description", original.Description);
|
|
Assert.Equal("Modified description", modified.Description);
|
|
Assert.Equal(original.Id, modified.Id);
|
|
}
|
|
|
|
#endregion
|
|
}
|