-
-
Notifications
You must be signed in to change notification settings - Fork 732
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add alias for dotnet workload repair command
- Loading branch information
Showing
6 changed files
with
331 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
src/Cake.Common.Tests/Fixtures/Tools/DotNet/Workload/Repair/DotNetWorkloadRepairerFixture.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,17 @@ | ||
// 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 Cake.Common.Tools.DotNet.Workload.Repair; | ||
|
||
namespace Cake.Common.Tests.Fixtures.Tools.DotNet.Workload.Repair | ||
{ | ||
internal sealed class DotNetWorkloadRepairerFixture : DotNetFixture<DotNetWorkloadRepairSettings> | ||
{ | ||
protected override void RunTool() | ||
{ | ||
var tool = new DotNetWorkloadRepairer(FileSystem, Environment, ProcessRunner, Tools); | ||
tool.Repair(Settings); | ||
} | ||
} | ||
} |
85 changes: 85 additions & 0 deletions
85
src/Cake.Common.Tests/Unit/Tools/DotNet/Workload/Repair/DotNetWorkloadRepairTests.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,85 @@ | ||
// 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 Cake.Common.Tests.Fixtures.Tools.DotNet.Workload.Repair; | ||
using Cake.Common.Tools.DotNet; | ||
using Cake.Testing; | ||
using Xunit; | ||
|
||
namespace Cake.Common.Tests.Unit.Tools.DotNet.Workload.Repair | ||
{ | ||
public sealed class DotNetWorkloadRepairTests | ||
{ | ||
public sealed class TheWorkloadRepairMethod | ||
{ | ||
[Fact] | ||
public void Should_Throw_If_Process_Was_Not_Started() | ||
{ | ||
// Given | ||
var fixture = new DotNetWorkloadRepairerFixture(); | ||
fixture.GivenProcessCannotStart(); | ||
|
||
// When | ||
var result = Record.Exception(() => fixture.Run()); | ||
|
||
// Then | ||
AssertEx.IsCakeException(result, ".NET CLI: Process was not started."); | ||
} | ||
|
||
[Fact] | ||
public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code() | ||
{ | ||
// Given | ||
var fixture = new DotNetWorkloadRepairerFixture(); | ||
fixture.GivenProcessExitsWithCode(1); | ||
|
||
// When | ||
var result = Record.Exception(() => fixture.Run()); | ||
|
||
// Then | ||
AssertEx.IsCakeException(result, ".NET CLI: Process returned an error (exit code 1)."); | ||
} | ||
|
||
[Fact] | ||
public void Should_Throw_If_Settings_Are_Null() | ||
{ | ||
// Given | ||
var fixture = new DotNetWorkloadRepairerFixture(); | ||
fixture.Settings = null; | ||
fixture.GivenDefaultToolDoNotExist(); | ||
|
||
// When | ||
var result = Record.Exception(() => fixture.Run()); | ||
|
||
// Then | ||
AssertEx.IsArgumentNullException(result, "settings"); | ||
} | ||
|
||
[Fact] | ||
public void Should_Add_Additional_Arguments() | ||
{ | ||
// Given | ||
var fixture = new DotNetWorkloadRepairerFixture(); | ||
fixture.Settings.ConfigFile = "./nuget.config"; | ||
fixture.Settings.DisableParallel = true; | ||
fixture.Settings.IgnoreFailedSources = true; | ||
fixture.Settings.IncludePreviews = true; | ||
fixture.Settings.Interactive = true; | ||
fixture.Settings.NoCache = true; | ||
fixture.Settings.Source.Add("http://www.nuget.org/api/v2/package"); | ||
fixture.Settings.Source.Add("http://www.symbolserver.org/"); | ||
fixture.Settings.TempDir = "./src/project"; | ||
fixture.Settings.Verbosity = DotNetVerbosity.Diagnostic; | ||
|
||
// When | ||
var result = fixture.Run(); | ||
|
||
// Then | ||
var expected = "workload repair --configfile \"/Working/nuget.config\" --disable-parallel --ignore-failed-sources --include-previews --interactive --no-cache"; | ||
expected += " --source \"http://www.nuget.org/api/v2/package\" --source \"http://www.symbolserver.org/\" --temp-dir \"/Working/src/project\" --verbosity diagnostic"; | ||
Assert.Equal(expected, result.Args); | ||
} | ||
} | ||
} | ||
} |
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
57 changes: 57 additions & 0 deletions
57
src/Cake.Common/Tools/DotNet/Workload/Repair/DotNetWorkloadRepairSettings.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,57 @@ | ||
// 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.Collections.Generic; | ||
using Cake.Core.IO; | ||
|
||
namespace Cake.Common.Tools.DotNet.Workload.Repair | ||
{ | ||
/// <summary> | ||
/// Contains settings used by <see cref="DotNetWorkloadRepairer" />. | ||
/// </summary> | ||
public sealed class DotNetWorkloadRepairSettings : DotNetSettings | ||
{ | ||
/// <summary> | ||
/// Gets or sets the NuGet configuration file (nuget.config) to use. | ||
/// </summary> | ||
public FilePath ConfigFile { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether to prevent restoring multiple projects in parallel. | ||
/// </summary> | ||
public bool DisableParallel { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether to treat package source failures as warnings. | ||
/// </summary> | ||
public bool IgnoreFailedSources { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether to allow prerelease workload manifests. | ||
/// </summary> | ||
public bool IncludePreviews { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether to allow the command to stop and wait for user input or action. | ||
/// For example, to complete authentication. | ||
/// </summary> | ||
public bool Interactive { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether to do not cache packages and http requests. | ||
/// </summary> | ||
public bool NoCache { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the URI of the NuGet package source to use. | ||
/// This setting overrides all of the sources specified in the nuget.config files. | ||
/// </summary> | ||
public ICollection<string> Source { get; set; } = new List<string>(); | ||
|
||
/// <summary> | ||
/// Gets or sets the temporary directory used to download and extract NuGet packages (must be secure). | ||
/// </summary> | ||
public DirectoryPath TempDir { get; set; } | ||
} | ||
} |
110 changes: 110 additions & 0 deletions
110
src/Cake.Common/Tools/DotNet/Workload/Repair/DotNetWorkloadRepairer.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,110 @@ | ||
// 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.Linq; | ||
using Cake.Core; | ||
using Cake.Core.IO; | ||
using Cake.Core.Tooling; | ||
|
||
namespace Cake.Common.Tools.DotNet.Workload.Repair | ||
{ | ||
/// <summary> | ||
/// .NET workloads installations repairer. | ||
/// </summary> | ||
public sealed class DotNetWorkloadRepairer : DotNetTool<DotNetWorkloadRepairSettings> | ||
{ | ||
private readonly ICakeEnvironment _environment; | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="DotNetWorkloadRepairer" /> class. | ||
/// </summary> | ||
/// <param name="fileSystem">The file system.</param> | ||
/// <param name="environment">The environment.</param> | ||
/// <param name="processRunner">The process runner.</param> | ||
/// <param name="tools">The tool locator.</param> | ||
public DotNetWorkloadRepairer( | ||
IFileSystem fileSystem, | ||
ICakeEnvironment environment, | ||
IProcessRunner processRunner, | ||
IToolLocator tools) : base(fileSystem, environment, processRunner, tools) | ||
{ | ||
_environment = environment; | ||
} | ||
|
||
/// <summary> | ||
/// Repairs all workloads installations. | ||
/// </summary> | ||
/// <param name="settings">The settings.</param> | ||
public void Repair(DotNetWorkloadRepairSettings settings) | ||
{ | ||
if (settings == null) | ||
{ | ||
throw new ArgumentNullException(nameof(settings)); | ||
} | ||
|
||
RunCommand(settings, GetArguments(settings)); | ||
} | ||
|
||
private ProcessArgumentBuilder GetArguments(DotNetWorkloadRepairSettings settings) | ||
{ | ||
var builder = CreateArgumentBuilder(settings); | ||
|
||
builder.Append("workload repair"); | ||
|
||
// Config File | ||
if (settings.ConfigFile != null) | ||
{ | ||
builder.AppendSwitchQuoted("--configfile", settings.ConfigFile.MakeAbsolute(_environment).FullPath); | ||
} | ||
|
||
// Disable Parallel | ||
if (settings.DisableParallel) | ||
{ | ||
builder.Append("--disable-parallel"); | ||
} | ||
|
||
// Ignore Failed Sources | ||
if (settings.IgnoreFailedSources) | ||
{ | ||
builder.Append("--ignore-failed-sources"); | ||
} | ||
|
||
// Include Previews | ||
if (settings.IncludePreviews) | ||
{ | ||
builder.Append("--include-previews"); | ||
} | ||
|
||
// Interactive | ||
if (settings.Interactive) | ||
{ | ||
builder.Append("--interactive"); | ||
} | ||
|
||
// No Cache | ||
if (settings.NoCache) | ||
{ | ||
builder.Append("--no-cache"); | ||
} | ||
|
||
// Source | ||
if (settings.Source != null && settings.Source.Any()) | ||
{ | ||
foreach (var source in settings.Source) | ||
{ | ||
builder.AppendSwitchQuoted("--source", source); | ||
} | ||
} | ||
|
||
// Temp Dir | ||
if (settings.TempDir != null) | ||
{ | ||
builder.AppendSwitchQuoted("--temp-dir", settings.TempDir.MakeAbsolute(_environment).FullPath); | ||
} | ||
|
||
return builder; | ||
} | ||
} | ||
} |
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