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
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using Microsoft.Agents.AI.Workflows.Declarative.PowerFx;
|
|
using Microsoft.Agents.ObjectModel;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Base class for workflow tests.
|
|
/// </summary>
|
|
public abstract class WorkflowTest : IDisposable
|
|
{
|
|
public TestOutputAdapter Output { get; }
|
|
|
|
protected WorkflowTest(ITestOutputHelper output)
|
|
{
|
|
this.Output = new TestOutputAdapter(output);
|
|
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? FormatOptionalPath(string? variableName, string? scope = null) =>
|
|
variableName is null ? null : FormatVariablePath(variableName, scope);
|
|
|
|
internal static string FormatVariablePath(string variableName, string? scope = null) => $"{scope ?? WorkflowFormulaState.DefaultScopeName}.{variableName}";
|
|
}
|