65 lines
2.5 KiB
JavaScript
65 lines
2.5 KiB
JavaScript
import { dirname, resolve } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
const repositoryRoot = resolve(dirname(fileURLToPath(import.meta.url)), '../../..');
|
|
const frontendPort = Number(process.env.PLAYWRIGHT_FRONTEND_PORT ?? 15126);
|
|
const apiPort = Number(process.env.PLAYWRIGHT_GAME_API_PORT ?? 15127);
|
|
const basePath = `/${(process.env.PLAYWRIGHT_GAME_BASE_PATH ?? 'hwe').replace(/^\/+|\/+$/g, '')}`;
|
|
const profileId = process.env.PLAYWRIGHT_PROFILE_ID ?? 'create_general_integration';
|
|
const scenario = process.env.PLAYWRIGHT_SCENARIO ?? '2';
|
|
const gameProfile = process.env.PLAYWRIGHT_GAME_PROFILE ?? `${profileId}:${scenario}`;
|
|
const baseURL = `http://127.0.0.1:${frontendPort}${basePath}/`;
|
|
const gameApiUrl = `http://127.0.0.1:${apiPort}/trpc`;
|
|
const databaseUrl = process.env.JOIN_LIVE_DATABASE_URL ?? '';
|
|
const redisUrl = process.env.JOIN_LIVE_REDIS_URL ?? '';
|
|
const gameSecret = process.env.JOIN_LIVE_GAME_SECRET ?? '';
|
|
|
|
export default defineConfig({
|
|
testDir: '.',
|
|
testMatch: ['joinGeneralLive.spec.ts'],
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
timeout: 60_000,
|
|
expect: {
|
|
timeout: 10_000,
|
|
},
|
|
reporter: [['list']],
|
|
outputDir: resolve(repositoryRoot, 'test-results/join-general-live'),
|
|
use: {
|
|
baseURL,
|
|
...devices['Desktop Chrome'],
|
|
deviceScaleFactor: 1,
|
|
locale: 'ko-KR',
|
|
timezoneId: 'Asia/Seoul',
|
|
trace: 'retain-on-failure',
|
|
screenshot: 'only-on-failure',
|
|
},
|
|
webServer: [
|
|
{
|
|
command: 'node app/game-api/dist/index.js',
|
|
cwd: repositoryRoot,
|
|
url: `http://127.0.0.1:${apiPort}/healthz`,
|
|
reuseExistingServer: false,
|
|
timeout: 120_000,
|
|
env: {
|
|
DATABASE_URL: databaseUrl,
|
|
REDIS_URL: redisUrl,
|
|
GAME_TOKEN_SECRET: gameSecret,
|
|
GAME_API_HOST: '127.0.0.1',
|
|
GAME_API_PORT: String(apiPort),
|
|
PROFILE: profileId,
|
|
SCENARIO: scenario,
|
|
GAME_PROFILE_NAME: gameProfile,
|
|
},
|
|
},
|
|
{
|
|
command: `VITE_APP_BASE_PATH=${basePath} VITE_GAME_API_URL=${gameApiUrl} VITE_GAME_PROFILE=${gameProfile} VITE_GATEWAY_WEB_URL=/gateway/ pnpm --filter @sammo-ts/game-frontend dev --host 127.0.0.1 --port ${frontendPort}`,
|
|
cwd: repositoryRoot,
|
|
url: baseURL,
|
|
reuseExistingServer: false,
|
|
timeout: 120_000,
|
|
},
|
|
],
|
|
});
|