50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import type {Page, APIRequestContext} from '@playwright/test'
|
|
import {UserFactory} from '../factories/user'
|
|
import {TEST_PASSWORD} from './constants'
|
|
|
|
/**
|
|
* This authenticates a user and puts the token in local storage which allows us to perform authenticated requests.
|
|
*/
|
|
export async function login(page: Page, apiContext: APIRequestContext, user?: any) {
|
|
if (!user) {
|
|
throw new Error('Needs user')
|
|
}
|
|
|
|
// Login via API
|
|
const response = await apiContext.post('login', {
|
|
data: {
|
|
username: user.username,
|
|
password: TEST_PASSWORD,
|
|
},
|
|
})
|
|
|
|
if (!response.ok()) {
|
|
throw new Error(`Login failed: ${response.status()} ${response.statusText()}`)
|
|
}
|
|
|
|
const body = await response.json()
|
|
const token = body.token
|
|
|
|
// Set token in localStorage before navigating
|
|
await page.addInitScript((token) => {
|
|
window.localStorage.setItem('token', token)
|
|
}, token)
|
|
|
|
return user
|
|
}
|
|
|
|
export async function createFakeUser() {
|
|
const [u] = await UserFactory.create(1)
|
|
return u
|
|
}
|
|
|
|
/**
|
|
* Helper function to set up authentication for a test suite
|
|
* Returns the created user for use in tests
|
|
*/
|
|
export function createFakeUserAndLogin() {
|
|
// This returns undefined and instead relies on Playwright's beforeEach hooks
|
|
// The actual user will be available through the test context
|
|
return undefined
|
|
}
|