Files
microsoft--agent-framework/dotnet/tests/Microsoft.Agents.AI.DurableTask.UnitTests/AgentSessionIdTests.cs
T
wehub-resource-sync db620d33df
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
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
chore: import upstream snapshot with attribution
2026-07-13 13:39:25 +08:00

69 lines
2.0 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
using Microsoft.DurableTask.Entities;
namespace Microsoft.Agents.AI.DurableTask.UnitTests;
public sealed class AgentSessionIdTests
{
[Fact]
public void ParseValidSessionId()
{
const string Name = "test-agent";
const string Key = "12345";
string sessionIdString = $"@dafx-{Name}@{Key}";
AgentSessionId sessionId = AgentSessionId.Parse(sessionIdString);
Assert.Equal(Name, sessionId.Name);
Assert.Equal(Key, sessionId.Key);
}
[Fact]
public void ParseInvalidSessionId()
{
const string InvalidSessionIdString = "@test-agent@12345"; // Missing "dafx-" prefix
Assert.Throws<ArgumentException>(() => AgentSessionId.Parse(InvalidSessionIdString));
}
[Fact]
public void FromEntityId()
{
const string Name = "test-agent";
const string Key = "12345";
EntityInstanceId entityId = new($"dafx-{Name}", Key);
AgentSessionId sessionId = (AgentSessionId)entityId;
Assert.Equal(Name, sessionId.Name);
Assert.Equal(Key, sessionId.Key);
}
[Fact]
public void FromInvalidEntityId()
{
const string Name = "test-agent";
const string Key = "12345";
EntityInstanceId entityId = new(Name, Key); // Missing "dafx-" prefix
Assert.Throws<ArgumentException>(() =>
{
// This assignment should throw an exception because
// the entity ID is not a valid agent session ID.
AgentSessionId sessionId = entityId;
});
}
// Ensures the 2-arg constructor treats the key as opaque and never re-interprets
// it as a serialized session id, so the resulting Name always comes from the first
// argument regardless of the key's shape.
[Fact]
public void ConstructorTreatsKeyAsOpaqueValue()
{
AgentSessionId sessionId = new("agentA", "@dafx-agentB@some-key");
Assert.Equal("agentA", sessionId.Name);
Assert.Equal("@dafx-agentB@some-key", sessionId.Key);
}
}