aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Implementations.Tests/IO/ManagedFileSystemTests.cs
blob: 30e6542f94d7428dbc970f98555a473e39ceac86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Runtime.InteropServices;
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);
            }
        }

        [Theory]
        [InlineData("ValidFileName", "ValidFileName")]
        [InlineData("AC/DC", "AC DC")]
        [InlineData("Invalid\0", "Invalid ")]
        [InlineData("AC/DC\0KD/A", "AC DC KD A")]
        public void GetValidFilename_ReturnsValidFilename(string filename, string expectedFileName)
        {
            Assert.Equal(expectedFileName, _sut.GetValidFilename(filename));
        }

        [SkippableFact]
        public void GetFileInfo_DanglingSymlink_ExistsFalse()
        {
            Skip.If(RuntimeInformation.IsOSPlatform(OSPlatform.Windows));

            string testFileDir = Path.Combine(Path.GetTempPath(), "jellyfin-test-data");
            string testFileName = Path.Combine(testFileDir, Path.GetRandomFileName() + "-danglingsym.link");

            Directory.CreateDirectory(testFileDir);
            Assert.Equal(0, symlink("thispathdoesntexist", testFileName));
            Assert.True(File.Exists(testFileName));

            var metadata = _sut.GetFileInfo(testFileName);
            Assert.False(metadata.Exists);
        }

        [SuppressMessage("Naming Rules", "SA1300:ElementMustBeginWithUpperCaseLetter", Justification = "Have to")]
        [DllImport("libc", SetLastError = true, CharSet = CharSet.Ansi)]
        [DefaultDllImportSearchPaths(DllImportSearchPath.UserDirectories)]
        private static extern int symlink(string target, string linkpath);
    }
}