2023-04-14 19:25:56 +02:00
|
|
|
|
using Bit.Core.Auth.Models.Api.Request.Accounts;
|
2024-06-19 19:54:20 +02:00
|
|
|
|
using Bit.Core.Entities;
|
|
|
|
|
using Bit.Core.Repositories;
|
2024-06-19 21:11:24 +02:00
|
|
|
|
using Bit.Identity.Models.Request.Accounts;
|
2022-05-20 21:24:59 +02:00
|
|
|
|
using Bit.IntegrationTestCommon.Factories;
|
2024-06-19 19:54:20 +02:00
|
|
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
2022-05-20 21:24:59 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
2022-08-29 22:06:55 +02:00
|
|
|
|
namespace Bit.Identity.IntegrationTest.Controllers;
|
|
|
|
|
|
|
|
|
|
public class AccountsControllerTests : IClassFixture<IdentityApplicationFactory>
|
2022-05-20 21:24:59 +02:00
|
|
|
|
{
|
2022-08-29 22:06:55 +02:00
|
|
|
|
private readonly IdentityApplicationFactory _factory;
|
2022-05-20 21:24:59 +02:00
|
|
|
|
|
2022-08-29 22:06:55 +02:00
|
|
|
|
public AccountsControllerTests(IdentityApplicationFactory factory)
|
|
|
|
|
{
|
|
|
|
|
_factory = factory;
|
|
|
|
|
}
|
2022-08-29 21:53:48 +02:00
|
|
|
|
|
2022-08-29 22:06:55 +02:00
|
|
|
|
[Fact]
|
|
|
|
|
public async Task PostRegister_Success()
|
|
|
|
|
{
|
|
|
|
|
var context = await _factory.RegisterAsync(new RegisterRequestModel
|
2022-05-20 21:24:59 +02:00
|
|
|
|
{
|
2022-08-29 22:06:55 +02:00
|
|
|
|
Email = "test+register@email.com",
|
|
|
|
|
MasterPasswordHash = "master_password_hash"
|
|
|
|
|
});
|
2022-05-20 21:24:59 +02:00
|
|
|
|
|
2022-08-29 22:06:55 +02:00
|
|
|
|
Assert.Equal(StatusCodes.Status200OK, context.Response.StatusCode);
|
2022-05-20 21:24:59 +02:00
|
|
|
|
|
2022-08-29 22:06:55 +02:00
|
|
|
|
var database = _factory.GetDatabaseContext();
|
|
|
|
|
var user = await database.Users
|
|
|
|
|
.SingleAsync(u => u.Email == "test+register@email.com");
|
2022-05-20 21:24:59 +02:00
|
|
|
|
|
2022-08-29 22:06:55 +02:00
|
|
|
|
Assert.NotNull(user);
|
2022-05-20 21:24:59 +02:00
|
|
|
|
}
|
2024-06-19 19:54:20 +02:00
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData("invalidEmail")]
|
|
|
|
|
[BitAutoData("")]
|
|
|
|
|
public async Task PostRegisterSendEmailVerification_InvalidRequestModel_ThrowsBadRequestException(string email, string name, bool receiveMarketingEmails)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var model = new RegisterSendVerificationEmailRequestModel
|
|
|
|
|
{
|
|
|
|
|
Email = email,
|
|
|
|
|
Name = name,
|
|
|
|
|
ReceiveMarketingEmails = receiveMarketingEmails
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var context = await _factory.PostRegisterSendEmailVerificationAsync(model);
|
|
|
|
|
|
|
|
|
|
Assert.Equal(StatusCodes.Status400BadRequest, context.Response.StatusCode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData(true)]
|
|
|
|
|
[BitAutoData(false)]
|
|
|
|
|
public async Task PostRegisterSendEmailVerification_WhenGivenNewOrExistingUser_ReturnsNoContent(bool shouldPreCreateUser, string name, bool receiveMarketingEmails)
|
|
|
|
|
{
|
|
|
|
|
var email = $"test+register+{name}@email.com";
|
|
|
|
|
if (shouldPreCreateUser)
|
|
|
|
|
{
|
|
|
|
|
await CreateUserAsync(email, name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var model = new RegisterSendVerificationEmailRequestModel
|
|
|
|
|
{
|
|
|
|
|
Email = email,
|
|
|
|
|
Name = name,
|
|
|
|
|
ReceiveMarketingEmails = receiveMarketingEmails
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var context = await _factory.PostRegisterSendEmailVerificationAsync(model);
|
|
|
|
|
|
|
|
|
|
Assert.Equal(StatusCodes.Status204NoContent, context.Response.StatusCode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task<User> CreateUserAsync(string email, string name)
|
|
|
|
|
{
|
|
|
|
|
var userRepository = _factory.Services.GetRequiredService<IUserRepository>();
|
|
|
|
|
|
|
|
|
|
var user = new User
|
|
|
|
|
{
|
|
|
|
|
Email = email,
|
|
|
|
|
Id = Guid.NewGuid(),
|
|
|
|
|
Name = name,
|
|
|
|
|
SecurityStamp = Guid.NewGuid().ToString(),
|
|
|
|
|
ApiKey = "test_api_key",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await userRepository.CreateAsync(user);
|
|
|
|
|
|
|
|
|
|
return user;
|
|
|
|
|
}
|
2022-05-20 21:24:59 +02:00
|
|
|
|
}
|