|
9 | 9 | using Microsoft.VisualStudio.TestPlatform.CoreUtilities.Extensions;
|
10 | 10 |
|
11 | 11 | using TestPlatform.TestUtilities;
|
| 12 | +using System.Linq; |
| 13 | +using Microsoft.VisualStudio.TestPlatform.Common; |
| 14 | +using FluentAssertions; |
12 | 15 |
|
13 | 16 | namespace Microsoft.TestPlatform.AcceptanceTests;
|
14 | 17 |
|
@@ -396,4 +399,100 @@ public void ExitCodeShouldNotDependOnFailTreatNoTestsAsErrorFalseValueWhenThereA
|
396 | 399 | // Returning 1 because of failing test in test assembly (SimpleTestProject2.dll)
|
397 | 400 | ExitCodeEquals(1);
|
398 | 401 | }
|
| 402 | + |
| 403 | + [TestMethod] |
| 404 | + [NetFullTargetFrameworkDataSource(inIsolation: true, inProcess: true)] |
| 405 | + [NetCoreTargetFrameworkDataSource] |
| 406 | + public void RunXunitTestsWhenProvidingAllDllsInBin(RunnerInfo runnerInfo) |
| 407 | + { |
| 408 | + // This is the default filter of AzDo VSTest task: |
| 409 | + // testAssemblyVer2: | |
| 410 | + // **\*test *.dll |
| 411 | + // ! * *\*TestAdapter.dll |
| 412 | + // ! * *\obj\** |
| 413 | + // Because of this in typical run we get a lot of dlls that we are sure don't have tests, like Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll |
| 414 | + // or testhost.dll. Those dlls are built for netcoreapp3.1 tfm, so theoretically they should be tests, but attempting to run them fails to find runtimeconfig.json |
| 415 | + // or deps.json, and fails the run. |
| 416 | + SetTestEnvironment(_testEnvironment, runnerInfo); |
| 417 | + |
| 418 | + var testAssemblyPath = _testEnvironment.GetTestAsset("XUTestProject.dll"); |
| 419 | + var allDllsMatchingTestPattern = Directory.GetFiles(Path.GetDirectoryName(testAssemblyPath)!, "*test*.dll"); |
| 420 | + |
| 421 | + string assemblyPaths = string.Join(" ", allDllsMatchingTestPattern.Concat(new[] { testAssemblyPath }).Select(s => s.AddDoubleQuote())); |
| 422 | + InvokeVsTestForExecution(assemblyPaths, testAdapterPath: string.Empty, FrameworkArgValue, string.Empty); |
| 423 | + var fails = this.StdErrWithWhiteSpace.Split('\n').Where(s => !s.IsNullOrWhiteSpace()).Select(s => s.Trim()).ToList(); |
| 424 | + fails.Should().HaveCount(2, "because there is 1 failed test, and one message that tests failed."); |
| 425 | + fails.Last().Should().Be("Test Run Failed."); |
| 426 | + } |
| 427 | + |
| 428 | + [TestMethod] |
| 429 | + [NetFullTargetFrameworkDataSource(inIsolation: true, inProcess: true)] |
| 430 | + [NetCoreTargetFrameworkDataSource()] |
| 431 | + public void RunMstestTestsWhenProvidingAllDllsInBin(RunnerInfo runnerInfo) |
| 432 | + { |
| 433 | + // This is the default filter of AzDo VSTest task: |
| 434 | + // testAssemblyVer2: | |
| 435 | + // **\*test *.dll |
| 436 | + // ! * *\*TestAdapter.dll |
| 437 | + // ! * *\obj\** |
| 438 | + // Because of this in typical run we get a lot of dlls that we are sure don't have tests, like Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll |
| 439 | + // or testhost.dll. Those dlls are built for netcoreapp3.1 tfm, so theoretically they should be tests, but attempting to run them fails to find runtimeconfig.json |
| 440 | + // or deps.json, and fails the run. |
| 441 | + SetTestEnvironment(_testEnvironment, runnerInfo); |
| 442 | + |
| 443 | + var testAssemblyPath = _testEnvironment.GetTestAsset("SimpleTestProject.dll"); |
| 444 | + var allDllsMatchingTestPattern = Directory.GetFiles(Path.GetDirectoryName(testAssemblyPath)!, "*test*.dll"); |
| 445 | + |
| 446 | + string assemblyPaths = string.Join(" ", allDllsMatchingTestPattern.Concat(new[] { testAssemblyPath }).Select(s => s.AddDoubleQuote())); |
| 447 | + InvokeVsTestForExecution(assemblyPaths, testAdapterPath: string.Empty, FrameworkArgValue, string.Empty); |
| 448 | + |
| 449 | + StdErrHasTestRunFailedMessageButNoOtherError(); |
| 450 | + } |
| 451 | + |
| 452 | + [TestMethod] |
| 453 | + [NetFullTargetFrameworkDataSource(inIsolation: true, inProcess: true)] |
| 454 | + [NetCoreTargetFrameworkDataSource()] |
| 455 | + public void RunNunitTestsWhenProvidingAllDllsInBin(RunnerInfo runnerInfo) |
| 456 | + { |
| 457 | + // This is the default filter of AzDo VSTest task: |
| 458 | + // testAssemblyVer2: | |
| 459 | + // **\*test *.dll |
| 460 | + // ! * *\*TestAdapter.dll |
| 461 | + // ! * *\obj\** |
| 462 | + // Because of this in typical run we get a lot of dlls that we are sure don't have tests, like Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll |
| 463 | + // or testhost.dll. Those dlls are built for netcoreapp3.1 tfm, so theoretically they should be tests, but attempting to run them fails to find runtimeconfig.json |
| 464 | + // or deps.json, and fails the run. |
| 465 | + SetTestEnvironment(_testEnvironment, runnerInfo); |
| 466 | + |
| 467 | + var testAssemblyPath = _testEnvironment.GetTestAsset("NUTestProject.dll"); |
| 468 | + var allDllsMatchingTestPattern = Directory.GetFiles(Path.GetDirectoryName(testAssemblyPath)!, "*test*.dll"); |
| 469 | + |
| 470 | + string assemblyPaths = string.Join(" ", allDllsMatchingTestPattern.Concat(new[] { testAssemblyPath }).Select(s => s.AddDoubleQuote())); |
| 471 | + InvokeVsTestForExecution(assemblyPaths, testAdapterPath: string.Empty, FrameworkArgValue, string.Empty); |
| 472 | + |
| 473 | + StdErrHasTestRunFailedMessageButNoOtherError(); |
| 474 | + } |
| 475 | + |
| 476 | + [TestMethod] |
| 477 | + [NetCoreTargetFrameworkDataSource(useDesktopRunner: false)] |
| 478 | + public void RunTestsWhenProvidingJustPlatformDllsFailsTheRun(RunnerInfo runnerInfo) |
| 479 | + { |
| 480 | + // This is the default filter of AzDo VSTest task: |
| 481 | + // testAssemblyVer2: | |
| 482 | + // **\*test *.dll |
| 483 | + // ! * *\*TestAdapter.dll |
| 484 | + // ! * *\obj\** |
| 485 | + // Because of this in typical run we get a lot of dlls that we are sure don't have tests, like Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll |
| 486 | + // or testhost.dll. Those dlls are built for netcoreapp3.1 tfm, so theoretically they should be tests, but attempting to run them fails to find runtimeconfig.json |
| 487 | + // or deps.json, and fails the run. |
| 488 | + SetTestEnvironment(_testEnvironment, runnerInfo); |
| 489 | + |
| 490 | + var xunitAssemblyPath = _testEnvironment.GetTestAsset("SimpleTestProject.dll"); |
| 491 | + var allDllsMatchingTestPattern = Directory.GetFiles(Path.GetDirectoryName(xunitAssemblyPath)!, "*test*.dll").Where(f => !f.EndsWith("SimpleTestProject.dll")); |
| 492 | + |
| 493 | + string assemblyPaths = string.Join(" ", allDllsMatchingTestPattern.Select(s => s.AddDoubleQuote())); |
| 494 | + InvokeVsTestForExecution(assemblyPaths, testAdapterPath: string.Empty, FrameworkArgValue, string.Empty); |
| 495 | + |
| 496 | + StdErr.Should().Be("No test source files were specified. ", "because all platform files we provided were filtered out"); |
| 497 | + } |
399 | 498 | }
|
0 commit comments