mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-07 06:00:57 +00:00
* Fixes for playwright testing - Ensure cookies are completely cleaned between sessions - Fix base URL based on vite command - Fix samesite cookie mode - Prevent /static/ files being served by web server on :8000 * Remove gunicorn option * Readjust base URL * Simplify doCachedLogin * Fix logic func * Revert webserver cmd * Set base URL in playwrightconfig file * Fix URL checks * Fix URL definitions * adjust playwright base URL * Tweak for URL helper * Further login tweaks * Tweak test * wait for API before starting tests * Handle error * Adjust login functions * Don't use gunicorn - But still use the webserver to serve static files in CI * Enhanced login functions * Tweak login tests * Fix broken test * Flipped the flippies
102 lines
2.8 KiB
TypeScript
102 lines
2.8 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
// Detect if running in CI
|
|
const IS_CI = !!process.env.CI;
|
|
|
|
const MAX_WORKERS: number = 3;
|
|
const MAX_RETRIES: number = 3;
|
|
|
|
/* We optionally spin-up services based on the testing mode:
|
|
*
|
|
* Local Development:
|
|
* - If running locally (developer mode), we run "vite dev" with HMR enabled
|
|
* - This allows playwright to monitor the code for changes
|
|
* - WORKERS = 1 (to avoid conflicts with HMR)
|
|
*
|
|
* CI Mode (Production):
|
|
* - In CI (GitHub actions), we run "vite build" to generate a production build
|
|
* - This build is then served by a local server for testing
|
|
* - This allows the tests to run much faster and with parallel workers
|
|
* - WORKERS = MAX_WORKERS (to speed up the tests)
|
|
*
|
|
* CI Mode (Coverage):
|
|
* - In coverage mode (GitHub actions), we cannot compile the code first
|
|
* - This is because we need to compile coverage report against ./src directory
|
|
* - So, we run "vite dev" with coverage enabled (similar to the local dev mode)
|
|
* - WORKERS = 1 (to avoid conflicts with HMR)
|
|
*/
|
|
|
|
const BASE_URL: string = IS_CI
|
|
? 'http://localhost:8000'
|
|
: 'http://localhost:5173';
|
|
|
|
console.log('Running Playwright Tests:');
|
|
console.log(`- CI Mode: ${IS_CI}`);
|
|
console.log('- Base URL:', BASE_URL);
|
|
|
|
export default defineConfig({
|
|
testDir: './tests',
|
|
fullyParallel: false,
|
|
timeout: 90000,
|
|
forbidOnly: !!IS_CI,
|
|
retries: IS_CI ? MAX_RETRIES : 0,
|
|
workers: IS_CI ? MAX_WORKERS : 1,
|
|
reporter: IS_CI ? [['html', { open: 'never' }], ['github']] : 'list',
|
|
|
|
/* Configure projects for major browsers */
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
...devices['Desktop Chrome']
|
|
}
|
|
},
|
|
{
|
|
name: 'firefox',
|
|
use: {
|
|
...devices['Desktop Firefox']
|
|
}
|
|
}
|
|
],
|
|
|
|
/* Run your local dev server before starting the tests */
|
|
webServer: [
|
|
{
|
|
command: 'yarn run dev --host --port 5173',
|
|
url: 'http://localhost:5173',
|
|
reuseExistingServer: IS_CI,
|
|
stdout: 'pipe',
|
|
stderr: 'pipe',
|
|
timeout: 120 * 1000
|
|
},
|
|
{
|
|
command: 'invoke dev.server',
|
|
env: {
|
|
INVENTREE_DEBUG: 'True',
|
|
INVENTREE_LOG_LEVEL: 'WARNING',
|
|
INVENTREE_PLUGINS_ENABLED: 'True',
|
|
INVENTREE_ADMIN_URL: 'test-admin',
|
|
INVENTREE_SITE_URL: 'http://localhost:8000',
|
|
INVENTREE_FRONTEND_API_HOST: 'http://localhost:8000',
|
|
INVENTREE_CORS_ORIGIN_ALLOW_ALL: 'True',
|
|
INVENTREE_COOKIE_SAMESITE: 'False',
|
|
INVENTREE_LOGIN_ATTEMPTS: '100'
|
|
},
|
|
url: 'http://localhost:8000/api/',
|
|
reuseExistingServer: IS_CI,
|
|
stdout: 'pipe',
|
|
stderr: 'pipe',
|
|
timeout: 120 * 1000
|
|
}
|
|
],
|
|
globalSetup: './playwright/global-setup.ts',
|
|
use: {
|
|
baseURL: BASE_URL,
|
|
headless: IS_CI ? true : undefined,
|
|
trace: 'on-first-retry',
|
|
contextOptions: {
|
|
reducedMotion: 'reduce'
|
|
}
|
|
}
|
|
});
|