Refine admin login flow and verification harness
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m21s

This commit is contained in:
2026-07-07 14:38:30 +09:00
parent b7cb442937
commit 35842b6765
60 changed files with 1043 additions and 495 deletions
+42
View File
@@ -0,0 +1,42 @@
import { appendFileSync, mkdirSync, writeFileSync } from 'node:fs';
import { dirname, resolve } from 'node:path';
import type { Page, TestInfo } from '@playwright/test';
function safeName(value: string) {
return value.replace(/[^a-zA-Z0-9._-]+/g, '_');
}
function evidenceRoot(testInfo: TestInfo) {
return resolve(testInfo.project.outputDir, '..', 'evidence');
}
export async function captureEvidence(page: Page, testInfo: TestInfo, label: string) {
const root = evidenceRoot(testInfo);
const stem = safeName(`${testInfo.file}-${testInfo.title}-${label}`);
const screenshotPath = resolve(root, `${stem}.png`);
const domPath = resolve(root, `${stem}.html`);
const urlPath = resolve(root, `${stem}.url.txt`);
const manifestPath = resolve(root, `manifest.jsonl`);
mkdirSync(dirname(screenshotPath), { recursive: true });
await page.screenshot({ path: screenshotPath, fullPage: true });
writeFileSync(domPath, await page.content(), 'utf8');
writeFileSync(urlPath, page.url(), 'utf8');
appendFileSync(manifestPath, JSON.stringify({
testFile: testInfo.file,
title: testInfo.title,
label,
url: page.url(),
screenshotPath,
domPath,
urlPath,
timestamp: new Date().toISOString()
}) + '\n', 'utf8');
await testInfo.attach(`screenshot:${label}`, { path: screenshotPath, contentType: 'image/png' });
await testInfo.attach(`dom:${label}`, { path: domPath, contentType: 'text/html' });
await testInfo.attach(`url:${label}`, { path: urlPath, contentType: 'text/plain' });
return { screenshotPath, domPath, urlPath };
}