File size: 16,872 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
import { assert } from 'console';
import fs from 'fs';
import os from 'os';
import path from 'path';
import { Readable } from 'stream';
import { finished } from 'stream/promises';
import chalk from 'chalk';
import fse from 'fs-extra';
import difference from 'lodash/difference';
import minimist from 'minimist';
import pixelmatch from 'pixelmatch';
import { PNG } from 'pngjs';
import sharp from 'sharp';
import simpleGit from 'simple-git';
import filter from 'lodash/filter';
import markdown2Html from './convert';
import { generate as genAlternativeReport } from './reportAdapter';
const ROOT_DIR = process.cwd();
const ALI_OSS_BUCKET = 'antd-visual-diff';
const REPORT_DIR = path.join(ROOT_DIR, './visualRegressionReport');
const isLocalEnv = process.env.LOCAL;
const compareScreenshots = async (
baseImgPath: string,
currentImgPath: string,
diffImagePath: string,
): Promise<number> => {
const baseImgBuf = await sharp(baseImgPath).toBuffer();
const currentImgBuf = await sharp(currentImgPath).toBuffer();
const basePng = PNG.sync.read(baseImgBuf);
const currentPng = PNG.sync.read(currentImgBuf);
const targetWidth = Math.max(basePng.width, currentPng.width);
const targetHeight = Math.max(basePng.height, currentPng.height);
// fill color for transparent png
const fillColor =
baseImgPath.endsWith('dark.png') || baseImgPath.endsWith('dark.css-var.png')
? { r: 0, g: 0, b: 0, alpha: 255 }
: { r: 255, g: 255, b: 255, alpha: 255 };
const resizeOptions = {
width: targetWidth,
height: targetHeight,
position: 'left top',
fit: sharp.fit.contain,
background: fillColor,
};
const resizedBasePng = PNG.sync.read(
await sharp(baseImgBuf).resize(resizeOptions).png().toBuffer(),
);
const resizedCurrentPng = PNG.sync.read(
await sharp(currentImgBuf).resize(resizeOptions).png().toBuffer(),
);
const diffPng = new PNG({ width: targetWidth, height: targetHeight });
const mismatchedPixels = pixelmatch(
resizedBasePng.data,
resizedCurrentPng.data,
diffPng.data,
targetWidth,
targetHeight,
{ threshold: 0.1, diffMask: false },
);
// if mismatched then write diff image
if (mismatchedPixels) {
diffPng.pack().pipe(fs.createWriteStream(diffImagePath));
}
return mismatchedPixels / (targetWidth * targetHeight);
};
const readPngs = (dir: string) => fs.readdirSync(dir).filter((n) => n.endsWith('.png'));
const prettyList = (list: string[]) => list.map((i) => ` * ${i}`).join('\n');
const ossDomain = `https://${ALI_OSS_BUCKET}.oss-accelerate.aliyuncs.com`;
async function downloadFile(url: string, destPath: string) {
const response = await fetch(url);
if (!response.ok || response.status !== 200) {
throw new Error(`Download file failed: ${new URL(url).pathname}`);
}
// @ts-ignore
const body = Readable.fromWeb(response.body);
await finished(body.pipe(fs.createWriteStream(destPath)));
}
async function getBranchLatestRef(branchName: string) {
const baseImageRefUrl = `${ossDomain}/${branchName}/visual-regression-ref.txt`;
// get content from baseImageRefText
const res = await fetch(baseImageRefUrl);
const text = await res.text();
const ref = text.trim();
return ref;
}
async function downloadBaseSnapshots(ref: string, targetDir: string) {
const tar = await import('tar');
// download imageSnapshotsUrl
const imageSnapshotsUrl = `${ossDomain}/${ref}/imageSnapshots.tar.gz`;
const targzPath = path.resolve(os.tmpdir(), `./${path.basename(targetDir)}.tar.gz`);
await downloadFile(imageSnapshotsUrl, targzPath);
// untar
return tar.x({
// remove top-level dir
strip: 1,
C: targetDir,
file: targzPath,
});
}
interface IImageDesc {
src: string;
alt: string;
}
function getMdImageTag(desc: IImageDesc, extraCaption?: boolean) {
const { src, alt } = desc;
if (!extraCaption || !alt) {
// in md2html report, we use `@microflash/rehype-figure` to generate a figure
return ``;
}
// show caption with image in github markdown comment
return ` ${alt}`;
}
export interface IBadCase {
type: 'removed' | 'changed' | 'added';
filename: string;
/**
* compare target file
*/
targetFilename?: string;
/**
* 0 - 1
*/
weight: number;
}
const git = simpleGit();
async function parseArgs() {
// parse args from -- --pr-id=123 --base_ref=feature --max-workers=2
const argv = minimist(process.argv.slice(2));
const prId = argv['pr-id'];
assert(prId, 'Missing --pr-id');
const baseRef = argv['base-ref'];
assert(baseRef, 'Missing --base-ref');
const maxWorkers = argv['max-workers'] ? parseInt(argv['max-workers'], 10) : 1;
const { latest } = await git.log();
return {
prId,
baseRef,
currentRef: latest?.hash.slice(0, 8) || '',
maxWorkers,
};
}
function generateLineReport(
badCase: IBadCase,
publicPath: string,
currentRef: string,
extraCaption?: boolean,
) {
const { filename, type, targetFilename } = badCase;
let lineHTMLReport = '';
if (type === 'changed') {
lineHTMLReport += '| ';
lineHTMLReport += [
// add ref as query to avoid github cache image object
getMdImageTag(
{
src: `${publicPath}/images/base/${filename}?ref=${currentRef}`,
alt: targetFilename || '',
},
extraCaption,
),
getMdImageTag(
{
src: `${publicPath}/images/current/${filename}?ref=${currentRef}`,
alt: filename,
},
extraCaption,
),
getMdImageTag(
{
src: `${publicPath}/images/diff/${filename}?ref=${currentRef}`,
alt: '',
},
extraCaption,
),
].join(' | ');
lineHTMLReport += ' |\n';
} else if (type === 'removed') {
lineHTMLReport += '| ';
lineHTMLReport += [
getMdImageTag(
{
src: `${publicPath}/images/base/${filename}?ref=${currentRef}`,
alt: filename || '',
},
extraCaption,
),
`βοΈβοΈβοΈ Missing βοΈβοΈβοΈ`,
`π¨π¨π¨ Removed π¨π¨π¨`,
].join(' | ');
lineHTMLReport += ' |\n';
} else if (type === 'added') {
lineHTMLReport += '| ';
lineHTMLReport += [
'',
getMdImageTag(
{
src: `${publicPath}/images/current/${filename}?ref=${currentRef}`,
alt: filename,
},
extraCaption,
),
`πππ Added πππ`,
].join(' | ');
lineHTMLReport += ' |\n';
}
return lineHTMLReport;
}
function generateReport(
badCases: IBadCase[],
targetBranch: string,
targetRef: string,
currentRef: string,
prId: string,
publicPath = '.',
): [string, string] {
const passed = badCases.length === 0;
const commonHeader = `
<!-- ${passed ? 'VISUAL_DIFF_SUCCESS' : 'VISUAL_DIFF_FAILED'} -->
## π Visual Regression Report for PR #${prId} ${passed ? 'Passed β
' : 'Failed β'}
> **π― Target branch:** ${targetBranch} (${targetRef})
`.trim();
const htmlReportLink = `${publicPath}/report.html`;
const alternativeReportLink = `${publicPath}/index.html`;
const fullReport = [
`> π <a href="${htmlReportLink}" target="_blank">View Full Report βοΈ</a>`,
`> π <a href="${alternativeReportLink}" target="_blank">Alternative Report βοΈ</a>`,
].join('\n');
if (passed) {
const mdStr = [
commonHeader,
fullReport,
'\nπ Congrats! No visual-regression diff found.\n',
'<img src="https://github.com/ant-design/ant-design/assets/507615/2d1a77dc-dbc6-4b0f-9cbc-19a43d3c29cd" width="300" />',
].join('\n');
return [mdStr, markdown2Html(mdStr)];
}
const summaryHeader = '<!-- summary -->';
const tableHeader = `
| Expected (Branch ${targetBranch}) | Actual (Current PR) | Diff |
| --- | --- | --- |
`.trim();
let reportMdStr = [
commonHeader,
isLocalEnv ? false : `${fullReport}`,
summaryHeader,
'\n',
tableHeader,
]
.filter(Boolean)
.join('\n');
reportMdStr += '\n';
let fullVersionMd = reportMdStr;
let diffCount = 0;
// Summary
const badCount = badCases.length;
const commentReportLimit = isLocalEnv ? badCount : 8;
const changedCount = filter(badCases, { type: 'changed' }).length;
const removedCount = filter(badCases, { type: 'removed' }).length;
const addedCount = filter(badCases, { type: 'added' }).length;
for (const badCase of badCases) {
diffCount += 1;
if (diffCount <= commentReportLimit) {
// ε°εΎηδΈζΉε’ε ζδ»Άε
reportMdStr += generateLineReport(badCase, publicPath, currentRef, true);
}
fullVersionMd += generateLineReport(badCase, publicPath, currentRef, false);
}
const hasMore = badCount > commentReportLimit;
if (hasMore) {
reportMdStr += [
'\r',
'> [!WARNING]',
`> There are more diffs not shown in the table. Please check the <a href="${htmlReportLink}" target="_blank">Full Report</a> for details.`,
'\r',
].join('\n');
}
// tips for comment `Pass Visual Diff` will pass the CI
if (!passed) {
const summaryLine = [
changedCount > 0 && `π \`${changedCount}\` changed`,
removedCount > 0 && `π \`${removedCount}\` removed`,
addedCount > 0 && `π \`${addedCount}\` added`,
]
.filter(Boolean)
.join(', ');
reportMdStr += [
'\n---\n',
'> [!IMPORTANT]',
`> There are **${badCount}** diffs found in this PR: ${summaryLine}.`,
'> **Please check all items:**',
hasMore && '> - [ ] Checked all diffs in the full report',
'> - [ ] Visual diff is acceptable',
]
.filter(Boolean)
.join('\n');
reportMdStr = reportMdStr.replace(summaryHeader, `> **π Summary:** ${summaryLine}`);
fullVersionMd = fullVersionMd.replace(summaryHeader, `> **π Summary:** ${summaryLine}`);
}
// convert fullVersionMd to html
return [reportMdStr, markdown2Html(fullVersionMd)];
}
async function boot() {
const args = await parseArgs();
console.log(`Args: ${JSON.stringify(args)}`);
const { prId, baseRef: targetBranch = 'master', currentRef, maxWorkers } = args;
const baseImgSourceDir = path.resolve(ROOT_DIR, `./imageSnapshots-${targetBranch}`);
const publicPath = isLocalEnv ? '.' : `${ossDomain}/pr-${prId}/${path.basename(REPORT_DIR)}`;
/* --- prepare stage --- */
console.log(
chalk.green(
`Preparing image snapshots from latest \`${targetBranch}\` branch for pr \`${prId}\`\n`,
),
);
await fse.ensureDir(baseImgSourceDir);
const targetCommitSha = await getBranchLatestRef(targetBranch);
assert(targetCommitSha, `Missing commit sha from ${targetBranch}`);
if (!isLocalEnv) {
await downloadBaseSnapshots(targetCommitSha, baseImgSourceDir);
} else if (!fse.existsSync(baseImgSourceDir)) {
console.log(
chalk.yellow(
`Please prepare image snapshots in folder \`$projectRoot/${path.basename(
baseImgSourceDir,
)}\` from latest \`${targetBranch}\` branch`,
),
);
process.exit(1);
}
const currentImgSourceDir = path.resolve(ROOT_DIR, './imageSnapshots');
// save diff images(x3) to reportDir
const diffImgReportDir = path.resolve(REPORT_DIR, './images/diff');
const baseImgReportDir = path.resolve(REPORT_DIR, './images/base');
const currentImgReportDir = path.resolve(REPORT_DIR, './images/current');
await fse.ensureDir(diffImgReportDir);
await fse.ensureDir(baseImgReportDir);
await fse.ensureDir(currentImgReportDir);
console.log(chalk.blue('β³ Checking image snapshots with branch %s'), targetBranch);
console.log('\n');
const baseImgFileList = readPngs(baseImgSourceDir);
/* --- compare stage --- */
const badCases: IBadCase[] = [];
// compare cssinjs and css-var png from pr
// to the same cssinjs png in `master` branch
const cssInJsImgNames = baseImgFileList
.filter((i) => !i.endsWith('.css-var.png'))
.map((n) => path.basename(n, path.extname(n)));
// compare to target branch
const compareTasks = cssInJsImgNames.map((basename) =>
['.png', '.css-var.png'].map((extname) => async () => {
// baseImg always use cssinjs png
const baseImgName = `${basename}.png`;
const baseImgPath = path.join(baseImgSourceDir, baseImgName);
// currentImg use cssinjs png or css-var png
const compareImgName = basename + extname;
const currentImgPath = path.join(currentImgSourceDir, compareImgName);
const diffImgPath = path.join(diffImgReportDir, compareImgName);
const currentImgExists = await fse.exists(currentImgPath);
if (!currentImgExists) {
console.log(chalk.red(`βοΈ Missing image: ${compareImgName}\n`));
await fse.copy(baseImgPath, path.join(baseImgReportDir, compareImgName));
return {
type: 'removed',
filename: compareImgName,
weight: 1,
} as IBadCase;
}
const mismatchedPxPercent = await compareScreenshots(
baseImgPath,
currentImgPath,
diffImgPath,
);
if (mismatchedPxPercent > 0) {
console.log(
'Mismatched pixels for:',
chalk.yellow(compareImgName),
`${(mismatchedPxPercent * 100).toFixed(2)}%\n`,
);
await fse.copy(baseImgPath, path.join(baseImgReportDir, compareImgName));
await fse.copy(currentImgPath, path.join(currentImgReportDir, compareImgName));
return {
type: 'changed',
filename: compareImgName,
targetFilename: baseImgName,
weight: mismatchedPxPercent,
} as IBadCase;
}
console.log('Passed for: %s\n', chalk.green(compareImgName));
}),
);
const { default: pAll } = await import('p-all');
const compareResults = await pAll(compareTasks.flat(), { concurrency: maxWorkers });
for (const compareResult of compareResults) {
if (compareResult) {
badCases.push(compareResult);
}
}
// collect all new added cases
const currentImgFileList = readPngs(currentImgSourceDir);
/* --- text report stage --- */
console.log(
chalk.blue(`π Text report from pr #${prId} comparing to ${targetBranch}@${targetCommitSha}\n`),
);
// new images
const newImgs = difference(currentImgFileList, baseImgFileList);
if (newImgs.length) {
console.log(chalk.green(`π ${newImgs.length} images added from this pr`));
console.log(chalk.green('π Added images list:\n'));
console.log(prettyList(newImgs));
console.log('\n');
}
const newImgTask = newImgs.map((newImg) => async () => {
await fse.copy(
path.join(currentImgSourceDir, newImg),
path.resolve(currentImgReportDir, newImg),
);
return {
type: 'added',
filename: newImg,
weight: 0,
} as IBadCase;
});
const newTaskResults = await pAll(newImgTask, { concurrency: maxWorkers });
for (const newTaskResult of newTaskResults) {
if (newTaskResult) {
badCases.push(newTaskResult);
}
}
/* --- generate report stage --- */
const jsonl = badCases.map((i) => JSON.stringify(i)).join('\n');
// write jsonl and markdown report to diffImgDir
await fse.writeFile(path.join(REPORT_DIR, './report.jsonl'), jsonl);
const [reportMdStr, reportHtmlStr] = generateReport(
badCases,
targetBranch,
targetCommitSha,
currentRef,
prId,
publicPath,
);
await fse.writeFile(path.join(REPORT_DIR, './report.md'), reportMdStr);
const htmlTemplate = await fse.readFile(path.join(__dirname, './report-template.html'), 'utf8');
await fse.writeFile(
path.join(REPORT_DIR, './report.html'),
htmlTemplate.replace('{{reportContent}}', reportHtmlStr),
'utf-8',
);
// ε°θ―ηζζΏδ»£ζ₯εοΌε³δΎΏε€±θ΄₯δΉε―δ»₯η¨εζ₯ζ₯εε
εΊ
try {
await genAlternativeReport({
badCases,
publicPath,
});
console.log(chalk.green('π Alternative report generated!'));
} catch {
console.error(chalk.red('π’ Alternative report generation failed'));
}
const tar = await import('tar');
await tar.c(
{
gzip: true,
// ignore top-level dir(e.g. visualRegressionReport) and zip all files in it
cwd: REPORT_DIR,
file: `${path.basename(REPORT_DIR)}.tar.gz`,
},
await fse.readdir(REPORT_DIR),
);
const validBadCases = badCases.filter((i) => ['removed', 'changed'].includes(i.type));
if (!validBadCases.length) {
console.log(chalk.green('π All passed!'));
console.log('\n');
return;
}
const sortedBadCases = badCases.sort((a, b) => b.weight - a.weight);
console.log(chalk.red('βοΈ Failed cases:\n'));
console.log(prettyList(sortedBadCases.map((i) => `[${i.type}] ${i.filename}`)));
console.log('\n');
// let job failed. Skip to let CI/CD to handle it
// process.exit(1);
}
boot();
|