mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	This patch re-implements matching and reporting for test runner. Among other improvements: - test failures now show a short snippet from test - test failures now explicitly say what received and what was expected - `expect.toBe()` now does text diff when gets strings as input - `expect.toEqual` now does object diff
		
			
				
	
	
		
			171 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			171 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Copyright 2017 Google Inc. All rights reserved.
 | 
						|
 * Modifications copyright (c) Microsoft Corporation.
 | 
						|
 *
 | 
						|
 * Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
 * you may not use this file except in compliance with the License.
 | 
						|
 * You may obtain a copy of the License at
 | 
						|
 *
 | 
						|
 *     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 *
 | 
						|
 * Unless required by applicable law or agreed to in writing, software
 | 
						|
 * distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
 * See the License for the specific language governing permissions and
 | 
						|
 * limitations under the License.
 | 
						|
 */
 | 
						|
const path = require('path');
 | 
						|
const fs = require('fs');
 | 
						|
const Diff = require('text-diff');
 | 
						|
const PNG = require('pngjs').PNG;
 | 
						|
const jpeg = require('jpeg-js');
 | 
						|
const pixelmatch = require('pixelmatch');
 | 
						|
const c = require('colors/safe');
 | 
						|
 | 
						|
module.exports = {compare};
 | 
						|
 | 
						|
const extensionToMimeType = {
 | 
						|
  'png': 'image/png',
 | 
						|
  'txt': 'text/plain',
 | 
						|
  'jpg': 'image/jpeg',
 | 
						|
  'jpeg': 'image/jpeg',
 | 
						|
};
 | 
						|
 | 
						|
