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