Lidarr/NzbDrone.Common.Test/DiskProviderTests/IsParentFixture.cs

41 lines
1022 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2013-08-30 01:55:42 +00:00
using System.IO;
using System.Linq;
using System.Text;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test.DiskProviderTests
{
[TestFixture]
2013-08-30 01:55:42 +00:00
public class FreeSpaceFixture : TestBase<DiskProvider>
{
[Test]
2013-08-30 01:55:42 +00:00
public void should_get_free_space_for_folder()
{
2013-08-30 01:55:42 +00:00
var path = @"C:\".AsOsAgnostic();
2013-08-12 04:57:10 +00:00
2013-08-30 01:55:42 +00:00
Subject.GetAvilableSpace(path).Should().NotBe(0);
}
[Test]
2013-08-30 01:55:42 +00:00
public void should_get_free_space_for_folder_that_doesnt_exist()
{
2013-08-30 01:55:42 +00:00
var path = @"C:\".AsOsAgnostic();
2013-08-12 04:57:10 +00:00
2013-08-30 01:55:42 +00:00
Subject.GetAvilableSpace(Path.Combine(path, "invalidFolder")).Should().NotBe(0);
}
2013-08-30 01:55:42 +00:00
[Test]
2013-08-30 01:55:42 +00:00
public void should_get_free_space_for_drive_that_doesnt_exist()
{
2013-08-30 01:55:42 +00:00
WindowsOnly();
2013-08-12 04:57:10 +00:00
2013-08-30 02:05:33 +00:00
Assert.Throws<DirectoryNotFoundException>(() => Subject.GetAvilableSpace("J:\\").Should().NotBe(0));
}
}
}