This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/test/dotnet-test.UnitTests/GivenATestSessionTerminateMessageHandler.cs
Livar Cunha 7630337074 Adding unit tests for the state machine of dotnet test. Starting the implementation of a state machine in dotnet test. Right now we only handle the TestSession:Terminate message.
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.
2016-02-23 11:20:04 -08:00

42 lines
1.5 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 FluentAssertions;
using Microsoft.DotNet.Tools.Test;
using Microsoft.Extensions.Testing.Abstractions;
using Moq;
using Xunit;
namespace Microsoft.Dotnet.Tools.Test.Tests
{
public class GivenATestSessionTerminateMessageHandler
{
private DotnetTestState _nextState;
private Mock<ITestMessagesCollection> _testMessagesCollectionMock;
public GivenATestSessionTerminateMessageHandler()
{
var reportingChannel = new Mock<IReportingChannel>();
_testMessagesCollectionMock = new Mock<ITestMessagesCollection>();
var dotnetTestMock = new Mock<IDotnetTest>();
var messageHandler = new TestSessionTerminateMessageHandler(_testMessagesCollectionMock.Object);
_nextState = messageHandler.HandleMessage(dotnetTestMock.Object, new Message
{
MessageType = TestMessageTypes.TestSessionTerminate
});
}
[Fact]
public void It_always_returns_the_terminated_state_idependent_of_the_state_passed_to_it()
{
_nextState.Should().Be(DotnetTestState.Terminated);
}
[Fact]
public void It_calls_drain_on_the_test_messages()
{
_testMessagesCollectionMock.Verify(tmc => tmc.Drain(), Times.Once);
}
}
}