Files
Umbraco-CMS/tests/Umbraco.Tests.UnitTests/Umbraco.Core/Scoping/ScopedNotificationPublisherTests.cs
Paul Johnson 00133e880d Move test projects from src/ to tests/ (#11357)
* Update gitignore

* Move csproj

* Update project references

* Update solutions

* Update build scripts

* Tests used to share editorconfig with projects in src

* Fix broken tests.

* Stop copying around .editorconfig

merged root one with linting

* csharp_style_expression_bodied -> suggestion

* Move StyleCop rulesets to matching directories and update shared build properties

* Remove legacy build files, update NuGet.cofig and solution files

* Restore myget source

* Clean up .gitignore

* Update .gitignore

* Move new test classes to tests after merge

* Gitignore + nuget config

* Move new test

Co-authored-by: Ronald Barendse <ronald@barend.se>
2021-10-18 08:14:04 +01:00

105 lines
4.4 KiB
C#

using System;
using System.Linq;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using Microsoft.Extensions.Options;
using Moq;
using NUnit.Framework;
using Umbraco.Cms.Core.Cache;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Hosting;
using Umbraco.Cms.Core.IO;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Notifications;
using Umbraco.Cms.Core.PropertyEditors;
using Umbraco.Cms.Core.Scoping;
using Umbraco.Cms.Core.Strings;
using Umbraco.Cms.Infrastructure.Persistence;
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Core.Scoping
{
[TestFixture]
public class ScopedNotificationPublisherTests
{
[Test]
public void ScopeUsesInjectedNotificationPublisher()
{
var notificationPublisherMock = new Mock<IScopedNotificationPublisher>();
ScopeProvider scopeProvider = GetScopeProvider(out var eventAggregatorMock);
using (IScope scope = scopeProvider.CreateScope(notificationPublisher: notificationPublisherMock.Object))
{
scope.Notifications.Publish(Mock.Of<INotification>());
scope.Notifications.PublishCancelable(Mock.Of<ICancelableNotification>());
notificationPublisherMock.Verify(x => x.Publish(It.IsAny<INotification>()), Times.Once);
notificationPublisherMock.Verify(x => x.PublishCancelable(It.IsAny<ICancelableNotification>()), Times.Once);
// Ensure that the custom scope provider is till used in inner scope.
using (IScope innerScope = scopeProvider.CreateScope())
{
innerScope.Notifications.Publish(Mock.Of<INotification>());
innerScope.Notifications.PublishCancelable(Mock.Of<ICancelableNotification>());
notificationPublisherMock.Verify(x => x.Publish(It.IsAny<INotification>()), Times.Exactly(2));
notificationPublisherMock.Verify(x => x.PublishCancelable(It.IsAny<ICancelableNotification>()), Times.Exactly(2));
}
// Ensure scope exit is not called until outermost scope is being disposed
notificationPublisherMock.Verify(x => x.ScopeExit(It.IsAny<bool>()), Times.Never());
}
notificationPublisherMock.Verify(x => x.ScopeExit(It.IsAny<bool>()), Times.Once());
// Ensure that the event aggregator isn't used directly.
eventAggregatorMock.Verify(x => x.Publish(It.IsAny<INotification>()), Times.Never);
eventAggregatorMock.Verify(x => x.PublishCancelable(It.IsAny<ICancelableNotification>()), Times.Never);
}
[Test]
public void SpecifyingNotificationPublishInInnerScopeCausesError()
{
var notificationPublisherMock = new Mock<IScopedNotificationPublisher>();
ScopeProvider scopeProvider = GetScopeProvider(out var eventAggregatorMock);
using (var scope = scopeProvider.CreateScope())
{
Assert.Throws<ArgumentException>(() => scopeProvider.CreateScope(notificationPublisher: notificationPublisherMock.Object));
}
}
private ScopeProvider GetScopeProvider(out Mock<IEventAggregator> eventAggregatorMock)
{
NullLoggerFactory loggerFactory = NullLoggerFactory.Instance;
var fileSystems = new FileSystems(
loggerFactory,
Mock.Of<IIOHelper>(),
Options.Create(new GlobalSettings()),
Mock.Of<IHostingEnvironment>());
var mediaFileManager = new MediaFileManager(
Mock.Of<IFileSystem>(),
Mock.Of<IMediaPathScheme>(),
loggerFactory.CreateLogger<MediaFileManager>(),
Mock.Of<IShortStringHelper>(),
Mock.Of<IServiceProvider>(),
Options.Create(new ContentSettings()));
eventAggregatorMock = new Mock<IEventAggregator>();
return new ScopeProvider(
Mock.Of<IUmbracoDatabaseFactory>(),
fileSystems,
Options.Create(new CoreDebugSettings()),
mediaFileManager,
loggerFactory.CreateLogger<ScopeProvider>(),
loggerFactory,
Mock.Of<IRequestCache>(),
eventAggregatorMock.Object
);
}
}
}