2013-05-10 23:53:50 +00:00
|
|
|
|
using System.IO;
|
2011-10-01 03:12:18 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2011-11-13 07:27:16 +00:00
|
|
|
|
using NzbDrone.Common.Model;
|
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
|
2011-11-14 00:22:18 +00:00
|
|
|
|
namespace NzbDrone.Common.Test
|
2011-10-01 03:12:18 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-05-10 23:53:50 +00:00
|
|
|
|
|
|
|
|
|
public class ConfigFileProviderTest : TestBase<ConfigFileProvider>
|
2011-10-01 03:12:18 +00:00
|
|
|
|
{
|
2011-10-01 07:04:06 +00:00
|
|
|
|
[SetUp]
|
|
|
|
|
public void SetUp()
|
|
|
|
|
{
|
2011-11-13 07:27:16 +00:00
|
|
|
|
WithTempAsAppPath();
|
2011-11-03 05:04:14 +00:00
|
|
|
|
|
2011-10-01 07:04:06 +00:00
|
|
|
|
//Reset config file
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var configFile = Mocker.Resolve<IEnvironmentProvider>().GetConfigPath();
|
2011-10-17 20:20:09 +00:00
|
|
|
|
|
|
|
|
|
if (File.Exists(configFile))
|
|
|
|
|
File.Delete(configFile);
|
2011-10-01 07:04:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-01 03:12:18 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void GetValue_Success()
|
|
|
|
|
{
|
|
|
|
|
const string key = "Port";
|
|
|
|
|
const string value = "8989";
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.GetValue(key, value);
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 03:12:18 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetInt_Success()
|
|
|
|
|
{
|
|
|
|
|
const string key = "Port";
|
|
|
|
|
const int value = 8989;
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.GetValueInt(key, value);
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 03:12:18 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetBool_Success()
|
|
|
|
|
{
|
|
|
|
|
const string key = "LaunchBrowser";
|
2011-10-07 04:36:47 +00:00
|
|
|
|
const bool value = true;
|
2011-10-01 03:12:18 +00:00
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.GetValueBoolean(key, value);
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 03:12:18 +00:00
|
|
|
|
result.Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetLaunchBrowser_Success()
|
|
|
|
|
{
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.LaunchBrowser;
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 03:12:18 +00:00
|
|
|
|
result.Should().Be(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetPort_Success()
|
|
|
|
|
{
|
|
|
|
|
const int value = 8989;
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.Port;
|
|
|
|
|
|
|
|
|
|
|
2011-10-01 03:12:18 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
2011-10-01 07:04:06 +00:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SetValue_bool()
|
|
|
|
|
{
|
|
|
|
|
const string key = "LaunchBrowser";
|
|
|
|
|
const bool value = false;
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Subject.SetValue(key, value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var result = Subject.LaunchBrowser;
|
2011-10-01 07:04:06 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SetValue_int()
|
|
|
|
|
{
|
|
|
|
|
const string key = "Port";
|
|
|
|
|
const int value = 12345;
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Subject.SetValue(key, value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var result = Subject.Port;
|
2011-10-01 07:04:06 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
2011-10-07 04:36:47 +00:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetValue_New_Key()
|
|
|
|
|
{
|
|
|
|
|
const string key = "Hello";
|
|
|
|
|
const string value = "World";
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.GetValue(key, value);
|
|
|
|
|
|
|
|
|
|
|
2011-10-07 04:36:47 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetAuthenticationType_No_Existing_Value()
|
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.AuthenticationType;
|
|
|
|
|
|
2011-10-07 04:36:47 +00:00
|
|
|
|
result.Should().Be(AuthenticationType.Anonymous);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2013-05-22 04:06:25 +00:00
|
|
|
|
public void GetAuthenticationType_Basic()
|
2011-10-07 04:36:47 +00:00
|
|
|
|
{
|
2013-05-22 04:06:25 +00:00
|
|
|
|
Subject.SetValue("AuthenticationType", AuthenticationType.Basic);
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
var result = Subject.AuthenticationType;
|
2013-05-22 04:06:25 +00:00
|
|
|
|
|
|
|
|
|
result.Should().Be(AuthenticationType.Basic);
|
2011-10-07 04:36:47 +00:00
|
|
|
|
}
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Guid_should_return_the_same_every_time()
|
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
|
|
|
|
|
|
var firstResponse = Subject.Guid;
|
|
|
|
|
var secondResponse = Subject.Guid;
|
|
|
|
|
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
secondResponse.Should().Be(firstResponse);
|
|
|
|
|
}
|
2011-10-01 03:12:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|