1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00
Sonarr/NzbDrone.Common.Test/EnviromentProviderTest.cs

52 lines
1.5 KiB
C#
Raw Normal View History

// ReSharper disable InconsistentNaming
2011-11-08 20:48:34 +03:00
using System;
using System.IO;
using FluentAssertions;
using NUnit.Framework;
namespace NzbDrone.Common.Test
{
[TestFixture]
public class EnviromentProviderTest
{
2011-11-08 20:48:34 +03:00
readonly EnviromentProvider enviromentProvider = new EnviromentProvider();
[Test]
public void StartupPath_should_not_be_empty()
{
2011-11-08 20:48:34 +03:00
enviromentProvider.StartUpPath.Should().NotBeBlank();
Path.IsPathRooted(enviromentProvider.StartUpPath).Should().BeTrue("Path is not rooted");
}
[Test]
public void ApplicationPath_should_not_be_empty()
{
2011-11-08 20:48:34 +03:00
enviromentProvider.ApplicationPath.Should().NotBeBlank();
Path.IsPathRooted(enviromentProvider.ApplicationPath).Should().BeTrue("Path is not rooted");
}
2011-10-24 08:54:09 +03:00
2011-11-03 05:09:00 +03:00
[Test]
public void ApplicationPath_should_find_iis_in_current_folder()
{
Directory.CreateDirectory(EnviromentProvider.IIS_FOLDER_NAME);
2011-11-08 20:48:34 +03:00
enviromentProvider.ApplicationPath.Should().BeEquivalentTo(Directory.GetCurrentDirectory());
2011-11-03 05:09:00 +03:00
}
2011-10-24 08:54:09 +03:00
[Test]
public void IsProduction_should_return_false_when_run_within_nunit()
{
EnviromentProvider.IsProduction.Should().BeFalse();
}
2011-11-08 20:48:34 +03:00
[TestCase("0.0.0.0")]
[TestCase("1.0.0.0")]
public void Application_version_should_not_be_default(string version)
{
enviromentProvider.Version.Should().NotBe(new Version(version));
}
}
}