* 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>
46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using NUnit.Framework;
|
|
using Umbraco.Cms.Core.DependencyInjection;
|
|
using Umbraco.Cms.Core.Security;
|
|
using Umbraco.Cms.Tests.Integration.Testing;
|
|
using Umbraco.Extensions;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Web.BackOffice
|
|
{
|
|
[TestFixture]
|
|
public class UmbracoBackOfficeServiceCollectionExtensionsTests : UmbracoIntegrationTest
|
|
{
|
|
protected override void CustomTestSetup(IUmbracoBuilder builder) => builder.AddBackOfficeIdentity();
|
|
|
|
[Test]
|
|
public void AddUmbracoBackOfficeIdentity_ExpectBackOfficeUserStoreResolvable()
|
|
{
|
|
IUserStore<BackOfficeIdentityUser> userStore = Services.GetService<IUserStore<BackOfficeIdentityUser>>();
|
|
|
|
Assert.IsNotNull(userStore);
|
|
Assert.AreEqual(typeof(BackOfficeUserStore), userStore.GetType());
|
|
}
|
|
|
|
[Test]
|
|
public void AddUmbracoBackOfficeIdentity_ExpectBackOfficeClaimsPrincipalFactoryResolvable()
|
|
{
|
|
IUserClaimsPrincipalFactory<BackOfficeIdentityUser> principalFactory = Services.GetService<IUserClaimsPrincipalFactory<BackOfficeIdentityUser>>();
|
|
|
|
Assert.IsNotNull(principalFactory);
|
|
Assert.AreEqual(typeof(BackOfficeClaimsPrincipalFactory), principalFactory.GetType());
|
|
}
|
|
|
|
[Test]
|
|
public void AddUmbracoBackOfficeIdentity_ExpectBackOfficeUserManagerResolvable()
|
|
{
|
|
IBackOfficeUserManager userManager = Services.GetService<IBackOfficeUserManager>();
|
|
|
|
Assert.NotNull(userManager);
|
|
}
|
|
}
|
|
}
|