2013-04-15 01:41:39 +00:00
|
|
|
|
using System.IO;
|
2011-11-12 19:53:36 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2011-11-13 04:07:06 +00:00
|
|
|
|
using NzbDrone.Common;
|
2011-11-12 19:53:36 +00:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-02-17 04:33:56 +00:00
|
|
|
|
public class FreeDiskSpaceTest : CoreTest<DiskProvider>
|
2011-11-12 19:53:36 +00:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
2012-10-20 06:46:12 +00:00
|
|
|
|
public void should_return_free_disk_space()
|
2011-11-12 19:53:36 +00:00
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
|
var result = Subject.GetAvilableSpace(Directory.GetCurrentDirectory());
|
2011-11-12 19:53:36 +00:00
|
|
|
|
|
|
|
|
|
//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);
|
|
|
|
|
}
|
2012-10-20 06:46:12 +00:00
|
|
|
|
[Test]
|
2013-02-17 04:33:56 +00:00
|
|
|
|
public void should_throw_if_drive_doesnt_exist()
|
2012-10-20 06:46:12 +00:00
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
|
Assert.Throws<DirectoryNotFoundException>(() => Subject.GetAvilableSpace(@"Z:\NOT_A_REAL_PATH\DOES_NOT_EXIST"));
|
2012-10-20 06:46:12 +00:00
|
|
|
|
}
|
2011-11-12 19:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|