Fix tests for cache => store rename.
This commit is contained in:
parent
07b25e268c
commit
95ff3f9bf8
9 changed files with 313 additions and 92 deletions
|
@ -0,0 +1,95 @@
|
|||
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using Microsoft.DotNet.Cli.Utils;
|
||||
using NuGet.Frameworks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.DotNet.Tools.Test.Utilities
|
||||
{
|
||||
public sealed class StoreCommand : DotnetCommand
|
||||
{
|
||||
private List<string> _profileProject = new List<string>();
|
||||
private string _framework;
|
||||
private string _output;
|
||||
private string _runtime;
|
||||
private string _frameworkVersion;
|
||||
private string _intermediateWorkingDirectory;
|
||||
|
||||
public StoreCommand WithManifest(string profileProject)
|
||||
{
|
||||
_profileProject.Add($"--manifest {profileProject}");
|
||||
|
||||
return this;
|
||||
}
|
||||
public StoreCommand WithFramework(string framework)
|
||||
{
|
||||
_framework = framework;
|
||||
return this;
|
||||
}
|
||||
|
||||
public StoreCommand WithFramework(NuGetFramework framework)
|
||||
{
|
||||
return WithFramework(framework.GetShortFolderName());
|
||||
}
|
||||
|
||||
public StoreCommand WithOutput(string output)
|
||||
{
|
||||
_output = output;
|
||||
return this;
|
||||
}
|
||||
|
||||
public StoreCommand WithRuntime(string runtime)
|
||||
{
|
||||
_runtime = runtime;
|
||||
return this;
|
||||
}
|
||||
|
||||
public StoreCommand WithRuntimeFrameworkVersion(string frameworkVersion)
|
||||
{
|
||||
_frameworkVersion = frameworkVersion;
|
||||
return this;
|
||||
}
|
||||
|
||||
public StoreCommand WithIntermediateWorkingDirectory(string intermediateWorkingDirectory)
|
||||
{
|
||||
_intermediateWorkingDirectory = intermediateWorkingDirectory;
|
||||
return this;
|
||||
}
|
||||
|
||||
public override CommandResult Execute(string args = "")
|
||||
{
|
||||
args = $"store {BuildArgs()} {args}";
|
||||
return base.Execute(args);
|
||||
}
|
||||
|
||||
public override CommandResult ExecuteWithCapturedOutput(string args = "")
|
||||
{
|
||||
args = $"store {BuildArgs()} {args}";
|
||||
return base.ExecuteWithCapturedOutput(args);
|
||||
}
|
||||
|
||||
private string BuildArgs()
|
||||
{
|
||||
return string.Join(" ",
|
||||
ProfileProjectOption,
|
||||
FrameworkOption,
|
||||
OutputOption,
|
||||
IntermediateWorkingDirectoryOption,
|
||||
RuntimeOption,
|
||||
FrameworkVersionOption);
|
||||
}
|
||||
|
||||
private string ProfileProjectOption => string.Join(" ", _profileProject) ;
|
||||
|
||||
private string FrameworkOption => string.IsNullOrEmpty(_framework) ? "" : $"-f {_framework}";
|
||||
|
||||
private string OutputOption => string.IsNullOrEmpty(_output) ? "" : $"-o {_output}";
|
||||
|
||||
private string RuntimeOption => string.IsNullOrEmpty(_runtime) ? "" : $"-r {_runtime}";
|
||||
|
||||
private string FrameworkVersionOption => string.IsNullOrEmpty(_frameworkVersion) ? "" : $" --framework-version {_frameworkVersion}";
|
||||
|
||||
private string IntermediateWorkingDirectoryOption => string.IsNullOrEmpty(_intermediateWorkingDirectory)? "" : $" -w {_intermediateWorkingDirectory}";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue