// Copyright (c) Microsoft. All rights reserved.
using System;
using System.Threading.Tasks;
using AgentConformance.IntegrationTests.Support;
using Azure.AI.Extensions.OpenAI;
using Azure.AI.Projects;
using Microsoft.Agents.AI;
using Microsoft.Extensions.AI;
using Shared.IntegrationTests;
namespace Foundry.IntegrationTests;
///
/// Integration tests for non-versioned creation via extension methods.
///
public class ResponsesAgentExtensionCreateTests
{
private static Uri Endpoint => new(TestConfiguration.GetRequiredValue(TestSettings.AzureAIProjectEndpoint));
private static string Model => TestConfiguration.GetRequiredValue(TestSettings.AzureAIModelDeploymentName);
private readonly AIProjectClient _client = new(Endpoint, TestAzureCliCredentials.CreateAzureCliCredential());
[Fact]
public async Task AsAIAgent_WithModelAndInstructions_CreatesChatClientAgentAndRunsAsync()
{
// Arrange
const string AgentName = "ResponsesAgentExtensionSimple";
const string AgentDescription = "Integration test agent created from AIProjectClient.AsAIAgent(model, instructions).";
const string VerificationToken = "integration-extension-ok";
ChatClientAgent agent = this._client.AsAIAgent(
model: Model,
instructions: $"You are a helpful assistant. When asked for verification, reply with exactly '{VerificationToken}'.",
name: AgentName,
description: AgentDescription);
AgentSession? session = null;
try
{
var conversation = await CreateConversationAsync(this._client);
session = await agent.CreateSessionAsync(conversation.Id);
// Act
AgentResponse response = await agent.RunAsync("Return the verification token.", session);
// Assert
Assert.NotNull(agent);
Assert.Equal(AgentName, agent.Name);
Assert.Equal(AgentDescription, agent.Description);
Assert.NotNull(agent.GetService());
Assert.Contains(VerificationToken, response.Text, StringComparison.OrdinalIgnoreCase);
}
finally
{
await DeleteSessionAsync(this._client, session);
}
}
[Fact]
public async Task AsAIAgent_WithOptions_CreatesChatClientAgentAndRunsAsync()
{
// Arrange
const string VerificationToken = "integration-options-ok";
ChatClientAgentOptions options = new()
{
Name = "ResponsesAgentExtensionOptions",
Description = "Integration test agent created from AIProjectClient.AsAIAgent(options).",
ChatOptions = new ChatOptions
{
ModelId = Model,
Instructions = $"You are a helpful assistant. When asked for verification, reply with exactly '{VerificationToken}'.",
},
};
ChatClientAgent agent = this._client.AsAIAgent(options);
ChatClientAgentSession? session = null;
try
{
var conversation = await CreateConversationAsync(this._client);
session = ((await agent.CreateSessionAsync(conversation.Id)) as ChatClientAgentSession)!;
// Act
AgentResponse response = await agent.RunAsync("Return the verification token.", session);
// Assert
Assert.StartsWith("conv_", session!.ConversationId, StringComparison.OrdinalIgnoreCase);
Assert.Equal(options.Name, agent.Name);
Assert.Equal(options.Description, agent.Description);
Assert.Contains(VerificationToken, response.Text, StringComparison.OrdinalIgnoreCase);
}
finally
{
await DeleteSessionAsync(this._client, session);
}
}
private static async Task DeleteSessionAsync(AIProjectClient client, AgentSession? session)
{
if (session is null)
{
return;
}
ChatClientAgentSession typedSession = (ChatClientAgentSession)session;
if (typedSession.ConversationId?.StartsWith("conv_", StringComparison.OrdinalIgnoreCase) == true)
{
await client.GetProjectOpenAIClient().GetProjectConversationsClient().DeleteConversationAsync(typedSession.ConversationId);
}
else if (typedSession.ConversationId?.StartsWith("resp_", StringComparison.OrdinalIgnoreCase) == true)
{
await DeleteResponseChainAsync(client, typedSession.ConversationId);
}
}
private static async Task DeleteResponseChainAsync(AIProjectClient client, string lastResponseId)
{
var responsesClient = client.GetProjectOpenAIClient().GetProjectResponsesClient();
var response = await responsesClient.GetResponseAsync(lastResponseId);
await responsesClient.DeleteResponseAsync(lastResponseId);
if (response.Value.PreviousResponseId is not null)
{
await DeleteResponseChainAsync(client, response.Value.PreviousResponseId);
}
}
private static async Task CreateConversationAsync(AIProjectClient client)
{
ProjectConversationsClient conversationsClient = client.GetProjectOpenAIClient().GetProjectConversationsClient();
return (await conversationsClient.CreateProjectConversationAsync()).Value!;
}
}