|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Net.Http;
using AngleSharp.Dom.Html;
namespace Microsoft.AspNetCore.Identity.FunctionalTests.Account;
public class LoginWithRecoveryCode : DefaultUIPage
{
private readonly IHtmlFormElement _loginWithRecoveryCodeForm;
public LoginWithRecoveryCode(HttpClient client, IHtmlDocument loginWithRecoveryCode, DefaultUIContext context)
: base(client, loginWithRecoveryCode, context)
{
_loginWithRecoveryCodeForm = HtmlAssert.HasForm(loginWithRecoveryCode);
}
public async Task<Index> SendRecoveryCodeAsync(string recoveryCode)
{
var response = await Client.SendAsync(_loginWithRecoveryCodeForm, new Dictionary<string, string>
{
["Input_RecoveryCode"] = recoveryCode
});
var goToIndex = ResponseAssert.IsRedirect(response);
var indexPage = await Client.GetAsync(goToIndex);
var index = await ResponseAssert.IsHtmlDocumentAsync(indexPage);
return new Index(Client, index, Context.WithAuthenticatedUser());
}
}
|