本文整理汇总了C#中AllReady.Controllers.AccountController.SetFakeUserWithCookieAuthenticationType方法的典型用法代码示例。如果您正苦于以下问题:C# AccountController.SetFakeUserWithCookieAuthenticationType方法的具体用法?C# AccountController.SetFakeUserWithCookieAuthenticationType怎么用?C# AccountController.SetFakeUserWithCookieAuthenticationType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AllReady.Controllers.AccountController
的用法示例。
在下文中一共展示了AccountController.SetFakeUserWithCookieAuthenticationType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateUserManagerMock
public async Task ConfirmEmailInvokesRefreshSignInAsyncWithTheCorrectParameters_WhenUserIsSignedIn_AndUsersProfileIsComplete_AndUsersEmailIsConfirmed_AndUserAndUserIdAndTokenAreNotNull()
{
const string userId = "userId";
const string token = "someToken";
var userManager = CreateUserManagerMock();
var user = new ApplicationUser
{
Id = userId,
FirstName = "first name",
LastName = "last name",
PhoneNumber = "111-111-1111",
PhoneNumberConfirmed = true,
Email = "[email protected]",
EmailConfirmed = true
};
userManager.Setup(x => x.FindByIdAsync(userId)).Returns(() => Task.FromResult(user));
userManager.Setup(x => x.ConfirmEmailAsync(user, token)).Returns(() => Task.FromResult(IdentityResult.Success));
var signInManager = CreateSignInManagerMock(userManager);
signInManager.Setup(x => x.RefreshSignInAsync(user)).Returns(() => Task.FromResult(It.IsAny<Task>()));
var mediator = new Mock<IMediator>();
mediator.Setup(x => x.SendAsync(new RemoveUserProfileIncompleteClaimCommand { UserId = user.Id })).Returns(() => Task.FromResult(It.IsAny<Unit>()));
var sut = new AccountController(userManager.Object, signInManager.Object, null, mediator.Object, null);
sut.SetFakeUserWithCookieAuthenticationType(userId);
await sut.ConfirmEmail(userId, token);
signInManager.Verify(x => x.RefreshSignInAsync(It.Is<ApplicationUser>(y => y.Id == user.Id)));
}