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
73 lines
2.1 KiB
C#
73 lines
2.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel;
|
|
using Microsoft.Agents.ObjectModel;
|
|
using Microsoft.PowerFx.Types;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel;
|
|
|
|
/// <summary>
|
|
/// Tests for <see cref="SetTextVariableExecutor"/>.
|
|
/// </summary>
|
|
public sealed class SetTextVariableExecutorTest(ITestOutputHelper output) : WorkflowActionExecutorTest(output)
|
|
{
|
|
[Fact]
|
|
public async Task SetLiteralValueAsync()
|
|
{
|
|
// Arrange, Act & Assert
|
|
await this.ExecuteTestAsync(
|
|
this.FormatDisplayName(nameof(SetLiteralValueAsync)),
|
|
"TextVar",
|
|
"New value");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task UpdateExistingValueAsync()
|
|
{
|
|
// Arrange
|
|
this.State.Set("TextVar", FormulaValue.New("Old value"));
|
|
|
|
// Act & Assert
|
|
await this.ExecuteTestAsync(
|
|
this.FormatDisplayName(nameof(UpdateExistingValueAsync)),
|
|
"TextVar",
|
|
"New value");
|
|
}
|
|
|
|
private async Task ExecuteTestAsync(
|
|
string displayName,
|
|
string variableName,
|
|
string textValue)
|
|
{
|
|
// Arrange
|
|
SetTextVariable model =
|
|
this.CreateModel(
|
|
displayName,
|
|
variableName,
|
|
textValue);
|
|
|
|
// Act
|
|
SetTextVariableExecutor action = new(model, this.State);
|
|
await this.ExecuteAsync(action);
|
|
|
|
// Assert
|
|
VerifyModel(model, action);
|
|
this.VerifyState(variableName, FormulaValue.New(textValue));
|
|
}
|
|
|
|
private SetTextVariable CreateModel(string displayName, string variablePath, string textValue)
|
|
{
|
|
SetTextVariable.Builder actionBuilder =
|
|
new()
|
|
{
|
|
Id = this.CreateActionId(),
|
|
DisplayName = this.FormatDisplayName(displayName),
|
|
Variable = PropertyPath.Create(FormatVariablePath(variablePath)),
|
|
Value = TemplateLine.Parse(textValue),
|
|
};
|
|
|
|
return AssignParent<SetTextVariable>(actionBuilder);
|
|
}
|
|
}
|