2017-05-17 23:05:22 +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.IO;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Microsoft.DotNet.TestFramework;
|
|
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Tests
|
|
|
|
|
{
|
|
|
|
|
public class GivenThatICareAboutVBApps : TestBase
|
|
|
|
|
{
|
|
|
|
|
private TestAssetInstance _testInstance;
|
|
|
|
|
|
|
|
|
|
public GivenThatICareAboutVBApps()
|
|
|
|
|
{
|
|
|
|
|
_testInstance = TestAssets.Get("VBTestApp")
|
|
|
|
|
.CreateInstance()
|
|
|
|
|
.WithSourceFiles();
|
|
|
|
|
|
|
|
|
|
new RestoreCommand()
|
|
|
|
|
.WithWorkingDirectory(_testInstance.Root)
|
|
|
|
|
.Execute()
|
|
|
|
|
.Should().Pass();
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-22 18:06:34 +00:00
|
|
|
|
[Fact]
|
2017-05-17 23:05:22 +00:00
|
|
|
|
public void ICanBuildVBApps()
|
|
|
|
|
{
|
|
|
|
|
new BuildCommand()
|
|
|
|
|
.WithWorkingDirectory(_testInstance.Root)
|
|
|
|
|
.Execute()
|
|
|
|
|
.Should().Pass();
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-22 18:06:34 +00:00
|
|
|
|
[Fact]
|
2017-05-17 23:05:22 +00:00
|
|
|
|
public void ICanRunVBApps()
|
|
|
|
|
{
|
|
|
|
|
new RunCommand()
|
|
|
|
|
.WithWorkingDirectory(_testInstance.Root)
|
|
|
|
|
.Execute()
|
|
|
|
|
.Should().Pass();
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-22 18:06:34 +00:00
|
|
|
|
[Fact]
|
2017-05-17 23:05:22 +00:00
|
|
|
|
public void ICanPublicAndRunVBApps()
|
|
|
|
|
{
|
|
|
|
|
new PublishCommand()
|
|
|
|
|
.WithWorkingDirectory(_testInstance.Root)
|
|
|
|
|
.Execute()
|
|
|
|
|
.Should().Pass();
|
|
|
|
|
|
|
|
|
|
var configuration = Environment.GetEnvironmentVariable("CONFIGURATION") ?? "Debug";
|
|
|
|
|
var outputDll = Path.Combine(
|
|
|
|
|
_testInstance.Root.FullName,
|
|
|
|
|
"bin",
|
|
|
|
|
configuration,
|
2017-08-18 22:36:01 +00:00
|
|
|
|
"netcoreapp2.1",
|
2017-05-17 23:05:22 +00:00
|
|
|
|
"publish",
|
|
|
|
|
"VBTestApp.dll");
|
|
|
|
|
|
|
|
|
|
new DotnetCommand()
|
|
|
|
|
.ExecuteWithCapturedOutput(outputDll)
|
|
|
|
|
.Should().Pass()
|
|
|
|
|
.And.HaveStdOutContaining("Hello World");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|