db620d33df
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
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
106 lines
3.8 KiB
C#
106 lines
3.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Agents.AI.Workflows.Declarative.PowerFx;
|
|
using Microsoft.Agents.ObjectModel;
|
|
using Microsoft.Extensions.AI;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Shared.IntegrationTests;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework;
|
|
|
|
/// <summary>
|
|
/// Base class for workflow tests.
|
|
/// </summary>
|
|
public abstract class IntegrationTest : IDisposable
|
|
{
|
|
protected IConfigurationRoot Configuration => field ??= InitializeConfig();
|
|
|
|
public Uri TestEndpoint { get; }
|
|
|
|
public TestOutputAdapter Output { get; }
|
|
|
|
protected IntegrationTest(ITestOutputHelper output)
|
|
{
|
|
this.Output = new TestOutputAdapter(output);
|
|
this.TestEndpoint =
|
|
new Uri(
|
|
this.Configuration?[TestSettings.AzureAIProjectEndpoint] ??
|
|
throw new InvalidOperationException($"Undefined configuration setting: {TestSettings.AzureAIProjectEndpoint}"));
|
|
Console.SetOut(this.Output);
|
|
SetProduct();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
this.Dispose(isDisposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
protected virtual void Dispose(bool isDisposing)
|
|
{
|
|
if (isDisposing)
|
|
{
|
|
this.Output.Dispose();
|
|
}
|
|
}
|
|
|
|
protected static void SetProduct()
|
|
{
|
|
if (!ProductContext.IsLocalScopeSupported())
|
|
{
|
|
ProductContext.SetContext(Product.Foundry);
|
|
}
|
|
}
|
|
|
|
internal static string FormatVariablePath(string variableName, string? scope = null) => $"{scope ?? WorkflowFormulaState.DefaultScopeName}.{variableName}";
|
|
|
|
protected async ValueTask<DeclarativeWorkflowOptions> CreateOptionsAsync(bool externalConversation = false, params IEnumerable<AIFunction> functionTools)
|
|
{
|
|
return await this.CreateOptionsAsync(externalConversation, mcpToolProvider: null, httpRequestHandler: null, functionTools).ConfigureAwait(false);
|
|
}
|
|
|
|
protected async ValueTask<DeclarativeWorkflowOptions> CreateOptionsAsync(bool externalConversation, IMcpToolHandler? mcpToolProvider, params IEnumerable<AIFunction> functionTools)
|
|
{
|
|
return await this.CreateOptionsAsync(externalConversation, mcpToolProvider, httpRequestHandler: null, functionTools).ConfigureAwait(false);
|
|
}
|
|
|
|
protected async ValueTask<DeclarativeWorkflowOptions> CreateOptionsAsync(bool externalConversation, IHttpRequestHandler? httpRequestHandler, params IEnumerable<AIFunction> functionTools)
|
|
{
|
|
return await this.CreateOptionsAsync(externalConversation, mcpToolProvider: null, httpRequestHandler, functionTools).ConfigureAwait(false);
|
|
}
|
|
|
|
protected async ValueTask<DeclarativeWorkflowOptions> CreateOptionsAsync(bool externalConversation, IMcpToolHandler? mcpToolProvider, IHttpRequestHandler? httpRequestHandler, params IEnumerable<AIFunction> functionTools)
|
|
{
|
|
AzureAgentProvider agentProvider =
|
|
new(this.TestEndpoint, TestAzureCliCredentials.CreateAzureCliCredential())
|
|
{
|
|
Functions = functionTools,
|
|
};
|
|
|
|
string? conversationId = null;
|
|
if (externalConversation)
|
|
{
|
|
conversationId = await agentProvider.CreateConversationAsync().ConfigureAwait(false);
|
|
}
|
|
|
|
return
|
|
new DeclarativeWorkflowOptions(agentProvider)
|
|
{
|
|
ConversationId = conversationId,
|
|
LoggerFactory = this.Output,
|
|
McpToolHandler = mcpToolProvider,
|
|
HttpRequestHandler = httpRequestHandler,
|
|
};
|
|
}
|
|
|
|
private static IConfigurationRoot InitializeConfig() =>
|
|
new ConfigurationBuilder()
|
|
.AddEnvironmentVariables()
|
|
.AddUserSecrets(Assembly.GetExecutingAssembly())
|
|
.Build();
|
|
}
|