const GoldenComparators = {
 | 
						|
  'image/png': compareImages,
 | 
						|
  'image/jpeg': compareImages,
 | 
						|
  'text/plain': compareText
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * @param {?Object} actualBuffer
 | 
						|
 * @param {!Buffer} expectedBuffer
 | 
						|
 * @param {!string} mimeType
 | 
						|
 * @return {?{diff: (!Object:undefined), errorMessage: (string|undefined)}}
 | 
						|
 */
 | 
						|
function compareImages(actualBuffer, expectedBuffer, mimeType) {
 | 
						|
  if (!actualBuffer || !(actualBuffer instanceof Buffer))
 | 
						|
    return { errorMessage: 'Actual result should be Buffer.' };
 | 
						|
 | 
						|
  const actual = mimeType === 'image/png' ? PNG.sync.read(actualBuffer) : jpeg.decode(actualBuffer);
 | 
						|
  const expected = mimeType === 'image/png' ? PNG.sync.read(expectedBuffer) : jpeg.decode(expectedBuffer);
 | 
						|
  if (expected.width !== actual.width || expected.height !== actual.height) {
 | 
						|
    return {
 | 
						|
      errorMessage: `Sizes differ; expected image ${expected.width}px X ${expected.height}px, but got ${actual.width}px X ${actual.height}px. `
 | 
						|
    };
 | 
						|
  }
 | 
						|
  const diff = new PNG({width: expected.width, height: expected.height});
 | 
						|
  const count = pixelmatch(expected.data, actual.data, diff.data, expected.width, expected.height, {threshold: 0.1});
 | 
						|
  return count > 0 ? { diff: PNG.sync.write(diff) } : null;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * @param {?Object} actual
 | 
						|
 * @param {!Buffer} expectedBuffer
 | 
						|
 * @return {?{diff: (!Object:undefined), errorMessage: (string|undefined)}}
 | 
						|
 */
 | 
						|
function compareText(actual, expectedBuffer) {
 | 
						|
  if (typeof actual !== 'string')
 | 
						|
    return { errorMessage: 'Actual result should be string' };
 | 
						|
  const expected = expectedBuffer.toString('utf-8');
 | 
						|
  if (expected === actual)
 | 
						|
    return null;
 | 
						|
  const diff = new Diff();
 | 
						|
  const result = diff.main(expected, actual);
 | 
						|
  diff.cleanupSemantic(result);
 | 
						|
  let html = diff.prettyHtml(result);
 | 
						|
  const diffStylePath = path.join(__dirname, 'diffstyle.css');
 | 
						|
  html = `<link rel="stylesheet" href="file://${diffStylePath}">` + html;
 | 
						|
  return {
 | 
						|
    diff: html,
 | 
						|
    diffExtension: '.html'
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * @param {?Object} actual
 | 
						|
 * @param {string} goldenName
 | 
						|
 * @return {!{pass: boolean, message: (undefined|string)}}
 | 
						|
 */
 | 
						|
function compare(goldenPath, outputPath, actual, goldenName) {
 | 
						|
  goldenPath = path.normalize(goldenPath);
 | 
						|
  outputPath = path.normalize(outputPath);
 | 
						|
  const expectedPath = path.join(goldenPath, goldenName);
 | 
						|
  const actualPath = path.join(outputPath, goldenName);
 | 
						|
 | 
						|
  const messageSuffix = 'Output is saved in "' + path.basename(outputPath + '" directory');
 | 
						|
 | 
						|
  if (!fs.existsSync(expectedPath)) {
 | 
						|
    ensureOutputDir();
 | 
						|
    fs.writeFileSync(actualPath, actual);
 | 
						|
    return {
 | 
						|
      pass: false,
 | 
						|
      message: goldenName + ' is missing in golden results. ' + messageSuffix
 | 
						|
    };
 | 
						|
  }
 | 
						|
  const expected = fs.readFileSync(expectedPath);
 | 
						|
  const extension = goldenName.substring(goldenName.lastIndexOf('.') + 1);
 | 
						|
  const mimeType = extensionToMimeType[extension];
 | 
						|
  const comparator = GoldenComparators[mimeType];
 | 
						|
  if (!comparator) {
 | 
						|
    return {
 | 
						|
      pass: false,
 | 
						|
      message: 'Failed to find comparator with type ' + mimeType + ': '  + goldenName,
 | 
						|
    };
 | 
						|
  }
 | 
						|
  const result = comparator(actual, expected, mimeType);
 | 
						|
  if (!result)
 | 
						|
    return { pass: true };
 | 
						|
  ensureOutputDir();
 | 
						|
  const output = [
 | 
						|
    c.red(`GOLDEN FAILED: `) + c.yellow('"' + goldenName + '"'),
 | 
						|
  ];
 | 
						|
  if (result.errorMessage)
 | 
						|
    output.push('    ' + result.errorMessage);
 | 
						|
  output.push('');
 | 
						|
  output.push(`Expected: ${c.yellow(expectedPath)}`);
 | 
						|
  if (goldenPath === outputPath) {
 | 
						|
    const filepath = addSuffix(actualPath, '-actual');
 | 
						|
    fs.writeFileSync(filepath, actual);
 | 
						|
    output.push(`Received: ${c.yellow(filepath)}`);
 | 
						|
  } else {
 | 
						|
    fs.writeFileSync(actualPath, actual);
 | 
						|
    // Copy expected to the output/ folder for convenience.
 | 
						|
    fs.writeFileSync(addSuffix(actualPath, '-expected'), expected);
 | 
						|
    output.push(`Received: ${c.yellow(actualPath)}`);
 | 
						|
  }
 | 
						|
  if (result.diff) {
 | 
						|
    const diffPath = addSuffix(actualPath, '-diff', result.diffExtension);
 | 
						|
    fs.writeFileSync(diffPath, result.diff);
 | 
						|
    output.push(`    Diff: ${c.yellow(diffPath)}`);
 | 
						|
  }
 | 
						|
 | 
						|
  let message = goldenName + ' mismatch!';
 | 
						|
  if (result.errorMessage)
 | 
						|
    message += ' ' + result.errorMessage;
 | 
						|
  return {
 | 
						|
    pass: false,
 | 
						|
    message: message + ' ' + messageSuffix,
 | 
						|
    formatter: () => output.join('\n'),
 | 
						|
  };
 | 
						|
 | 
						|
  function ensureOutputDir() {
 | 
						|
    if (!fs.existsSync(outputPath))
 | 
						|
      fs.mkdirSync(outputPath);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * @param {string} filePath
 | 
						|
 * @param {string} suffix
 | 
						|
 * @param {string=} customExtension
 | 
						|
 * @return {string}
 | 
						|
 */
 | 
						|
function addSuffix(filePath, suffix, customExtension) {
 | 
						|
  const dirname = path.dirname(filePath);
 | 
						|
  const ext = path.extname(filePath);
 | 
						|
  const name = path.basename(filePath, ext);
 | 
						|
  return path.join(dirname, name + suffix + (customExtension || ext));
 | 
						|
}
 |