mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

* PM-3833 - API - AccountsController.cs && AccountsController.cs - remove prelogin and register endpoints. * PM-3833 - Move Request and Response models that were used for Prelogin and PostRegister from API to Identity. * PM-3833 - FIX LINT * PM-3833 - Fix issues after merge conflict fixes. * PM-3833 - Another test fix
90 lines
3.6 KiB
C#
90 lines
3.6 KiB
C#
using System.Net.Http.Json;
|
|
using System.Text.Json;
|
|
using Bit.Core.Auth.Models.Api.Request.Accounts;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Identity;
|
|
using Bit.Identity.Models.Request.Accounts;
|
|
using Bit.Test.Common.Helpers;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Bit.IntegrationTestCommon.Factories;
|
|
|
|
public class IdentityApplicationFactory : WebApplicationFactoryBase<Startup>
|
|
{
|
|
public const string DefaultDeviceIdentifier = "92b9d953-b9b6-4eaf-9d3e-11d57144dfeb";
|
|
|
|
public async Task<HttpContext> RegisterAsync(RegisterRequestModel model)
|
|
{
|
|
return await Server.PostAsync("/accounts/register", JsonContent.Create(model));
|
|
}
|
|
|
|
public async Task<HttpContext> PostRegisterSendEmailVerificationAsync(RegisterSendVerificationEmailRequestModel model)
|
|
{
|
|
return await Server.PostAsync("/accounts/register/send-verification-email", JsonContent.Create(model));
|
|
}
|
|
|
|
public async Task<(string Token, string RefreshToken)> TokenFromPasswordAsync(string username,
|
|
string password,
|
|
string deviceIdentifier = DefaultDeviceIdentifier,
|
|
string clientId = "web",
|
|
DeviceType deviceType = DeviceType.FirefoxBrowser,
|
|
string deviceName = "firefox")
|
|
{
|
|
var context = await Server.PostAsync("/connect/token", new FormUrlEncodedContent(new Dictionary<string, string>
|
|
{
|
|
{ "scope", "api offline_access" },
|
|
{ "client_id", clientId },
|
|
{ "deviceType", ((int)deviceType).ToString() },
|
|
{ "deviceIdentifier", deviceIdentifier },
|
|
{ "deviceName", deviceName },
|
|
{ "grant_type", "password" },
|
|
{ "username", username },
|
|
{ "password", password },
|
|
}), context => context.Request.Headers.Append("Auth-Email", CoreHelpers.Base64UrlEncodeString(username)));
|
|
|
|
using var body = await AssertHelper.AssertResponseTypeIs<JsonDocument>(context);
|
|
var root = body.RootElement;
|
|
|
|
return (root.GetProperty("access_token").GetString(), root.GetProperty("refresh_token").GetString());
|
|
}
|
|
|
|
public async Task<string> TokenFromAccessTokenAsync(Guid clientId, string clientSecret,
|
|
DeviceType deviceType = DeviceType.SDK)
|
|
{
|
|
var context = await Server.PostAsync("/connect/token",
|
|
new FormUrlEncodedContent(new Dictionary<string, string>
|
|
{
|
|
{ "scope", "api.secrets" },
|
|
{ "client_id", clientId.ToString() },
|
|
{ "client_secret", clientSecret },
|
|
{ "grant_type", "client_credentials" },
|
|
{ "deviceType", ((int)deviceType).ToString() }
|
|
}));
|
|
|
|
using var body = await AssertHelper.AssertResponseTypeIs<JsonDocument>(context);
|
|
var root = body.RootElement;
|
|
|
|
return root.GetProperty("access_token").GetString();
|
|
}
|
|
|
|
public async Task<string> TokenFromOrganizationApiKeyAsync(string clientId, string clientSecret,
|
|
DeviceType deviceType = DeviceType.FirefoxBrowser)
|
|
{
|
|
var context = await Server.PostAsync("/connect/token",
|
|
new FormUrlEncodedContent(new Dictionary<string, string>
|
|
{
|
|
{ "scope", "api.organization" },
|
|
{ "client_id", clientId },
|
|
{ "client_secret", clientSecret },
|
|
{ "grant_type", "client_credentials" },
|
|
{ "deviceType", ((int)deviceType).ToString() }
|
|
}));
|
|
|
|
using var body = await AssertHelper.AssertResponseTypeIs<JsonDocument>(context);
|
|
var root = body.RootElement;
|
|
|
|
return root.GetProperty("access_token").GetString();
|
|
}
|
|
}
|