7630337074
Adding a message handler for the version check message. Also introduced an IDotnetTest that handles state and handlers (the state machine). Adding the test discover start message handler and introducing a test runner. Added the handler for the GetTestRunnerProcessInfo message. Also, modified dotnet test to have separate setter for the special message handlers for terminate and unknown messages and added a separate method to add new reporting channels to DotnetTest, so that it can handle the new listener for the test runner. Added the test runner test discovery handlers. Added handlers to deal with the test execution itself. Updated dotnet-test program to use the message handlers during design time. Added a test for the whole discover tests message flow. Added a test for the run tests full message exchange.
67 lines
2.8 KiB
C#
67 lines
2.8 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using Microsoft.DotNet.Tools.Test;
|
|
using Microsoft.Extensions.Testing.Abstractions;
|
|
using Moq;
|
|
using Newtonsoft.Json.Linq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.Dotnet.Tools.Test.Tests
|
|
{
|
|
public class GivenThatWeWantToDiscoverTests
|
|
{
|
|
[Fact]
|
|
public void Dotnet_test_handles_and_sends_all_the_right_messages()
|
|
{
|
|
var dotnetTestMessageScenario = new DotnetTestMessageScenario();
|
|
|
|
dotnetTestMessageScenario.TestRunnerMock
|
|
.Setup(t => t.RunTestCommand())
|
|
.Callback(() => dotnetTestMessageScenario.TestRunnerChannelMock.Raise(
|
|
t => t.MessageReceived += null,
|
|
dotnetTestMessageScenario.DotnetTestUnderTest,
|
|
new Message
|
|
{
|
|
MessageType = TestMessageTypes.TestRunnerTestFound,
|
|
Payload = JToken.FromObject("testFound")
|
|
}))
|
|
.Verifiable();
|
|
|
|
dotnetTestMessageScenario.AdapterChannelMock
|
|
.Setup(a => a.Send(It.Is<Message>(m => m.MessageType == TestMessageTypes.VersionCheck)))
|
|
.Callback(() => dotnetTestMessageScenario.AdapterChannelMock.Raise(
|
|
r => r.MessageReceived += null,
|
|
dotnetTestMessageScenario.DotnetTestUnderTest,
|
|
new Message
|
|
{
|
|
MessageType = TestMessageTypes.TestDiscoveryStart
|
|
}))
|
|
.Verifiable();
|
|
|
|
dotnetTestMessageScenario.AdapterChannelMock
|
|
.Setup(a => a.Send(It.Is<Message>(m => m.MessageType == TestMessageTypes.TestDiscoveryTestFound)))
|
|
.Callback(() => dotnetTestMessageScenario.TestRunnerChannelMock.Raise(
|
|
t => t.MessageReceived += null,
|
|
dotnetTestMessageScenario.DotnetTestUnderTest,
|
|
new Message
|
|
{
|
|
MessageType = TestMessageTypes.TestRunnerTestCompleted
|
|
}))
|
|
.Verifiable();
|
|
|
|
dotnetTestMessageScenario.AdapterChannelMock
|
|
.Setup(a => a.Send(It.Is<Message>(m => m.MessageType == TestMessageTypes.TestDiscoveryCompleted)))
|
|
.Callback(() => dotnetTestMessageScenario.AdapterChannelMock.Raise(
|
|
r => r.MessageReceived += null,
|
|
dotnetTestMessageScenario.DotnetTestUnderTest,
|
|
new Message
|
|
{
|
|
MessageType = TestMessageTypes.TestSessionTerminate
|
|
}))
|
|
.Verifiable();
|
|
|
|
dotnetTestMessageScenario.Run();
|
|
}
|
|
}
|
|
}
|