mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
75a8335af5
* Builds locally and tests pass * Fix typo * Reverted nuget config change to remove internal feed and map to new public object model package with renames. * Renaming Bot object model in additional sample. --------- Co-authored-by: Peter Ibekwe <peibekwe@microsoft.com>
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.Agents.AI.Workflows.Declarative.Extensions;
|
|
using Microsoft.Agents.ObjectModel;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.Extensions;
|
|
|
|
/// <summary>
|
|
/// Tests for <see cref="DialogBaseExtensions"/>.
|
|
/// </summary>
|
|
public sealed class DialogBaseExtensionsTests
|
|
{
|
|
[Fact]
|
|
public void WrapWithBotCreatesValidBotDefinition()
|
|
{
|
|
// Arrange
|
|
AdaptiveDialog dialog = new AdaptiveDialog.Builder()
|
|
{
|
|
BeginDialog = new OnActivity.Builder()
|
|
{
|
|
Id = "test_dialog",
|
|
},
|
|
}.Build();
|
|
|
|
// Assert
|
|
Assert.False(dialog.HasSchemaName);
|
|
|
|
// Act
|
|
AdaptiveDialog wrappedDialog = dialog.WrapWithBot();
|
|
|
|
// Assert
|
|
VerifyWrappedDialog(wrappedDialog);
|
|
|
|
// Act & Assert
|
|
VerifyWrappedDialog(wrappedDialog.WrapWithBot());
|
|
}
|
|
|
|
private static void VerifyWrappedDialog(AdaptiveDialog wrappedDialog)
|
|
{
|
|
Assert.NotNull(wrappedDialog);
|
|
Assert.NotNull(wrappedDialog.BeginDialog);
|
|
Assert.Equal("test_dialog", wrappedDialog.BeginDialog.Id);
|
|
Assert.True(wrappedDialog.HasSchemaName);
|
|
}
|
|
}
|