Radarr/NzbDrone.Common.Test/EventingTests/MessageAggregatorEventTests.cs

91 lines
2.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2013-02-23 20:09:44 +00:00
using Moq;
using NUnit.Framework;
using NzbDrone.Common.Messaging;
2013-02-23 20:09:44 +00:00
using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test.EventingTests
{
[TestFixture]
public class MessageAggregatorEventTests : TestBase
2013-02-23 20:09:44 +00:00
{
[Test]
public void should_publish_event_to_handlers()
{
var eventA = new EventA();
var intHandler = new Mock<IHandle<EventA>>();
var aggregator = new MessageAggregator(TestLogger, () => new List<IProcessMessage> { intHandler.Object });
aggregator.PublishEvent(eventA);
2013-02-23 20:09:44 +00:00
intHandler.Verify(c => c.Handle(eventA), Times.Once());
2013-02-23 20:09:44 +00:00
}
[Test]
public void should_publish_to_more_than_one_handler()
{
var eventA = new EventA();
var intHandler1 = new Mock<IHandle<EventA>>();
var intHandler2 = new Mock<IHandle<EventA>>();
var aggregator = new MessageAggregator(TestLogger, () => new List<IProcessMessage> { intHandler1.Object, intHandler2.Object });
aggregator.PublishEvent(eventA);
2013-02-23 20:09:44 +00:00
intHandler1.Verify(c => c.Handle(eventA), Times.Once());
intHandler2.Verify(c => c.Handle(eventA), Times.Once());
2013-02-23 20:09:44 +00:00
}
2013-02-23 20:34:51 +00:00
2013-02-23 20:09:44 +00:00
[Test]
public void should_not_publish_to_incompatible_handlers()
{
var eventA = new EventA();
var aHandler = new Mock<IHandle<EventA>>();
var bHandler = new Mock<IHandle<EventB>>();
var aggregator = new MessageAggregator(TestLogger, () => new List<IProcessMessage> { aHandler.Object, bHandler.Object });
2013-02-23 20:09:44 +00:00
aggregator.PublishEvent(eventA);
2013-02-23 20:09:44 +00:00
aHandler.Verify(c => c.Handle(eventA), Times.Once());
bHandler.Verify(c => c.Handle(It.IsAny<EventB>()), Times.Never());
2013-02-23 20:09:44 +00:00
}
[Test]
public void broken_handler_should_not_effect_others_handler()
{
var eventA = new EventA();
var intHandler1 = new Mock<IHandle<EventA>>();
var intHandler2 = new Mock<IHandle<EventA>>();
var intHandler3 = new Mock<IHandle<EventA>>();
intHandler2.Setup(c => c.Handle(It.IsAny<EventA>()))
.Throws(new NotImplementedException());
var aggregator = new MessageAggregator(TestLogger, () => new List<IProcessMessage> { intHandler1.Object, intHandler2.Object , intHandler3.Object});
aggregator.PublishEvent(eventA);
intHandler1.Verify(c => c.Handle(eventA), Times.Once());
intHandler3.Verify(c => c.Handle(eventA), Times.Once());
ExceptionVerification.ExpectedErrors(1);
}
2013-02-23 20:09:44 +00:00
}
public class EventA : IEvent
{
}
public class EventB : IEvent
{
}
2013-02-23 20:09:44 +00:00
}