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;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Tools.Builder.Tests
|
|
|
|
|
{
|
|
|
|
|
public class IncrementalTests : IncrementalTestBase
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public IncrementalTests() : base(
|
2016-01-29 00:16:50 +00:00
|
|
|
|
Path.Combine(AppContext.BaseDirectory, "TestProjects", "TestSimpleIncrementalApp"),
|
2016-01-14 19:52:54 +00:00
|
|
|
|
"TestSimpleIncrementalApp",
|
|
|
|
|
"Hello World!" + Environment.NewLine)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
2016-01-21 19:04:45 +00:00
|
|
|
|
public void TestNoIncrementalFlag()
|
2016-01-14 19:52:54 +00:00
|
|
|
|
{
|
|
|
|
|
var buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
|
2016-01-21 19:04:45 +00:00
|
|
|
|
buildResult = BuildProject(noIncremental: true);
|
2016-01-14 19:52:54 +00:00
|
|
|
|
Assert.Contains("[Forced Unsafe]", buildResult.StdOut);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void TestRebuildMissingPdb()
|
|
|
|
|
{
|
|
|
|
|
TestDeleteOutputWithExtension("pdb");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void TestRebuildMissingDll()
|
|
|
|
|
{
|
|
|
|
|
TestDeleteOutputWithExtension("dll");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void TestRebuildMissingXml()
|
|
|
|
|
{
|
|
|
|
|
TestDeleteOutputWithExtension("xml");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void TestNoLockFile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
|
|
|
|
|
var lockFile = Path.Combine(_tempProjectRoot.Path, "project.lock.json");
|
|
|
|
|
Assert.True(File.Exists(lockFile));
|
|
|
|
|
|
|
|
|
|
File.Delete(lockFile);
|
|
|
|
|
Assert.False(File.Exists(lockFile));
|
|
|
|
|
|
|
|
|
|
buildResult = BuildProject(expectBuildFailure : true);
|
2016-01-26 14:39:13 +00:00
|
|
|
|
Assert.Contains("does not have a lock file", buildResult.StdOut);
|
2016-01-14 19:52:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-23 00:17:30 +00:00
|
|
|
|
[Fact(Skip="https://github.com/dotnet/cli/issues/980")]
|
2016-01-14 19:52:54 +00:00
|
|
|
|
public void TestRebuildChangedLockFile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
|
|
|
|
|
var lockFile = Path.Combine(_tempProjectRoot.Path, "project.lock.json");
|
|
|
|
|
TouchFile(lockFile);
|
|
|
|
|
|
|
|
|
|
buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-23 00:17:30 +00:00
|
|
|
|
[Fact(Skip="https://github.com/dotnet/cli/issues/980")]
|
2016-01-14 19:52:54 +00:00
|
|
|
|
public void TestRebuildChangedProjectFile()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
|
|
|
|
|
TouchFile(GetProjectFile(_mainProject));
|
|
|
|
|
|
|
|
|
|
buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void TestDeleteOutputWithExtension(string extension)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
|
2016-01-21 23:01:21 +00:00
|
|
|
|
Reporter.Verbose.WriteLine($"Files in {GetCompilationOutputPath()}");
|
|
|
|
|
foreach (var file in Directory.EnumerateFiles(GetCompilationOutputPath()))
|
2016-01-14 19:52:54 +00:00
|
|
|
|
{
|
|
|
|
|
Reporter.Verbose.Write($"\t {file}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// delete output files with extensions
|
2016-01-21 23:01:21 +00:00
|
|
|
|
foreach (var outputFile in Directory.EnumerateFiles(GetCompilationOutputPath()).Where(f =>
|
2016-01-14 19:52:54 +00:00
|
|
|
|
{
|
|
|
|
|
var fileName = Path.GetFileName(f);
|
|
|
|
|
return fileName.StartsWith(_mainProject, StringComparison.OrdinalIgnoreCase) &&
|
|
|
|
|
fileName.EndsWith(extension, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
}))
|
|
|
|
|
{
|
|
|
|
|
Reporter.Output.WriteLine($"Deleted {outputFile}");
|
|
|
|
|
|
|
|
|
|
File.Delete(outputFile);
|
|
|
|
|
Assert.False(File.Exists(outputFile));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// second build; should get rebuilt since we deleted an output item
|
|
|
|
|
buildResult = BuildProject();
|
|
|
|
|
AssertProjectCompiled(_mainProject, buildResult);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|