Lidarr/NzbDrone.Core.Test/ProviderTests/DiskProviderTests/FreeDiskSpaceFixture.cs

46 lines
1.3 KiB
C#
Raw Normal View History

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]
public class FreeDiskSpaceFixture : CoreTest<DiskProvider>
2011-11-12 19:53:36 +00:00
{
[Test]
public void should_return_free_disk_space()
2011-11-12 19:53:36 +00:00
{
2013-08-26 19:35:53 +00:00
var result = Subject.GetAvilableSpace(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData));
result.Should().BeGreaterThan(0);
}
[Test]
public void should_be_able_to_get_space_on_unc()
{
WindowsOnly();
2011-11-12 19:53:36 +00:00
var result = Subject.GetAvilableSpace(@"\\localhost\c$\Windows");
2011-11-12 19:53:36 +00:00
result.Should().BeGreaterThan(0);
}
[Test]
public void should_throw_if_drive_doesnt_exist()
{
WindowsOnly();
2013-07-26 05:41:38 +00:00
Assert.Throws<DirectoryNotFoundException>(() => Subject.GetAvilableSpace(@"Z:\NOT_A_REAL_PATH\DOES_NOT_EXIST".AsOsAgnostic()));
}
[Test]
public void should_be_able_to_get_space_on_folder_that_doesnt_exist()
{
var result = Subject.GetAvilableSpace(@"C:\I_DO_NOT_EXIST".AsOsAgnostic());
result.Should().BeGreaterThan(0);
}
2011-11-12 19:53:36 +00:00
}
}