-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathMSTestRunner.cs
293 lines (235 loc) · 10.3 KB
/
MSTestRunner.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
using Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Adapter;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Xml;
namespace Meadow.UnitTestTemplate
{
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
public class MSTestRunner
{
string[] _assemblies;
(string FullyQualifiedTestName, string SourceAssembly)[] _testCases;
private MSTestRunner()
{
}
public static MSTestRunner CreateFromAssemblies(params Assembly[] assemblies)
{
var runner = new MSTestRunner();
runner._assemblies = assemblies.Select(a => a.Location).ToArray();
return runner;
}
public static MSTestRunner CreateFromAssemblies(params string[] assemblies)
{
var runner = new MSTestRunner();
runner._assemblies = assemblies;
return runner;
}
public static MSTestRunner CreateFromSpecificTests(params (string FullyQualifiedTestName, string SourceAssembly)[] testCases)
{
var runner = new MSTestRunner();
runner._assemblies = testCases.Select(t => t.SourceAssembly).Distinct().ToArray();
runner._testCases = testCases;
return runner;
}
public static void RunAllTests(Assembly scanAssembly = null, CancellationToken cancellationToken = default)
{
var assemblies = new HashSet<Assembly>();
if (scanAssembly != null)
{
assemblies.Add(scanAssembly);
}
assemblies.Add(Assembly.GetEntryAssembly());
assemblies.Add(Assembly.GetCallingAssembly());
var applicationTestRunner = CreateFromAssemblies(assemblies.ToArray());
applicationTestRunner.RunTests(cancellationToken);
}
public static void RunSpecificTests(Assembly assembly, params string[] fullyQualifiedTestNames)
{
RunSpecificTests(new[] { Assembly.GetEntryAssembly(), Assembly.GetCallingAssembly(), assembly }, fullyQualifiedTestNames);
}
public static void RunSpecificTests(params string[] fullyQualifiedTestNames)
{
RunSpecificTests(new[] { Assembly.GetEntryAssembly(), Assembly.GetCallingAssembly() }, fullyQualifiedTestNames);
}
static void RunSpecificTests(Assembly[] assemblies, string[] fullyQualifiedTestNames)
{
var assemblyLocations = assemblies.Select(a => a.Location).Distinct();
var testCases = new List<(string FullyQualifiedTestName, string SourceAssembly)>();
foreach (var assembly in assemblyLocations)
{
foreach (var testName in fullyQualifiedTestNames)
{
testCases.Add((testName, assembly));
}
}
var runner = CreateFromSpecificTests(testCases.ToArray());
runner.RunTests();
}
public void RunTests(CancellationToken cancellationToken = default)
{
var runContext = new MyRunContext(_testCases);
var frameworkHandler = new MyFrameworkHandle(GetConsoleLogger());
const string MSTEST_ADAPTER_DLL = "Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll";
const string MSTEST_EXECUTOR_TYPE = "Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.MSTestExecutor";
string msTestAdapterAssemblyPath = null;
bool foundFile = false;
foreach (var assemblyDir in GetPossibleAssemblyDirectories())
{
msTestAdapterAssemblyPath = Path.Combine(assemblyDir, MSTEST_ADAPTER_DLL);
if (File.Exists(msTestAdapterAssemblyPath))
{
foundFile = true;
break;
}
}
if (!foundFile)
{
throw new Exception($"Could not find {MSTEST_ADAPTER_DLL}");
}
var msTestAdapterAssembly = Assembly.LoadFrom(msTestAdapterAssemblyPath);
var testExecutorType = msTestAdapterAssembly.GetType(MSTEST_EXECUTOR_TYPE, throwOnError: true);
dynamic testExecutor = Activator.CreateInstance(testExecutorType);
cancellationToken.Register(() =>
{
testExecutor.Cancel();
});
testExecutor.RunTests(_assemblies, runContext, frameworkHandler);
//var tDisc = new MSTestDiscoverer();
//var eng = new TestEngine();
//var e = new ExecutionManager(new MyRequestData());
//e.Initialize(Array.Empty<string>());
//e.StartTestRun(new TestExecutionContext())
//var testExecutionManager = new TestExecutionManager();
//testExecutionManager.RunTests(assemblyPaths, runContext, frameworkHandler, new TestRunCancellationToken());
}
IEnumerable<string> GetPossibleAssemblyDirectories()
{
yield return Directory.GetCurrentDirectory();
yield return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
yield return Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
}
Action<TestResult> GetConsoleLogger()
{
var stdout = Console.OpenStandardOutput();
var stderr = Console.OpenStandardError();
var stdoutWriter = new StreamWriter(stdout);
var stderrWriter = new StreamWriter(stderr);
var syncRoot = new object();
return testResult =>
{
lock (syncRoot)
{
var resultMsg = $"{testResult.TestCase.ToString()} - {testResult.Outcome} [{Math.Round(testResult.Duration.TotalMilliseconds)} ms]";
if (testResult.Outcome == TestOutcome.Passed || testResult.Outcome == TestOutcome.Skipped)
{
stdoutWriter.WriteLine(resultMsg);
stdoutWriter.Flush();
}
else
{
stderrWriter.WriteLine(resultMsg);
if (!string.IsNullOrEmpty(testResult.ErrorMessage))
{
stderrWriter.WriteLine(testResult.ErrorMessage);
}
if (!string.IsNullOrEmpty(testResult.ErrorStackTrace))
{
stderrWriter.WriteLine(testResult.ErrorStackTrace);
}
stderrWriter.Flush();
}
foreach (var msg in testResult.Messages)
{
stdoutWriter.WriteLine($"[{msg.Category}] {msg.Text}");
stdoutWriter.Flush();
}
}
};
}
class MyRunContext : IRunContext
{
readonly RunContext _default = new RunContext();
readonly MyTestCaseFilterExpression _testFilter;
public MyRunContext((string FullyQualifiedTestName, string SourceAssembly)[] testCases)
{
_testFilter = new MyTestCaseFilterExpression(testCases);
}
public bool KeepAlive => _default.KeepAlive;
public bool InIsolation => _default.InIsolation;
public bool IsDataCollectionEnabled => _default.IsDataCollectionEnabled;
public bool IsBeingDebugged => _default.IsBeingDebugged;
public string TestRunDirectory => _default.TestRunDirectory;
public string SolutionDirectory => _default.SolutionDirectory;
public IRunSettings RunSettings => _default.RunSettings;
public ITestCaseFilterExpression GetTestCaseFilter(IEnumerable<string> supportedProperties, Func<string, TestProperty> propertyProvider)
{
return _testFilter;
}
}
class MyTestCaseFilterExpression : ITestCaseFilterExpression
{
readonly (string FullyQualifiedTestName, string SourceAssembly)[] _testCases;
public MyTestCaseFilterExpression((string FullyQualifiedTestName, string SourceAssembly)[] testCases)
{
_testCases = testCases;
}
public string TestCaseFilterValue
{
get
{
return null;
}
}
public bool MatchTestCase(TestCase testCase, Func<string, object> propertyValueProvider)
{
if (_testCases == null)
{
return true;
}
if (_testCases.Any(t => t.FullyQualifiedTestName == testCase.FullyQualifiedName && t.SourceAssembly == testCase.Source))
{
return true;
}
return false;
}
}
class MyFrameworkHandle : IFrameworkHandle
{
public bool EnableShutdownAfterTestRun { get; set; } = true;
readonly Action<TestResult> _logger;
public MyFrameworkHandle(Action<TestResult> logger)
{
_logger = logger;
}
public int LaunchProcessWithDebuggerAttached(string filePath, string workingDirectory, string arguments, IDictionary<string, string> environmentVariables)
{
throw new NotImplementedException();
}
public void RecordAttachments(IList<AttachmentSet> attachmentSets)
{
}
public void RecordEnd(TestCase testCase, TestOutcome outcome)
{
}
public void RecordResult(TestResult testResult)
{
_logger?.Invoke(testResult);
}
public void RecordStart(TestCase testCase)
{
}
public void SendMessage(TestMessageLevel testMessageLevel, string message)
{
}
}
}
}