This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/tests/MfGames.Nitride.IO.Tests/Paths/RemovePathPrefixTest.cs
D. Moonfire 9e93eb6ce6 refactor!: fixed missed namespaces
- reformatted code and cleaned up references
2023-01-14 18:19:42 -06:00

60 lines
1.4 KiB
C#

using System.Linq;
using MfGames.Nitride.IO.Contents;
using MfGames.Nitride.IO.Paths;
using Xunit;
using Xunit.Abstractions;
using Zio;
namespace MfGames.Nitride.IO.Tests.Paths;
public class RemovePathPrefixTest : NitrideIOTestBase
{
public RemovePathPrefixTest(ITestOutputHelper output)
: base(output)
{
}
[Fact]
public void PrefixAllFiles()
{
// Set up the test.
using NitrideIOTestContext context = this.CreateContext();
// Set up the file.
IFileSystem fileSystem = context.FileSystem;
fileSystem.CreateDirectory("/a");
fileSystem.CreateDirectory("/a/a");
fileSystem.CreateFile("/a/b1.txt");
fileSystem.CreateFile("/a/a/c1.md");
// Set up the operation.
ReadFiles readFiles = context.Resolve<ReadFiles>();
RemovePathPrefix op = context.Resolve<RemovePathPrefix>()
.WithPathPrefix("/a");
// Read and replace the paths.
IOrderedEnumerable<string> output = NitrideOperationExtensions.Run(
readFiles.WithPattern("/**")
.Run(),
op)
.Select(
x => x.Get<UPath>()
.ToString())
.OrderBy(x => x);
// Verify the results.
Assert.Equal(
new[]
{
"/a/c1.md",
"/b1.txt",
},
output);
}
}