prettier/scripts/run-external-typescript-tes...

131 lines
3.3 KiB
JavaScript

"use strict";
/**
* There's an issue with this script's assumption that each run of prettier
* will result in one output to stderr or stdout.
*
* On Mac this seems not to hold for stderr, where multiple errors are buffered
* into one emit on the stderr stream.
*
* If you have any ideas on how to fix this, please send a PR!
*/
if (process.platform !== "win32") {
console.error("Error: this script currently only works on windows.");
process.exit(1);
}
const fs = require("fs");
const path = require("path");
const spawn = require("child_process").spawn;
const rimraf = require("rimraf");
const tsRoot = path.resolve(__dirname, "../../TypeScript");
const testsDir = path.relative(process.cwd(), path.join(tsRoot, "tests"));
const errorsPath = "./errors/";
const fileGlob = path.join(testsDir, "**/*.ts");
if (!fs.existsSync(tsRoot) || !fs.existsSync(testsDir)) {
console.error(`Error: TypeScript is not cloned at ../TypeScript`);
process.exit(1);
}
const badFiles = [];
const errorTypes = {};
let good = 0;
let skipped = 0;
rimraf.sync(errorsPath);
const cp = spawn("node", [
"./bin/prettier.js",
"--parser",
"typescript",
"--debug-check",
fileGlob
]);
cp.stdout.on("data", () => {
good++;
printStatus();
});
cp.stderr.on("data", err => {
const error = err.toString();
const { file, errorType } = splitFileAndError(error);
if (errorType.startsWith("SyntaxError:")) {
skipped++;
} else {
badFiles.push({ file, errorType, error });
errorTypes[errorType] = (errorTypes[errorType] || 0) + 1;
}
printStatus();
});
cp.on("close", () => {
const total = badFiles.length + good + skipped;
const percentNoError = (100 * (good + skipped) / total).toFixed(0);
console.log(
`\n${percentNoError}% of ${total} files processed without errors.\n`
);
Object.keys(errorTypes)
.sort((a, b) => errorTypes[b] - errorTypes[a])
.forEach(errorType => {
console.log(`${errorTypes[errorType]}\t${errorType}`);
});
console.log(`\nWriting errors to '${errorsPath}' directory`);
writeErrorsToFiles();
});
function printStatus() {
process.stdout.write(
`\r${good} good, ${skipped} skipped, ${badFiles.length} bad`
);
}
function splitFileAndError(err) {
const lines = err.split("\n");
const [file, ...rest] = lines[0].split(":");
if (rest.length) {
return {
file,
errorType: rest
.join(":")
.replace(/\(\d+:\d+\)/, "")
.replace(/(Comment )".*"/, '$1"<omitted>"')
.trim()
};
} else {
console.error("Could not process error:", err);
return {
file: "?",
errorType: err
};
}
}
function writeErrorsToFiles() {
const splitter = "@".repeat(80);
fs.mkdirSync(errorsPath);
Object.keys(errorTypes).forEach(errorType => {
const files = badFiles.filter(f => f.errorType === errorType);
const contents = files
.map(({ file, error }) => {
// Trim file name from error.
if (error.startsWith(file)) {
error = error.substring(file.length);
}
return `\n\n${file}\n${error}\n${splitter}\n`;
})
.join("\n");
fs.writeFileSync(
path.join(errorsPath, sanitize(errorType) + ".log"),
contents
);
});
}
function sanitize(string) {
return string.replace(/[^A-Z0-9_.\(\) \-]/gi, "_").replace(/\.$/, "");
}