You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
using AutoFixture;
|
|
using AutoFixture.AutoMoq;
|
|
using Emby.Server.Implementations.IO;
|
|
using MediaBrowser.Model.System;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Server.Implementations.Tests.IO
|
|
{
|
|
public class ManagedFileSystemTests
|
|
{
|
|
private readonly IFixture _fixture;
|
|
private readonly ManagedFileSystem _sut;
|
|
|
|
public ManagedFileSystemTests()
|
|
{
|
|
_fixture = new Fixture().Customize(new AutoMoqCustomization { ConfigureMembers = true });
|
|
_sut = _fixture.Create<ManagedFileSystem>();
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("/Volumes/Library/Sample/Music/Playlists/", "../Beethoven/Misc/Moonlight Sonata.mp3", "/Volumes/Library/Sample/Music/Beethoven/Misc/Moonlight Sonata.mp3")]
|
|
[InlineData("/Volumes/Library/Sample/Music/Playlists/", "../../Beethoven/Misc/Moonlight Sonata.mp3", "/Volumes/Library/Sample/Beethoven/Misc/Moonlight Sonata.mp3")]
|
|
[InlineData("/Volumes/Library/Sample/Music/Playlists/", "Beethoven/Misc/Moonlight Sonata.mp3", "/Volumes/Library/Sample/Music/Playlists/Beethoven/Misc/Moonlight Sonata.mp3")]
|
|
public void MakeAbsolutePathCorrectlyHandlesRelativeFilePaths(
|
|
string folderPath,
|
|
string filePath,
|
|
string expectedAbsolutePath)
|
|
{
|
|
var generatedPath = _sut.MakeAbsolutePath(folderPath, filePath);
|
|
|
|
if (MediaBrowser.Common.System.OperatingSystem.Id == OperatingSystemId.Windows)
|
|
{
|
|
var expectedWindowsPath = expectedAbsolutePath.Replace('/', '\\');
|
|
Assert.Equal(expectedWindowsPath, generatedPath.Split(':')[1]);
|
|
}
|
|
else
|
|
{
|
|
Assert.Equal(expectedAbsolutePath, generatedPath);
|
|
}
|
|
}
|
|
}
|
|
}
|