2011-04-10 02:44:01 +00:00
|
|
|
|
using AutoMoq;
|
2011-06-17 02:27:10 +00:00
|
|
|
|
using FluentAssertions;
|
2011-06-02 04:50:10 +00:00
|
|
|
|
using NUnit.Framework;
|
2011-04-04 03:50:12 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-05-19 03:55:35 +00:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
2011-10-20 23:42:17 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
2010-09-24 06:16:43 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2010-09-24 18:14:15 +00:00
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-05-19 03:55:35 +00:00
|
|
|
|
public class ConfigProviderTest : TestBase
|
2010-09-24 06:16:43 +00:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
2011-06-17 02:27:10 +00:00
|
|
|
|
public void Add_new_value_to_database()
|
2010-09-24 06:16:43 +00:00
|
|
|
|
{
|
2010-09-24 18:14:15 +00:00
|
|
|
|
const string key = "MY_KEY";
|
|
|
|
|
const string value = "MY_VALUE";
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
2011-06-17 02:27:10 +00:00
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
var db = MockLib.GetEmptyDatabase();
|
|
|
|
|
mocker.SetConstant(db);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<ConfigProvider>().SetValue(key, value);
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
mocker.Resolve<ConfigProvider>().GetValue(key, "").Should().Be(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_value_from_database()
|
|
|
|
|
{
|
|
|
|
|
const string key = "MY_KEY";
|
|
|
|
|
const string value = "MY_VALUE";
|
2011-04-07 03:34:48 +00:00
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
2011-06-17 02:27:10 +00:00
|
|
|
|
var db = MockLib.GetEmptyDatabase();
|
|
|
|
|
mocker.SetConstant(db);
|
2011-04-07 03:34:48 +00:00
|
|
|
|
|
2011-06-17 02:27:10 +00:00
|
|
|
|
db.Insert(new Config { Key = key, Value = value });
|
2011-06-18 02:51:53 +00:00
|
|
|
|
db.Insert(new Config { Key = "Other Key", Value = "OtherValue" });
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-06-17 02:27:10 +00:00
|
|
|
|
var result = mocker.Resolve<ConfigProvider>().GetValue(key, "");
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-06-17 02:27:10 +00:00
|
|
|
|
result.Should().Be(value);
|
2010-09-24 06:16:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-17 02:27:10 +00:00
|
|
|
|
|
2010-09-24 06:16:43 +00:00
|
|
|
|
[Test]
|
2011-06-17 02:27:10 +00:00
|
|
|
|
public void Get_value_should_return_default_when_no_value()
|
2010-09-24 06:16:43 +00:00
|
|
|
|
{
|
2010-09-24 18:14:15 +00:00
|
|
|
|
const string key = "MY_KEY";
|
|
|
|
|
const string value = "MY_VALUE";
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
2011-04-07 03:34:48 +00:00
|
|
|
|
var mocker = new AutoMoqer();
|
2011-06-17 02:27:10 +00:00
|
|
|
|
var db = MockLib.GetEmptyDatabase();
|
|
|
|
|
mocker.SetConstant(db);
|
2011-04-07 03:34:48 +00:00
|
|
|
|
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-06-17 02:27:10 +00:00
|
|
|
|
var result = mocker.Resolve<ConfigProvider>().GetValue(key, value);
|
2010-09-24 06:16:43 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-06-17 02:27:10 +00:00
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
}
|
2011-06-02 04:50:10 +00:00
|
|
|
|
|
2011-06-17 02:27:10 +00:00
|
|
|
|
[Test]
|
2011-06-18 02:51:53 +00:00
|
|
|
|
public void New_value_should_update_old_value_new_value()
|
2011-06-17 02:27:10 +00:00
|
|
|
|
{
|
|
|
|
|
const string key = "MY_KEY";
|
|
|
|
|
const string originalValue = "OLD_VALUE";
|
|
|
|
|
const string newValue = "NEW_VALUE";
|
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
var db = MockLib.GetEmptyDatabase();
|
|
|
|
|
mocker.SetConstant(db);
|
|
|
|
|
|
|
|
|
|
db.Insert(new Config { Key = key, Value = originalValue });
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<ConfigProvider>().SetValue(key, newValue);
|
|
|
|
|
var result = mocker.Resolve<ConfigProvider>().GetValue(key, "");
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().Be(newValue);
|
|
|
|
|
db.Fetch<Config>().Should().HaveCount(1);
|
2010-09-24 06:16:43 +00:00
|
|
|
|
}
|
2011-06-17 02:27:10 +00:00
|
|
|
|
|
2011-06-18 02:51:53 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void New_value_should_update_old_value_same_value()
|
|
|
|
|
{
|
|
|
|
|
const string key = "MY_KEY";
|
|
|
|
|
const string value = "OLD_VALUE";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
var db = MockLib.GetEmptyDatabase();
|
|
|
|
|
mocker.SetConstant(db);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<ConfigProvider>().SetValue(key, value);
|
|
|
|
|
mocker.Resolve<ConfigProvider>().SetValue(key, value);
|
|
|
|
|
var result = mocker.Resolve<ConfigProvider>().GetValue(key, "");
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().Be(value);
|
|
|
|
|
db.Fetch<Config>().Should().HaveCount(1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-24 06:16:43 +00:00
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|