dotnet-installer/test/dotnet-build.Tests/IncrementalTestBase.cs

102 lines
3.1 KiB
C#
Raw Normal View History

2016-01-14 19:52:54 +00:00
// 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 System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.DotNet.Cli.Utils;
using Microsoft.DotNet.Tools.Test.Utilities;
namespace Microsoft.DotNet.Tools.Builder.Tests
{
public class IncrementalTestBase : TestBase
{
protected readonly TempDirectory TempProjectRoot;
2016-01-14 19:52:54 +00:00
protected readonly string MainProject;
protected readonly string ExpectedOutput;
protected readonly TempDirectory Root;
2016-01-14 19:52:54 +00:00
public IncrementalTestBase(string testProjectsRoot, string mainProject, string expectedOutput)
{
MainProject = mainProject;
ExpectedOutput = expectedOutput;
2016-01-14 19:52:54 +00:00
Root = Temp.CreateDirectory();
2016-01-14 19:52:54 +00:00
TempProjectRoot = Root.CopyDirectory(testProjectsRoot);
2016-01-14 19:52:54 +00:00
}
protected void TouchSourcesOfProject()
{
TouchSourcesOfProject(MainProject);
2016-01-14 19:52:54 +00:00
}
protected void TouchSourcesOfProject(string projectToTouch)
{
foreach (var sourceFile in GetSourceFilesForProject(projectToTouch))
{
TouchFile(sourceFile);
}
}
protected static void TouchFile(string file)
{
File.SetLastWriteTimeUtc(file, DateTime.UtcNow);
}
protected CommandResult BuildProject(bool noIncremental = false, bool expectBuildFailure = false)
2016-01-14 19:52:54 +00:00
{
var mainProjectFile = GetProjectFile(MainProject);
2016-01-14 19:52:54 +00:00
2016-02-03 18:57:25 +00:00
var buildCommand = new BuildCommand(mainProjectFile, output: GetBinRoot(), framework: "dnxcore50", noIncremental : noIncremental);
2016-01-14 19:52:54 +00:00
var result = buildCommand.ExecuteWithCapturedOutput();
if (!expectBuildFailure)
{
result.Should().Pass();
2016-02-03 18:57:25 +00:00
TestOutputExecutable(GetBinRoot(), buildCommand.GetOutputExecutableName(), ExpectedOutput);
2016-01-14 19:52:54 +00:00
}
else
{
result.Should().Fail();
}
return result;
}
protected string GetBinRoot()
2016-01-14 19:52:54 +00:00
{
return Path.Combine(TempProjectRoot.Path, "bin");
2016-01-14 19:52:54 +00:00
}
protected virtual string GetProjectDirectory(string projectName)
{
return Path.Combine(TempProjectRoot.Path);
2016-01-14 19:52:54 +00:00
}
protected string GetProjectFile(string projectName)
{
return Path.Combine(GetProjectDirectory(projectName), "project.json");
}
private string GetOutputFileForProject(string projectName)
{
return Path.Combine(GetCompilationOutputPath(), projectName + ".dll");
2016-01-14 19:52:54 +00:00
}
private IEnumerable<string> GetSourceFilesForProject(string projectName)
{
return Directory.EnumerateFiles(GetProjectDirectory(projectName)).
Where(f => f.EndsWith(".cs"));
}
protected string GetCompilationOutputPath()
{
var executablePath = Path.Combine(GetBinRoot(), "Debug", "dnxcore50");
return executablePath;
}
2016-01-14 19:52:54 +00:00
}
}