mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
401a552735
* feat: Add DelegatingAgentSessionStore Add helper for decorator pattern for AgentSessionStore * feat: Add UserIdentityScopedSessionStore Add support for using the ASP.Net Core ambient `ClaimsIdentity` User, along with a user-specified claim type to scope the session store based on authenticated identity. * fix: Harden scope mapping * fix: Add UserIdentityScopeSessionStoreOptions to avoid future breaking changes * Split UserIdentityScopedSessionStore into a separate IsolationKeyProvider and IsolationKeyScopedSessionStore * Add GetService<>() capabilities to interrogate AgentSessionStore delegation chain * Harden default for A2A hosting by using an IsolationKeyScopedAgentSessionStore when no store is available. * Pipe isolation through Hosting helper extension methods * Add comment to samples about adding SessionIsolationKeyProvider * Fix isolation key provider nullability semantics * fix A2A defaults * fixup * remove unneeded keyProvider requirement test * Add trust-model XML docs to AgentSessionStore, InMemoryAgentSessionStore, MapAGUI, A2A entry points Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/e466c53a-faad-40a8-8b5f-83cf0dce0b1d Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com> * fix: Switch ClaimsBasedIsolationKeyProvider to be Singleton * matches HttpContextAccessor and related MAF services * release: Ensure new project is in the release filter * fixup: Integraitaon tests --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com>
96 lines
2.8 KiB
C#
96 lines
2.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.Agents.AI.Hosting.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Unit tests for <see cref="SessionIsolationKeyProvider"/> and its contract.
|
|
/// </summary>
|
|
public class SessionIsolationKeyProviderTests
|
|
{
|
|
/// <summary>
|
|
/// Verify that a concrete provider can return a non-null isolation key.
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task GetSessionIsolationKeyAsyncReturnsNonNullKeyAsync()
|
|
{
|
|
// Arrange
|
|
const string ExpectedKey = "test-key";
|
|
var provider = new TestSessionIsolationKeyProvider(ExpectedKey);
|
|
|
|
// Act
|
|
string? result = await provider.GetSessionIsolationKeyAsync();
|
|
|
|
// Assert
|
|
Assert.Equal(ExpectedKey, result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verify that a concrete provider can return null when no key is available.
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task GetSessionIsolationKeyAsyncReturnsNullWhenNoKeyAvailableAsync()
|
|
{
|
|
// Arrange
|
|
var provider = new TestSessionIsolationKeyProvider(null);
|
|
|
|
// Act
|
|
string? result = await provider.GetSessionIsolationKeyAsync();
|
|
|
|
// Assert
|
|
Assert.Null(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verify that cancellation token is passed through to the provider implementation.
|
|
/// </summary>
|
|
[Fact]
|
|
public async Task GetSessionIsolationKeyAsyncPassesCancellationTokenAsync()
|
|
{
|
|
// Arrange
|
|
var provider = new TestCancellableSessionIsolationKeyProvider();
|
|
using var cts = new CancellationTokenSource();
|
|
cts.Cancel();
|
|
|
|
// Act & Assert
|
|
await Assert.ThrowsAsync<TaskCanceledException>(
|
|
async () => await provider.GetSessionIsolationKeyAsync(cts.Token));
|
|
}
|
|
|
|
#region Test Implementations
|
|
|
|
/// <summary>
|
|
/// Test implementation of <see cref="SessionIsolationKeyProvider"/> for testing purposes.
|
|
/// </summary>
|
|
private sealed class TestSessionIsolationKeyProvider : SessionIsolationKeyProvider
|
|
{
|
|
private readonly string? _key;
|
|
|
|
public TestSessionIsolationKeyProvider(string? key)
|
|
{
|
|
this._key = key;
|
|
}
|
|
|
|
public override ValueTask<string?> GetSessionIsolationKeyAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
return new ValueTask<string?>(this._key);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Test implementation that respects cancellation tokens.
|
|
/// </summary>
|
|
private sealed class TestCancellableSessionIsolationKeyProvider : SessionIsolationKeyProvider
|
|
{
|
|
public override async ValueTask<string?> GetSessionIsolationKeyAsync(CancellationToken cancellationToken = default)
|
|
{
|
|
await Task.Delay(1000, cancellationToken);
|
|
return "key";
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|