2013-08-26 19:35:53 +00:00
|
|
|
|
using System;
|
|
|
|
|
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;
|
2013-07-26 05:41:38 +00:00
|
|
|
|
using NzbDrone.Test.Common;
|
2011-11-12 19:53:36 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-08-09 04:44:49 +00:00
|
|
|
|
public class FreeDiskSpaceFixture : 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-09-01 04:38:06 +00:00
|
|
|
|
var result = Subject.GetAvailableSpace(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData));
|
2013-04-30 06:11:49 +00:00
|
|
|
|
result.Should().BeGreaterThan(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_get_space_on_unc()
|
|
|
|
|
{
|
|
|
|
|
WindowsOnly();
|
2011-11-12 19:53:36 +00:00
|
|
|
|
|
2013-09-01 04:38:06 +00:00
|
|
|
|
var result = Subject.GetAvailableSpace(@"\\localhost\c$\Windows");
|
2011-11-12 19:53:36 +00:00
|
|
|
|
result.Should().BeGreaterThan(0);
|
|
|
|
|
}
|
2013-04-30 06:11:49 +00:00
|
|
|
|
|
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-08-09 05:03:33 +00:00
|
|
|
|
WindowsOnly();
|
|
|
|
|
|
2013-09-01 04:38:06 +00:00
|
|
|
|
Assert.Throws<DirectoryNotFoundException>(() => Subject.GetAvailableSpace(@"Z:\NOT_A_REAL_PATH\DOES_NOT_EXIST".AsOsAgnostic()));
|
2012-10-20 06:46:12 +00:00
|
|
|
|
}
|
2013-08-09 01:40:24 +00:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_get_space_on_folder_that_doesnt_exist()
|
|
|
|
|
{
|
2013-09-01 04:38:06 +00:00
|
|
|
|
var result = Subject.GetAvailableSpace(@"C:\I_DO_NOT_EXIST".AsOsAgnostic());
|
2013-08-09 01:40:24 +00:00
|
|
|
|
result.Should().BeGreaterThan(0);
|
|
|
|
|
}
|
2011-11-12 19:53:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|