-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Matt Thalman <mthalman@microsoft.com>
- Loading branch information
1 parent
c9b4827
commit 9a21558
Showing
4 changed files
with
156 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
128 changes: 128 additions & 0 deletions
128
src/SourceBuild/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/SourcelinkTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
using System.Collections.Concurrent; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace Microsoft.DotNet.SourceBuild.SmokeTests; | ||
|
||
public class SourcelinkTests : SmokeTests | ||
{ | ||
private static string SourcelinkRoot { get; } = Path.Combine(Directory.GetCurrentDirectory(), nameof(SourcelinkTests)); | ||
|
||
public SourcelinkTests(ITestOutputHelper outputHelper) : base(outputHelper) { } | ||
|
||
/// <summary> | ||
/// Verifies that all symbols have valid sourcelinks. | ||
/// </summary> | ||
[Fact] | ||
public void VerifySourcelinks() | ||
{ | ||
if (Directory.Exists(SourcelinkRoot)) | ||
{ | ||
Directory.Delete(SourcelinkRoot, true); | ||
} | ||
Directory.CreateDirectory(SourcelinkRoot); | ||
|
||
IList<string> failedFiles = ValidateSymbols(ExtractSymbolsPackages(GetAllSymbolsPackages()), InitializeSourcelinkTool()); | ||
|
||
if (failedFiles.Count > 0) | ||
{ | ||
OutputHelper.WriteLine($"Sourcelink verification failed for the following files:"); | ||
foreach (string file in failedFiles) | ||
{ | ||
OutputHelper.WriteLine(file); | ||
} | ||
} | ||
|
||
Assert.True(failedFiles.Count == 0); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes sourcelink tool. | ||
/// Extracts the dotnet-sourcelink tool package from PSB arhive. | ||
/// </summary> | ||
/// <returns>Path to sourcelink tool binary.</returns> | ||
private string InitializeSourcelinkTool() | ||
{ | ||
const string SourcelinkToolPackageNamePattern = "dotnet-sourcelink*nupkg"; | ||
const string SourcelinkToolBinaryFilename = "dotnet-sourcelink.dll"; | ||
|
||
string toolPackageDir = Directory.CreateDirectory(Path.Combine(SourcelinkRoot, "sourcelink-tool")).FullName; | ||
Utilities.ExtractTarball(Config.SourceBuiltArtifactsPath, toolPackageDir, SourcelinkToolPackageNamePattern); | ||
|
||
string extractedToolPath = Directory.CreateDirectory(Path.Combine(toolPackageDir, "extracted")).FullName; | ||
Utilities.ExtractNupkg(Utilities.GetFile(toolPackageDir, SourcelinkToolPackageNamePattern), extractedToolPath); | ||
|
||
return Utilities.GetFile(extractedToolPath, SourcelinkToolBinaryFilename); | ||
} | ||
|
||
private IEnumerable<string> GetAllSymbolsPackages() | ||
{ | ||
/* | ||
At the moment we validate sourcelinks from runtime symbols package. | ||
The plan is to make symbols, from all repos, available in source-build artifacts. | ||
Once that's available, this code will be modified to validate all available symbols. | ||
Tracking issue: https://github.com/dotnet/source-build/issues/3612 | ||
*/ | ||
|
||
// Runtime symbols package lives in the same directory as PSB artifacts. | ||
// i.e. <repo-root>/artifacts/x64/Release/runtime/dotnet-runtime-symbols-fedora.36-x64-8.0.0-preview.7.23355.7.tar.gz | ||
yield return Utilities.GetFile(Path.GetDirectoryName(Config.SourceBuiltArtifactsPath), "dotnet-runtime-symbols-*.tar.gz"); | ||
} | ||
|
||
/// <summary> | ||
/// Extracts symbols packages to subdirectories of the common symbols root directory. | ||
/// </summary> | ||
/// <returns>Path to common symbols root directory.</returns> | ||
private string ExtractSymbolsPackages(IEnumerable<string> packages) | ||
{ | ||
string symbolsRoot = Directory.CreateDirectory(Path.Combine(SourcelinkRoot, "symbols")).FullName; | ||
|
||
foreach (string package in packages) | ||
{ | ||
Assert.True(package.EndsWith(".tar.gz"), $"Package extension is not supported: {package}"); | ||
DirectoryInfo targetDirInfo = Directory.CreateDirectory(Path.Combine(symbolsRoot, Path.GetFileNameWithoutExtension(package))); | ||
Utilities.ExtractTarball(package, targetDirInfo.FullName, OutputHelper); | ||
} | ||
|
||
return symbolsRoot; | ||
} | ||
|
||
private IList<string> ValidateSymbols(string path, string sourcelinkToolPath) | ||
{ | ||
Assert.True(Directory.Exists(path), $"Path, with symbol files to validate, does not exist: {path}"); | ||
|
||
var failedFiles = new ConcurrentBag<string>(); | ||
|
||
IEnumerable<string> allFiles = Directory.GetFiles(path, "*.pdb", SearchOption.AllDirectories); | ||
Parallel.ForEach(allFiles, file => | ||
{ | ||
(Process Process, string StdOut, string StdErr) executeResult = ExecuteHelper.ExecuteProcess( | ||
DotNetHelper.DotNetPath, | ||
$"{sourcelinkToolPath} test --offline {file}", | ||
OutputHelper, | ||
logOutput: false, | ||
excludeInfo: true, // Exclude info messages, as there can be 1,000+ processes | ||
millisecondTimeout: 5000, | ||
configureCallback: (process) => DotNetHelper.ConfigureProcess(process, null)); | ||
|
||
if (executeResult.Process.ExitCode != 0) | ||
{ | ||
failedFiles.Add(file); | ||
} | ||
}); | ||
|
||
Assert.True(allFiles.Count() > 0, $"Did not find any symbols for sourcelink verification in {path}"); | ||
|
||
return failedFiles.ToList(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters