Lidarr/NzbDrone.Common.Test/DiskProviderTests/IsParentFixture.cs

44 lines
1.1 KiB
C#
Raw Normal View History

using System.IO;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test.DiskProviderTests
{
[TestFixture]
2013-08-30 01:55:42 +00:00
public class FreeSpaceFixture : TestBase<DiskProvider>
{
[Test]
2013-08-30 01:55:42 +00:00
public void should_get_free_space_for_folder()
{
2013-08-30 01:55:42 +00:00
var path = @"C:\".AsOsAgnostic();
2013-08-12 04:57:10 +00:00
Subject.GetAvailableSpace(path).Should().NotBe(0);
}
[Test]
2013-08-30 01:55:42 +00:00
public void should_get_free_space_for_folder_that_doesnt_exist()
{
2013-08-30 01:55:42 +00:00
var path = @"C:\".AsOsAgnostic();
2013-08-12 04:57:10 +00:00
Subject.GetAvailableSpace(Path.Combine(path, "invalidFolder")).Should().NotBe(0);
}
2013-08-30 01:55:42 +00:00
[Test]
2013-08-30 01:55:42 +00:00
public void should_get_free_space_for_drive_that_doesnt_exist()
{
2013-08-30 01:55:42 +00:00
WindowsOnly();
2013-08-12 04:57:10 +00:00
Assert.Throws<DirectoryNotFoundException>(() => Subject.GetAvailableSpace("J:\\").Should().NotBe(0));
}
[Test]
2013-09-01 05:30:21 +00:00
public void should_be_able_to_check_space_on_ramdrive()
{
LinuxOnly();
2013-09-01 05:30:21 +00:00
Subject.GetAvailableSpace("/run/").Should().NotBe(0);
}
}
}