093bf72c3c
It is moved to cli-migration repo
60 lines
No EOL
2 KiB
C#
60 lines
No EOL
2 KiB
C#
// 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.Build.Construction;
|
|
using Microsoft.DotNet.TestFramework;
|
|
using Microsoft.DotNet.Tools.Common;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Xunit;
|
|
using FluentAssertions;
|
|
using System.IO;
|
|
using System.IO.Compression;
|
|
using Microsoft.DotNet.Tools.Migrate;
|
|
using BuildCommand = Microsoft.DotNet.Tools.Test.Utilities.BuildCommand;
|
|
using System.Runtime.Loader;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Microsoft.DotNet.Migration.Tests
|
|
{
|
|
public class GivenThatIWantMigratedAppsToPackContent : TestBase
|
|
{
|
|
[Fact(Skip="Unblocking CI")]
|
|
public void ItPacksContentForLibraries()
|
|
{
|
|
var projectDirectory = TestAssets
|
|
.GetProjectJson("PJTestLibraryWithConfiguration")
|
|
.CreateInstance()
|
|
.WithSourceFiles()
|
|
.WithRestoreFiles()
|
|
.WithEmptyGlobalJson()
|
|
.Root;
|
|
|
|
new TestCommand("dotnet")
|
|
.WithForwardingToConsole()
|
|
.Execute($"migrate {projectDirectory.FullName}")
|
|
.Should()
|
|
.Pass();
|
|
|
|
var command = new RestoreCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.Execute()
|
|
.Should()
|
|
.Pass();
|
|
|
|
var result = new PackCommand()
|
|
.WithWorkingDirectory(projectDirectory)
|
|
.ExecuteWithCapturedOutput()
|
|
.Should()
|
|
.Pass();
|
|
|
|
using (var archive = ZipFile.OpenRead(
|
|
Path.Combine(projectDirectory.FullName, "bin", "debug", "PJTestLibraryWithConfiguration.1.0.0.nupkg")))
|
|
{
|
|
archive.Entries.Select(e => e.FullName).Should().Contain("dir/contentitem.txt");
|
|
}
|
|
}
|
|
}
|
|
} |