mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-05 18:22:27 +00:00
83 lines
No EOL
2.8 KiB
C#
83 lines
No EOL
2.8 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using LBPUnion.ProjectLighthouse;
|
|
using LBPUnion.ProjectLighthouse.Helpers;
|
|
using LBPUnion.ProjectLighthouse.Tests;
|
|
using LBPUnion.ProjectLighthouse.Types;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using OpenQA.Selenium;
|
|
using Xunit;
|
|
|
|
namespace ProjectLighthouse.Tests.WebsiteTests;
|
|
|
|
public class RegisterTests : LighthouseWebTest
|
|
{
|
|
[DatabaseFact]
|
|
public async Task ShouldRegister()
|
|
{
|
|
await using Database database = new();
|
|
|
|
string username = "unitTestUser" + new Random().Next();
|
|
string password = HashHelper.Sha256Hash(HashHelper.GenerateRandomBytes(64).ToArray());
|
|
|
|
this.Driver.Navigate().GoToUrl(this.BaseAddress + "/register");
|
|
|
|
this.Driver.FindElement(By.Id("text")).SendKeys(username);
|
|
|
|
this.Driver.FindElement(By.Id("password")).SendKeys(password);
|
|
this.Driver.FindElement(By.Id("confirmPassword")).SendKeys(password);
|
|
|
|
this.Driver.FindElement(By.Id("submit")).Click();
|
|
|
|
User? user = await database.Users.FirstOrDefaultAsync(u => u.Username == username);
|
|
Assert.NotNull(user);
|
|
|
|
await database.RemoveUser(user);
|
|
}
|
|
|
|
[DatabaseFact]
|
|
public async Task ShouldNotRegisterWithMismatchingPasswords()
|
|
{
|
|
await using Database database = new();
|
|
|
|
string username = "unitTestUser" + new Random().Next();
|
|
string password = HashHelper.Sha256Hash(HashHelper.GenerateRandomBytes(64).ToArray());
|
|
|
|
this.Driver.Navigate().GoToUrl(this.BaseAddress + "/register");
|
|
|
|
this.Driver.FindElement(By.Id("text")).SendKeys(username);
|
|
|
|
this.Driver.FindElement(By.Id("password")).SendKeys(password);
|
|
this.Driver.FindElement(By.Id("confirmPassword")).SendKeys(password + "a");
|
|
|
|
this.Driver.FindElement(By.Id("submit")).Click();
|
|
|
|
User? user = await database.Users.FirstOrDefaultAsync(u => u.Username == username);
|
|
Assert.Null(user);
|
|
}
|
|
|
|
[DatabaseFact]
|
|
public async Task ShouldNotRegisterWithTakenUsername()
|
|
{
|
|
await using Database database = new();
|
|
|
|
string username = "unitTestUser" + new Random().Next();
|
|
string password = HashHelper.Sha256Hash(HashHelper.GenerateRandomBytes(64).ToArray());
|
|
|
|
await database.CreateUser(username, HashHelper.BCryptHash(password));
|
|
User? user = await database.Users.FirstOrDefaultAsync(u => u.Username == username);
|
|
Assert.NotNull(user);
|
|
|
|
this.Driver.Navigate().GoToUrl(this.BaseAddress + "/register");
|
|
|
|
this.Driver.FindElement(By.Id("text")).SendKeys(username);
|
|
|
|
this.Driver.FindElement(By.Id("password")).SendKeys(password);
|
|
this.Driver.FindElement(By.Id("confirmPassword")).SendKeys(password);
|
|
|
|
this.Driver.FindElement(By.Id("submit")).Click();
|
|
|
|
Assert.Contains("The username you've chosen is already taken.", this.Driver.PageSource);
|
|
}
|
|
} |