2012-02-07 05:08:07 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Linq;
|
2013-01-03 01:09:13 +00:00
|
|
|
|
using Autofac;
|
2012-02-04 05:28:50 +00:00
|
|
|
|
using FluentAssertions;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NLog;
|
2012-02-04 05:28:50 +00:00
|
|
|
|
using NUnit.Framework;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Common;
|
2013-01-03 01:09:13 +00:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2012-02-04 05:28:50 +00:00
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
using PetaPoco;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.Integeration
|
|
|
|
|
{
|
|
|
|
|
[TestFixture(Category = "ServiceIngeneration")]
|
2013-02-02 20:54:03 +00:00
|
|
|
|
public class ServiceIntegerationFixture : SqlCeTest
|
2012-02-04 05:28:50 +00:00
|
|
|
|
{
|
2013-01-03 01:09:13 +00:00
|
|
|
|
private IContainer _container;
|
2012-02-04 05:28:50 +00:00
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
WithRealDb();
|
2013-01-03 01:09:13 +00:00
|
|
|
|
var builder = new CentralDispatch().ContainerBuilder;
|
|
|
|
|
|
|
|
|
|
builder.Register(c => Db)
|
|
|
|
|
.As<IDatabase>();
|
|
|
|
|
|
|
|
|
|
_container = builder.Build();
|
2012-02-04 05:28:50 +00:00
|
|
|
|
|
|
|
|
|
Mocker.GetMock<ConfigProvider>().SetupGet(s => s.ServiceRootUrl)
|
2012-04-14 00:57:31 +00:00
|
|
|
|
.Returns("http://services.nzbdrone.com");
|
2012-02-04 05:28:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_update_scene_mapping()
|
|
|
|
|
{
|
2013-01-03 01:09:13 +00:00
|
|
|
|
_container.Resolve<SceneMappingProvider>().UpdateMappings();
|
2012-02-04 05:28:50 +00:00
|
|
|
|
var mappings = Db.Fetch<SceneMapping>();
|
|
|
|
|
|
|
|
|
|
mappings.Should().NotBeEmpty();
|
|
|
|
|
|
|
|
|
|
mappings.Should().OnlyContain(c => !string.IsNullOrWhiteSpace(c.CleanTitle));
|
|
|
|
|
mappings.Should().OnlyContain(c => !string.IsNullOrWhiteSpace(c.SceneName));
|
|
|
|
|
mappings.Should().OnlyContain(c => c.SeriesId > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_get_daily_series_ids()
|
|
|
|
|
{
|
2013-01-03 01:09:13 +00:00
|
|
|
|
var dailySeries = _container.Resolve<ReferenceDataProvider>().GetDailySeriesIds();
|
2012-02-04 05:28:50 +00:00
|
|
|
|
|
|
|
|
|
dailySeries.Should().NotBeEmpty();
|
|
|
|
|
dailySeries.Should().OnlyContain(c => c > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_submit_exceptions()
|
|
|
|
|
{
|
2012-04-30 01:24:24 +00:00
|
|
|
|
ReportingService.SetupExceptronDriver();
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2012-04-30 01:24:24 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ThrowException();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
var log = new LogEventInfo
|
|
|
|
|
{
|
|
|
|
|
LoggerName = "LoggerName.LoggerName.LoggerName.LoggerName",
|
|
|
|
|
Exception = e,
|
|
|
|
|
Message = "New message string. New message string.",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var hash = ReportingService.ReportException(log);
|
|
|
|
|
|
|
|
|
|
hash.Should().HaveLength(8);
|
|
|
|
|
}
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
2012-02-04 05:28:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|