dotnet-installer/test/dotnet-run.Tests/RunTests.cs

58 lines
2.1 KiB
C#
Raw Normal View History

// 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.IO;
2016-02-23 19:09:43 +00:00
using Microsoft.DotNet.TestFramework;
using Microsoft.DotNet.Tools.Test.Utilities;
using Xunit;
2016-02-23 19:09:43 +00:00
namespace Microsoft.DotNet.Tools.Run.Tests
{
2016-02-23 19:09:43 +00:00
public class RunTests : TestBase
{
2016-02-23 19:09:43 +00:00
private const string RunTestsBase = "RunTestsApps";
[WindowsOnlyFact]
public void RunsSingleTarget()
{
2016-02-23 19:09:43 +00:00
TestInstance instance = TestAssetsManager.CreateTestInstance(Path.Combine(RunTestsBase, "TestAppFullClr"))
.WithLockFiles()
.WithBuildArtifacts();
2016-02-23 19:09:43 +00:00
new RunCommand(instance.TestRoot).Execute().Should().Pass();
}
2016-02-23 19:09:43 +00:00
[Fact]
public void RunsDefaultWhenPresent()
{
TestInstance instance = TestAssetsManager.CreateTestInstance(Path.Combine(RunTestsBase, "TestAppMultiTarget"))
.WithLockFiles()
.WithBuildArtifacts();
2016-02-23 19:09:43 +00:00
new RunCommand(instance.TestRoot).Execute().Should().Pass();
}
2016-02-23 19:09:43 +00:00
[Fact]
public void FailsWithMultipleTargetAndNoDefault()
{
2016-02-23 19:09:43 +00:00
TestInstance instance = TestAssetsManager.CreateTestInstance(Path.Combine(RunTestsBase, "TestAppMultiTargetNoCoreClr"))
.WithLockFiles()
.WithBuildArtifacts();
2016-02-23 19:09:43 +00:00
new RunCommand(instance.TestRoot).Execute().Should().Fail();
}
private void CopyProjectToTempDir(string projectDir, TempDirectory tempDir)
{
// copy all the files to temp dir
foreach (var file in Directory.EnumerateFiles(projectDir))
{
tempDir.CopyFile(file);
}
}
private string GetProjectPath(TempDirectory projectDir)
{
return Path.Combine(projectDir.Path, "project.json");
}
}
}