mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Download;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Jobs;
|
|
using NzbDrone.Core.Lifecycle;
|
|
using NzbDrone.Test.Common;
|
|
using FluentAssertions;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.App.Test
|
|
{
|
|
[TestFixture]
|
|
public class ContainerFixture : TestBase
|
|
{
|
|
[Test]
|
|
public void should_be_able_to_resolve_indexers()
|
|
{
|
|
MainAppContainerBuilder.BuildContainer().Resolve<IEnumerable<IIndexer>>().Should().NotBeEmpty();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_able_to_resolve_downlodclients()
|
|
{
|
|
MainAppContainerBuilder.BuildContainer().Resolve<IEnumerable<IDownloadClient>>().Should().NotBeEmpty();
|
|
}
|
|
|
|
[Test]
|
|
public void container_should_inject_itself()
|
|
{
|
|
var factory = MainAppContainerBuilder.BuildContainer().Resolve<IServiceFactory>();
|
|
|
|
factory.Build<IIndexerService>().Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_resolve_command_executor_by_name()
|
|
{
|
|
var genericExecutor = typeof(IExecute<>).MakeGenericType(typeof(RssSyncCommand));
|
|
|
|
var executor = MainAppContainerBuilder.BuildContainer().Resolve(genericExecutor);
|
|
|
|
executor.Should().NotBeNull();
|
|
executor.Should().BeAssignableTo<IExecute<RssSyncCommand>>();
|
|
}
|
|
|
|
[Test]
|
|
[Ignore("need to fix this at some point")]
|
|
public void should_return_same_instance_of_singletons()
|
|
{
|
|
var container = MainAppContainerBuilder.BuildContainer();
|
|
|
|
var first = container.ResolveAll<IHandle<ApplicationShutdownRequested>>().OfType<Scheduler>().Single();
|
|
var second = container.ResolveAll<IHandle<ApplicationShutdownRequested>>().OfType<Scheduler>().Single();
|
|
|
|
first.Should().BeSameAs(second);
|
|
}
|
|
}
|
|
} |