mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
225 lines
7.0 KiB
C#
225 lines
7.0 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Common.Test
|
|
{
|
|
[TestFixture]
|
|
public class DiskProviderFixture : TestBase<DiskProvider>
|
|
{
|
|
DirectoryInfo _binFolder;
|
|
DirectoryInfo _binFolderCopy;
|
|
DirectoryInfo _binFolderMove;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_binFolder = new DirectoryInfo(Directory.GetCurrentDirectory());
|
|
_binFolderCopy = new DirectoryInfo(Path.Combine(_binFolder.Parent.FullName, "bin_copy"));
|
|
_binFolderMove = new DirectoryInfo(Path.Combine(_binFolder.Parent.FullName, "bin_move"));
|
|
|
|
if (_binFolderCopy.Exists)
|
|
{
|
|
_binFolderCopy.Delete(true);
|
|
}
|
|
|
|
if (_binFolderMove.Exists)
|
|
{
|
|
_binFolderMove.Delete(true);
|
|
}
|
|
}
|
|
|
|
[Test]
|
|
public void directory_exist_should_be_able_to_find_existing_folder()
|
|
{
|
|
Subject.FolderExists(TempFolder).Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void directory_exist_should_be_able_to_find_existing_unc_share()
|
|
{
|
|
Subject.FolderExists(@"\\localhost\c$").Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void directory_exist_should_not_be_able_to_find_none_existing_folder()
|
|
{
|
|
Subject.FolderExists(@"C:\ThisBetterNotExist\").Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void moveFile_should_overwrite_existing_file()
|
|
{
|
|
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderCopy.FullName);
|
|
|
|
var targetPath = Path.Combine(_binFolderCopy.FullName, "file.move");
|
|
|
|
Subject.MoveFile(_binFolderCopy.GetFiles("*.dll", SearchOption.AllDirectories).First().FullName, targetPath);
|
|
Subject.MoveFile(_binFolderCopy.GetFiles("*.pdb", SearchOption.AllDirectories).First().FullName, targetPath);
|
|
|
|
File.Exists(targetPath).Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void moveFile_should_not_move_overwrite_itself()
|
|
{
|
|
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderCopy.FullName);
|
|
|
|
var targetPath = _binFolderCopy.GetFiles("*.dll", SearchOption.AllDirectories).First().FullName;
|
|
|
|
Subject.MoveFile(targetPath, targetPath);
|
|
|
|
File.Exists(targetPath).Should().BeTrue();
|
|
ExceptionVerification.ExpectedWarns(1);
|
|
}
|
|
|
|
[Test]
|
|
public void CopyFolder_should_copy_folder()
|
|
{
|
|
|
|
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderCopy.FullName);
|
|
|
|
|
|
VerifyCopy();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void CopyFolder_should_overwrite_existing_folder()
|
|
{
|
|
|
|
|
|
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderCopy.FullName);
|
|
|
|
//Delete Random File
|
|
_binFolderCopy.Refresh();
|
|
_binFolderCopy.GetFiles("*.*", SearchOption.AllDirectories).First().Delete();
|
|
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderCopy.FullName);
|
|
|
|
|
|
VerifyCopy();
|
|
}
|
|
|
|
[Test]
|
|
public void MoveFolder_should_overwrite_existing_folder()
|
|
{
|
|
|
|
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderCopy.FullName);
|
|
Subject.CopyDirectory(_binFolder.FullName, _binFolderMove.FullName);
|
|
VerifyCopy();
|
|
|
|
|
|
Subject.MoveDirectory(_binFolderCopy.FullName, _binFolderMove.FullName);
|
|
|
|
|
|
VerifyMove();
|
|
}
|
|
|
|
|
|
[TestCase(@"C:\", @"C:\")]
|
|
[TestCase(@"C:\\", @"C:\")]
|
|
[TestCase(@"c:\", @"C:\")]
|
|
[TestCase(@"c:\Test", @"C:\Test\\")]
|
|
[TestCase(@"c:\\\\\Test", @"C:\Test\\")]
|
|
[TestCase(@"c:\Test\\\\", @"C:\Test\\")]
|
|
[TestCase(@"c:\Test", @"C:\Test\\")]
|
|
[TestCase(@"\\Server\pool", @"\\Server\pool")]
|
|
[TestCase(@"\\Server\pool\", @"\\Server\pool")]
|
|
[TestCase(@"\\Server\pool", @"\\Server\pool\")]
|
|
[TestCase(@"\\Server\pool\", @"\\Server\pool\")]
|
|
[TestCase(@"\\smallcheese\DRIVE_G\TV-C\Simspsons", @"\\smallcheese\DRIVE_G\TV-C\Simspsons")]
|
|
public void paths_should_be_equal(string first, string second)
|
|
{
|
|
if (first.StartsWith("\\"))
|
|
{
|
|
//verify the linux equivalent.
|
|
DiskProvider.PathEquals(first, second).Should().BeTrue();
|
|
}
|
|
|
|
DiskProvider.PathEquals(first, second).Should().BeTrue();
|
|
}
|
|
|
|
[TestCase(@"D:\Test", @"C:\Test\")]
|
|
[TestCase(@"D:\Test\Test", @"C:\TestTest\")]
|
|
public void paths_should_not_be_equal(string first, string second)
|
|
{
|
|
DiskProvider.PathEquals(first, second).Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void empty_folder_should_return_folder_modified_date()
|
|
{
|
|
var tempfolder = new DirectoryInfo(TempFolder);
|
|
Subject.GetLastFolderWrite(TempFolder).Should().Be(tempfolder.LastWriteTimeUtc);
|
|
}
|
|
|
|
[Test]
|
|
public void folder_should_return_correct_value_for_last_write()
|
|
{
|
|
var appPath = new AppDirectoryInfo().WorkingDirectory;
|
|
|
|
TestLogger.Info("Path is: {0}", appPath);
|
|
|
|
Subject.WriteAllText(Path.Combine(appPath,"newfile.txt"), "");
|
|
|
|
Subject.GetLastFolderWrite(appPath).Should().BeOnOrAfter(DateTime.UtcNow.AddMinutes(-10));
|
|
Subject.GetLastFolderWrite(appPath).Should().BeBefore(DateTime.UtcNow);
|
|
}
|
|
|
|
[Test]
|
|
[Explicit]
|
|
public void check_last_write()
|
|
{
|
|
Console.WriteLine(Subject.GetLastFolderWrite(@"C:\DRIVERS"));
|
|
Console.WriteLine(new DirectoryInfo(@"C:\DRIVERS").LastWriteTimeUtc);
|
|
}
|
|
|
|
[Test]
|
|
public void IsChildOfPath_should_return_true_when_it_is_a_child()
|
|
{
|
|
Subject.IsChildOfPath(@"C:\Test\TV", @"C:\Test").Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void IsChildOfPath_should_return_false_when_it_is_not_a_child()
|
|
{
|
|
Subject.IsChildOfPath(@"C:\NOT_Test\TV", @"C:\Test").Should().BeFalse();
|
|
}
|
|
|
|
private void VerifyCopy()
|
|
{
|
|
_binFolder.Refresh();
|
|
_binFolderCopy.Refresh();
|
|
|
|
_binFolderCopy.GetFiles("*.*", SearchOption.AllDirectories)
|
|
.Should().HaveSameCount(_binFolder.GetFiles("*.*", SearchOption.AllDirectories));
|
|
|
|
_binFolderCopy.GetDirectories().Should().HaveSameCount(_binFolder.GetDirectories());
|
|
}
|
|
|
|
private void VerifyMove()
|
|
{
|
|
_binFolder.Refresh();
|
|
_binFolderCopy.Refresh();
|
|
_binFolderMove.Refresh();
|
|
|
|
_binFolderCopy.Exists.Should().BeFalse();
|
|
|
|
_binFolderMove.GetFiles("*.*", SearchOption.AllDirectories)
|
|
.Should().HaveSameCount(_binFolder.GetFiles("*.*", SearchOption.AllDirectories));
|
|
|
|
_binFolderMove.GetDirectories().Should().HaveSameCount(_binFolder.GetDirectories());
|
|
}
|
|
}
|
|
}
|