2013-05-09 08:38:20 +02:00
|
|
|
|
using System.Collections.Generic;
|
2013-04-16 23:55:36 +02:00
|
|
|
|
using NUnit.Framework;
|
2013-05-08 07:47:15 +02:00
|
|
|
|
using NzbDrone.Common;
|
2013-08-13 07:08:37 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-04-24 03:56:00 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-06-28 03:08:27 +02:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-04-16 23:55:36 +02:00
|
|
|
|
using NzbDrone.Core.Download;
|
|
|
|
|
using NzbDrone.Core.Indexers;
|
2013-05-09 08:38:20 +02:00
|
|
|
|
using NzbDrone.Core.Jobs;
|
|
|
|
|
using NzbDrone.Core.Lifecycle;
|
2013-08-07 07:32:22 +02:00
|
|
|
|
using NzbDrone.Host;
|
2013-04-16 23:55:36 +02:00
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
using FluentAssertions;
|
2013-05-09 08:38:20 +02:00
|
|
|
|
using System.Linq;
|
2013-04-16 23:55:36 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.App.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class ContainerFixture : TestBase
|
|
|
|
|
{
|
2013-08-13 07:08:37 +02:00
|
|
|
|
StartupArguments args = new StartupArguments("first", "second");
|
2013-07-09 02:47:09 +02:00
|
|
|
|
|
2013-04-16 23:55:36 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_resolve_indexers()
|
|
|
|
|
{
|
2013-07-09 02:47:09 +02:00
|
|
|
|
MainAppContainerBuilder.BuildContainer(args).Resolve<IEnumerable<IIndexer>>().Should().NotBeEmpty();
|
2013-04-16 23:55:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_resolve_downlodclients()
|
|
|
|
|
{
|
2013-07-09 02:47:09 +02:00
|
|
|
|
MainAppContainerBuilder.BuildContainer(args).Resolve<IEnumerable<IDownloadClient>>().Should().NotBeEmpty();
|
2013-04-16 23:55:36 +02:00
|
|
|
|
}
|
2013-05-08 07:47:15 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void container_should_inject_itself()
|
|
|
|
|
{
|
2013-07-09 02:47:09 +02:00
|
|
|
|
var factory = MainAppContainerBuilder.BuildContainer(args).Resolve<IServiceFactory>();
|
2013-05-08 07:47:15 +02:00
|
|
|
|
|
|
|
|
|
factory.Build<IIndexerService>().Should().NotBeNull();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_resolve_command_executor_by_name()
|
|
|
|
|
{
|
|
|
|
|
var genericExecutor = typeof(IExecute<>).MakeGenericType(typeof(RssSyncCommand));
|
2013-07-09 02:47:09 +02:00
|
|
|
|
var container = MainAppContainerBuilder.BuildContainer(args);
|
2013-06-28 03:08:27 +02:00
|
|
|
|
DbFactory.RegisterDatabase(container);
|
2013-05-08 07:47:15 +02:00
|
|
|
|
|
2013-06-28 03:08:27 +02:00
|
|
|
|
var executor = container.Resolve(genericExecutor);
|
2013-05-08 07:47:15 +02:00
|
|
|
|
|
|
|
|
|
executor.Should().NotBeNull();
|
|
|
|
|
executor.Should().BeAssignableTo<IExecute<RssSyncCommand>>();
|
|
|
|
|
}
|
2013-05-09 08:38:20 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
[Ignore("need to fix this at some point")]
|
|
|
|
|
public void should_return_same_instance_of_singletons()
|
|
|
|
|
{
|
2013-07-09 02:47:09 +02:00
|
|
|
|
var container = MainAppContainerBuilder.BuildContainer(args);
|
2013-05-09 08:38:20 +02:00
|
|
|
|
|
|
|
|
|
var first = container.ResolveAll<IHandle<ApplicationShutdownRequested>>().OfType<Scheduler>().Single();
|
|
|
|
|
var second = container.ResolveAll<IHandle<ApplicationShutdownRequested>>().OfType<Scheduler>().Single();
|
|
|
|
|
|
|
|
|
|
first.Should().BeSameAs(second);
|
|
|
|
|
}
|
2013-04-16 23:55:36 +02:00
|
|
|
|
}
|
|
|
|
|
}
|