118 lines
5.6 KiB
C#
118 lines
5.6 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Builder.Internal;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Identity.Test;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Moq;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Identity.InMemory.Test
|
|
{
|
|
public class ControllerTest
|
|
{
|
|
[Theory]
|
|
[InlineData(true)]
|
|
[InlineData(false)]
|
|
public async Task VerifyAccountControllerSignIn(bool isPersistent)
|
|
{
|
|
var context = new DefaultHttpContext();
|
|
var auth = MockAuth(context);
|
|
auth.Setup(a => a.SignInAsync(context, new IdentityCookieOptions().ApplicationCookieAuthenticationScheme,
|
|
It.IsAny<ClaimsPrincipal>(),
|
|
It.IsAny<AuthenticationProperties>())).Returns(Task.FromResult(0)).Verifiable();
|
|
// REVIEW: is persistant mocking broken
|
|
//It.Is<AuthenticationProperties>(v => v.IsPersistent == isPersistent))).Returns(Task.FromResult(0)).Verifiable();
|
|
var contextAccessor = new Mock<IHttpContextAccessor>();
|
|
contextAccessor.Setup(a => a.HttpContext).Returns(context);
|
|
var services = new ServiceCollection()
|
|
.AddSingleton<IConfiguration>(new ConfigurationBuilder().Build())
|
|
.AddLogging()
|
|
.AddSingleton(contextAccessor.Object);
|
|
|
|
services.AddIdentity<TestUser, TestRole>();
|
|
services.AddSingleton<IUserStore<TestUser>, InMemoryStore<TestUser, TestRole>>();
|
|
services.AddSingleton<IRoleStore<TestRole>, InMemoryStore<TestUser, TestRole>>();
|
|
|
|
var app = new ApplicationBuilder(services.BuildServiceProvider());
|
|
|
|
// Act
|
|
var user = new TestUser
|
|
{
|
|
UserName = "Yolo"
|
|
};
|
|
const string password = "Yol0Sw@g!";
|
|
var userManager = app.ApplicationServices.GetRequiredService<UserManager<TestUser>>();
|
|
var signInManager = app.ApplicationServices.GetRequiredService<SignInManager<TestUser>>();
|
|
|
|
IdentityResultAssert.IsSuccess(await userManager.CreateAsync(user, password));
|
|
|
|
var result = await signInManager.PasswordSignInAsync(user, password, isPersistent, false);
|
|
|
|
// Assert
|
|
Assert.True(result.Succeeded);
|
|
auth.VerifyAll();
|
|
contextAccessor.VerifyAll();
|
|
}
|
|
|
|
[Fact]
|
|
public async Task VerifyAccountControllerExternalLoginWithTokensFlow()
|
|
{
|
|
// Setup the external cookie like it would look from a real OAuth2
|
|
var externalId = "<externalId>";
|
|
var authScheme = "<authScheme>";
|
|
var externalIdentity = new ClaimsIdentity();
|
|
externalIdentity.AddClaim(new Claim(ClaimTypes.NameIdentifier, externalId));
|
|
var externalPrincipal = new ClaimsPrincipal(externalIdentity);
|
|
var externalLogin = new ExternalLoginInfo(externalPrincipal, authScheme, externalId, "displayname")
|
|
{
|
|
AuthenticationTokens = new[] {
|
|
new AuthenticationToken { Name = "refresh_token", Value = "refresh" },
|
|
new AuthenticationToken { Name = "access_token", Value = "access" }
|
|
}
|
|
};
|
|
|
|
var context = new DefaultHttpContext();
|
|
var auth = MockAuth(context);
|
|
auth.Setup(a => a.AuthenticateAsync(context, It.IsAny<string>())).Returns(Task.FromResult(AuthenticateResult.None()));
|
|
var contextAccessor = new Mock<IHttpContextAccessor>();
|
|
contextAccessor.Setup(a => a.HttpContext).Returns(context);
|
|
var services = new ServiceCollection()
|
|
.AddSingleton<IConfiguration>(new ConfigurationBuilder().Build())
|
|
.AddLogging()
|
|
.AddSingleton(contextAccessor.Object);
|
|
services.AddIdentity<TestUser, TestRole>();
|
|
services.AddSingleton<IUserStore<TestUser>, InMemoryStore<TestUser, TestRole>>();
|
|
services.AddSingleton<IRoleStore<TestRole>, InMemoryStore<TestUser, TestRole>>();
|
|
|
|
var app = new ApplicationBuilder(services.BuildServiceProvider());
|
|
|
|
// Act
|
|
var user = new TestUser
|
|
{
|
|
UserName = "Yolo"
|
|
};
|
|
var userManager = app.ApplicationServices.GetRequiredService<UserManager<TestUser>>();
|
|
var signInManager = app.ApplicationServices.GetRequiredService<SignInManager<TestUser>>();
|
|
|
|
IdentityResultAssert.IsSuccess(await userManager.CreateAsync(user));
|
|
IdentityResultAssert.IsSuccess(await userManager.AddLoginAsync(user, new UserLoginInfo(authScheme, externalId, "whatever")));
|
|
IdentityResultAssert.IsSuccess(await signInManager.UpdateExternalAuthenticationTokensAsync(externalLogin));
|
|
Assert.Equal("refresh", await userManager.GetAuthenticationTokenAsync(user, authScheme, "refresh_token"));
|
|
Assert.Equal("access", await userManager.GetAuthenticationTokenAsync(user, authScheme, "access_token"));
|
|
}
|
|
|
|
private Mock<IAuthenticationService> MockAuth(HttpContext context)
|
|
{
|
|
var auth = new Mock<IAuthenticationService>();
|
|
context.RequestServices = new ServiceCollection().AddSingleton(auth.Object).BuildServiceProvider();
|
|
return auth;
|
|
}
|
|
}
|
|
}
|