feat: More username change tests

This commit is contained in:
April Hall 2025-02-26 14:23:59 -05:00
parent 7e29219f9c
commit 911d7b4460
8 changed files with 85 additions and 51 deletions

View File

@ -4,8 +4,8 @@ export default defineConfig({
testDir: 'tests',
projects: [
{
name: 'signup',
testMatch: /signup\.setup\.ts/,
name: 'setup',
testMatch: /setup\.ts/,
use: { ...devices['Desktop Chrome'] },
},
@ -13,9 +13,9 @@ export default defineConfig({
// since they need user accounts to run
{
name: 'main',
name: 'test',
use: { ...devices['Desktop Chrome'] },
dependencies: ['signup'],
dependencies: ['setup'],
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
},
],

View File

@ -61,6 +61,6 @@ export const actions = {
return setError(form, 'verify', errorMessage.charAt(0).toUpperCase() + errorMessage.slice(1));
}
return message(form, 'Successfuly signed in.');
return message(form, 'Successfuly signed up.');
},
} satisfies Actions;

10
tests/setup.ts Normal file
View File

@ -0,0 +1,10 @@
import { test } from '@playwright/test';
import { signup, dupeSignup } from './utils';
test('Create playwright user', async ({ page }) => {
await signup(page);
});
test('Create duplicate-detector user', async ({ page }) => {
await dupeSignup(page);
});

View File

@ -1,39 +1,39 @@
import { test, expect, type Page, type Locator } from '@playwright/test';
import { login } from './utils';
// import { test, expect, type Page, type Locator } from '@playwright/test';
// import { login } from './utils';
test.describe('Sign Out Button', () => {
let page: Page;
let button: Locator;
// test.describe('Sign Out Button', () => {
// let page: Page;
// let button: Locator;
test.beforeEach(async ({ browser }) => {
page = await browser.newPage();
// test.beforeEach(async ({ browser }) => {
// page = await browser.newPage();
// Login and navigate
await login(page);
await page.goto('/account', { timeout: 30000, waitUntil: 'domcontentloaded' });
// Initialize locators
button = page.getByRole('button', { name: 'Sign Out' });
});
// // Login and navigate
// await login(page);
// await page.goto('/account', { timeout: 30000, waitUntil: 'domcontentloaded' });
// // Initialize locators
// button = page.getByRole('button', { name: 'Sign Out' });
// });
test('sign out button signs user out', async ({ request }) => {
// Get cookies from the browser context
const cookies = await page.context().cookies();
const cookieHeader = cookies.map((cookie) => `${cookie.name}=${cookie.value}`).join('; ');
// test('sign out button signs user out', async ({ request }) => {
// // Get cookies from the browser context
// const cookies = await page.context().cookies();
// const cookieHeader = cookies.map((cookie) => `${cookie.name}=${cookie.value}`).join('; ');
const initalfetch = await request.get('/api/checkauth', {
headers: {
Cookie: cookieHeader,
},
});
expect(initalfetch.status()).toEqual(200);
// const initalfetch = await request.get('/api/checkauth', {
// headers: {
// Cookie: cookieHeader,
// },
// });
// expect(initalfetch.status()).toEqual(200);
await button.click();
// await button.click();
const finalfetch = await request.get('/api/checkauth', {
headers: {
Cookie: cookieHeader,
},
});
expect(finalfetch.status()).toEqual(401);
});
});
// const finalfetch = await request.get('/api/checkauth', {
// headers: {
// Cookie: cookieHeader,
// },
// });
// expect(finalfetch.status()).toEqual(401);
// });
// });

View File

@ -1,6 +0,0 @@
import { test } from '@playwright/test';
import { signup } from './utils';
test('Signup', async ({ page }) => {
await signup(page);
});

View File

@ -26,7 +26,7 @@ test.describe('Password Update Form', () => {
submitButton = page.getByRole('button', { name: 'Update Password' });
});
// Test passwords can't be the same
// Test that passwords can't be the same
test('show not allow same password', async () => {
await currentPasswordInput.fill(currentPassword);
await newPasswordInput.fill(currentPassword);

View File

@ -1,6 +1,11 @@
import { test, expect, type Page, type Locator } from '@playwright/test';
import { login } from './utils';
async function expectError(message: string, page: Page) {
const errorMessageLocator = page.locator(`.text-sm.text-red-500:has-text("${message}")`);
await expect(errorMessageLocator).toBeVisible();
}
test.describe('Username Update Form', () => {
let page: Page;
let usernameInput: Locator;
@ -23,7 +28,6 @@ test.describe('Username Update Form', () => {
// Test that the username will change
test('should successfully update the username', async () => {
await page.waitForLoadState('domcontentloaded');
await usernameInput.fill(newUsername);
await submitButton.click();
@ -38,16 +42,34 @@ test.describe('Username Update Form', () => {
// Test invalidator
test('should show validation error for invalid username', async () => {
await page.waitForLoadState('domcontentloaded');
await usernameInput.fill('a');
await submitButton.click();
// Check for error message
const errorMessageLocator = page.locator('span.text-sm.text-red-500:has-text("Username must be at least 3 characters.")');
await expect(errorMessageLocator).toBeVisible();
await expectError('Username must be at least 3 characters.', page);
// Ensure the username wasn't updated
const currentUsername: string = (await currentUsernameElement.textContent()) || '';
expect(currentUsername).not.toBe('a');
});
// Test that new and old username can't be the same
test('should not allow same username', async () => {
const currentUsername = await currentUsernameElement.textContent();
expect(currentUsername).toBeTruthy();
await usernameInput.fill(currentUsername!);
await submitButton.click();
// Check for error message
await expectError('New username cannot be the same as old username.', page);
});
// Test non-duplicate usernames
test('should not allow duplicate usernames', async () => {
await usernameInput.fill('existing_user');
await submitButton.click();
await expectError('Username taken.', page);
});
});

View File

@ -8,12 +8,20 @@ export async function login(page: Page): Promise<void> {
await page.click('button[type="submit"]');
}
export async function signup(page: Page): Promise<void> {
async function signupTemplate(page: Page, email: string, username: string): Promise<void> {
await page.goto('/signup');
await page.waitForLoadState('domcontentloaded');
await page.fill('#username', 'playwrightuser');
await page.fill('#email', 'playwright@playwright.com');
await page.fill('#username', username);
await page.fill('#email', email);
await page.fill('#password', 'Password1234!');
await page.fill('#verify', 'Password1234!');
await page.click('button[type="submit"]');
}
export async function dupeSignup(page: Page): Promise<void> {
await signupTemplate(page, 'playwright2@playwright.com', 'existing_user');
}
export async function signup(page: Page): Promise<void> {
await signupTemplate(page, 'playwright@playwright.com', 'playwrightuser');
}