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.
27 lines
855 B
27 lines
855 B
using System.IO;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
|
|
{
|
|
[TestFixture]
|
|
public class FreeDiskSpaceTest : CoreTest<DiskProvider>
|
|
{
|
|
[Test]
|
|
public void should_return_free_disk_space()
|
|
{
|
|
var result = Subject.GetAvilableSpace(Directory.GetCurrentDirectory());
|
|
|
|
//Checks to ensure that the free space on the first is greater than 0 (It should be in 99.99999999999999% of cases... I hope)
|
|
result.Should().BeGreaterThan(0);
|
|
}
|
|
[Test]
|
|
public void should_throw_if_drive_doesnt_exist()
|
|
{
|
|
Assert.Throws<DirectoryNotFoundException>(() => Subject.GetAvilableSpace(@"Z:\NOT_A_REAL_PATH\DOES_NOT_EXIST"));
|
|
}
|
|
}
|
|
}
|