2013-07-26 07:55:19 +02:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
2011-10-23 19:32:57 +02:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2013-06-28 02:04:52 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2011-11-13 19:16:31 +01:00
|
|
|
|
using NzbDrone.Test.Common;
|
2011-10-23 19:32:57 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-07-05 06:43:28 +02:00
|
|
|
|
public class IAppDirectoryInfoTest : TestBase<AppFolderInfo>
|
2011-10-23 19:32:57 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void StartupPath_should_not_be_empty()
|
|
|
|
|
{
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Subject.StartUpFolder.Should().NotBeBlank();
|
|
|
|
|
Path.IsPathRooted(Subject.StartUpFolder).Should().BeTrue("Path is not rooted");
|
2011-10-23 19:32:57 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void ApplicationPath_should_not_be_empty()
|
|
|
|
|
{
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Subject.AppDataFolder.Should().NotBeBlank();
|
|
|
|
|
Path.IsPathRooted(Subject.AppDataFolder).Should().BeTrue("Path is not rooted");
|
2011-10-23 19:32:57 +02:00
|
|
|
|
}
|
2011-10-24 07:54:09 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void IsProduction_should_return_false_when_run_within_nunit()
|
|
|
|
|
{
|
2013-07-26 07:55:19 +02:00
|
|
|
|
RuntimeInfo.IsProduction.Should().BeFalse("Process name is " + Process.GetCurrentProcess().ProcessName);
|
2011-10-24 07:54:09 +02:00
|
|
|
|
}
|
2013-08-13 07:08:37 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_use_path_from_arg_if_provided()
|
|
|
|
|
{
|
|
|
|
|
var args = new StartupArguments("-data=\"c:\\users\\test\\\"");
|
|
|
|
|
|
|
|
|
|
Mocker.SetConstant<IStartupArguments>(args);
|
|
|
|
|
Subject.AppDataFolder.Should().Be("c:\\users\\test\\");
|
|
|
|
|
}
|
2011-10-23 19:32:57 +02:00
|
|
|
|
}
|
|
|
|
|
}
|