Skip to content

Commit

Permalink
[rel/3.6] Fix running cleanup after first test method (#3764)
Browse files Browse the repository at this point in the history
  • Loading branch information
nohwnd committed Sep 5, 2024
1 parent f701df6 commit ff20766
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal sealed class ClassCleanupManager
private readonly ClassCleanupBehavior? _lifecycleFromMsTest;
private readonly ClassCleanupBehavior _lifecycleFromAssembly;
private readonly ReflectHelper _reflectHelper;
private readonly ConcurrentDictionary<string, HashSet<string>> _remainingTestsByClass;
private readonly ConcurrentDictionary<string, List<string>> _remainingTestsByClass;

public ClassCleanupManager(
IEnumerable<UnitTestElement> testsToRun,
Expand All @@ -27,7 +27,7 @@ public ClassCleanupManager(
new(runnableTests.GroupBy(t => t.TestMethod.FullClassName)
.ToDictionary(
g => g.Key,
g => new HashSet<string>(g.Select(t => t.TestMethod.UniqueName))));
g => new List<string>(g.Select(t => t.TestMethod.UniqueName))));
_lifecycleFromMsTest = lifecycleFromMsTest;
_lifecycleFromAssembly = lifecycleFromAssembly;
_reflectHelper = reflectHelper;
Expand All @@ -38,7 +38,7 @@ public ClassCleanupManager(
public void MarkTestComplete(TestMethodInfo testMethodInfo, TestMethod testMethod, out bool shouldRunEndOfClassCleanup)
{
shouldRunEndOfClassCleanup = false;
if (!_remainingTestsByClass.TryGetValue(testMethodInfo.TestClassName, out HashSet<string>? testsByClass))
if (!_remainingTestsByClass.TryGetValue(testMethodInfo.TestClassName, out List<string>? testsByClass))
{
return;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Reflection;

using Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.Execution;
using Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.Helpers;
using Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.ObjectModel;
using Microsoft.VisualStudio.TestTools.UnitTesting;

using Moq;

using TestFramework.ForTestingMSTest;

namespace Microsoft.VisualStudio.TestPlatform.MSTestAdapter.UnitTests.Execution;

public class ClassCleanupManagerTests : TestContainer
{
public void AssemblyCleanupRunsAfterAllTestsFinishEvenIfWeScheduleTheSameTestMultipleTime()
{
ReflectHelper reflectHelper = Mock.Of<ReflectHelper>();
MethodInfo methodInfo = typeof(ClassCleanupManagerTests).GetMethod(nameof(FakeTestMethod), BindingFlags.Instance | BindingFlags.NonPublic);
MethodInfo classCleanupMethodInfo = typeof(ClassCleanupManagerTests).GetMethod(nameof(FakeClassCleanupMethod), BindingFlags.Instance | BindingFlags.NonPublic);
// Full class name must agree between unitTestElement.TestMethod.FullClassName and testMethod.FullClassName;
string fullClassName = methodInfo.DeclaringType.FullName;
TestMethod testMethod = new(nameof(FakeTestMethod), fullClassName, typeof(ClassCleanupManagerTests).Assembly.FullName, isAsync: false);

// Setting 2 of the same test to run, we should run assembly cleanup after both these tests
// finish, not after the first one finishes.
List<UnitTestElement> testsToRun = new()
{
new(testMethod),
new(testMethod),
};

var classCleanupManager = new ClassCleanupManager(testsToRun, ClassCleanupBehavior.EndOfClass, ClassCleanupBehavior.EndOfClass, reflectHelper);

TestClassInfo testClassInfo = new(typeof(ClassCleanupManagerTests), null, true, null, null, null)
{
// This needs to be set, to allow running class cleanup.
ClassCleanupMethod = classCleanupMethodInfo,
};
TestMethodInfo testMethodInfo = new(methodInfo, testClassInfo, null!);
classCleanupManager.MarkTestComplete(testMethodInfo, testMethod, out bool shouldRunEndOfClassCleanup);

// The cleanup should not run here yet, we have 1 remaining test to run.
Assert.IsFalse(shouldRunEndOfClassCleanup);
Assert.IsFalse(classCleanupManager.ShouldRunEndOfAssemblyCleanup);

classCleanupManager.MarkTestComplete(testMethodInfo, testMethod, out shouldRunEndOfClassCleanup);
// The cleanup should run here.
Assert.IsTrue(shouldRunEndOfClassCleanup);
Assert.IsTrue(classCleanupManager.ShouldRunEndOfAssemblyCleanup);
}

private void FakeTestMethod()
{
}

private void FakeClassCleanupMethod()
{
}
}

0 comments on commit ff20766

Please sign in to comment.