2011-11-12 20:53:36 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2011-11-14 01:22:18 +01:00
|
|
|
|
|
2011-11-12 20:53:36 +01:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
2011-11-13 05:07:06 +01:00
|
|
|
|
using NzbDrone.Common;
|
2011-11-12 20:53:36 +01:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-11-14 01:22:18 +01:00
|
|
|
|
using NzbDrone.Test.Common.AutoMoq;
|
2011-11-12 20:53:36 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.DiskProviderTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2011-11-13 08:27:16 +01:00
|
|
|
|
public class FreeDiskSpaceTest : CoreTest
|
2011-11-12 20:53:36 +01:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void FreeDiskSpace()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
2011-12-15 05:15:53 +01:00
|
|
|
|
|
2011-11-12 20:53:36 +01:00
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
var di = new DirectoryInfo(Directory.GetCurrentDirectory());
|
2011-12-15 05:15:53 +01:00
|
|
|
|
var result = Mocker.Resolve<DiskProvider>().FreeDiskSpace(di);
|
2011-11-12 20:53:36 +01:00
|
|
|
|
|
|
|
|
|
//Asert
|
|
|
|
|
//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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|