1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 21:12:56 +01:00
Radarr/NzbDrone.Common.Test/EnviromentProviderTest.cs

66 lines
1.9 KiB
C#
Raw Normal View History

// ReSharper disable InconsistentNaming
2011-11-08 18:48:34 +01:00
using System;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
2011-11-13 19:16:31 +01:00
using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test
{
[TestFixture]
2013-02-19 02:57:08 +01:00
public class EnvironmentProviderTest : TestBase
{
readonly EnvironmentProvider environmentProvider = new EnvironmentProvider();
[Test]
public void StartupPath_should_not_be_empty()
{
environmentProvider.StartUpPath.Should().NotBeBlank();
Path.IsPathRooted(environmentProvider.StartUpPath).Should().BeTrue("Path is not rooted");
}
[Test]
public void ApplicationPath_should_not_be_empty()
{
environmentProvider.ApplicationPath.Should().NotBeBlank();
Path.IsPathRooted(environmentProvider.ApplicationPath).Should().BeTrue("Path is not rooted");
}
2011-10-24 07:54:09 +02:00
2011-11-03 03:09:00 +01:00
[Test]
2011-11-21 04:42:45 +01:00
public void ApplicationPath_should_find_root_in_current_folder()
2011-11-03 03:09:00 +01:00
{
Directory.CreateDirectory(EnvironmentProvider.ROOT_MARKER);
environmentProvider.ApplicationPath.Should().BeEquivalentTo(Directory.GetCurrentDirectory());
2011-11-03 03:09:00 +01:00
}
2011-11-21 04:42:45 +01:00
[Test]
public void crawl_should_return_null_if_cant_find_root()
{
environmentProvider.CrawlToRoot("C:\\").Should().BeNullOrEmpty();
2011-11-21 04:42:45 +01:00
}
2011-10-24 07:54:09 +02:00
[Test]
public void IsProduction_should_return_false_when_run_within_nunit()
{
EnvironmentProvider.IsProduction.Should().BeFalse();
2011-10-24 07:54:09 +02:00
}
2011-11-08 18:48:34 +01:00
[TestCase("0.0.0.0")]
[TestCase("1.0.0.0")]
public void Application_version_should_not_be_default(string version)
{
environmentProvider.Version.Should().NotBe(new Version(version));
2011-11-08 18:48:34 +01:00
}
2011-11-21 04:42:45 +01:00
[TearDown]
public void TearDown()
{
if (Directory.Exists(EnvironmentProvider.ROOT_MARKER))
Directory.Delete(EnvironmentProvider.ROOT_MARKER);
2011-11-21 04:42:45 +01:00
}
}
}