2013-03-30 14:29:02 -07:00
|
|
|
|
using System;
|
2011-10-23 10:32:57 -07:00
|
|
|
|
using System.IO;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2011-11-13 10:16:31 -08:00
|
|
|
|
using NzbDrone.Test.Common;
|
2011-10-23 10:32:57 -07:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-03-30 14:29:02 -07:00
|
|
|
|
public class EnvironmentProviderTest : TestBase<EnvironmentProvider>
|
2011-10-23 10:32:57 -07:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void StartupPath_should_not_be_empty()
|
|
|
|
|
{
|
2013-03-30 14:29:02 -07:00
|
|
|
|
Subject.StartUpPath.Should().NotBeBlank();
|
|
|
|
|
Path.IsPathRooted(Subject.StartUpPath).Should().BeTrue("Path is not rooted");
|
2011-10-23 10:32:57 -07:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void ApplicationPath_should_not_be_empty()
|
|
|
|
|
{
|
2013-03-30 14:29:02 -07:00
|
|
|
|
Subject.WorkingDirectory.Should().NotBeBlank();
|
|
|
|
|
Path.IsPathRooted(Subject.WorkingDirectory).Should().BeTrue("Path is not rooted");
|
2011-10-23 10:32:57 -07:00
|
|
|
|
}
|
2011-10-23 22:54:09 -07:00
|
|
|
|
|
2011-11-02 19:09:00 -07:00
|
|
|
|
|
2011-11-20 19:42:45 -08:00
|
|
|
|
|
2011-10-23 22:54:09 -07:00
|
|
|
|
[Test]
|
|
|
|
|
public void IsProduction_should_return_false_when_run_within_nunit()
|
|
|
|
|
{
|
2012-03-06 18:59:43 -08:00
|
|
|
|
EnvironmentProvider.IsProduction.Should().BeFalse();
|
2011-10-23 22:54:09 -07:00
|
|
|
|
}
|
2011-11-08 09:48:34 -08:00
|
|
|
|
|
|
|
|
|
[TestCase("0.0.0.0")]
|
|
|
|
|
[TestCase("1.0.0.0")]
|
|
|
|
|
public void Application_version_should_not_be_default(string version)
|
|
|
|
|
{
|
2013-03-30 14:29:02 -07:00
|
|
|
|
Subject.Version.Should().NotBe(new Version(version));
|
2011-11-08 09:48:34 -08:00
|
|
|
|
}
|
2011-11-20 19:42:45 -08:00
|
|
|
|
|
2011-10-23 10:32:57 -07:00
|
|
|
|
}
|
|
|
|
|
}
|