Merge pull request #1025 from balena-io/roman/fix-test-run

Add mocha tests linter
This commit is contained in:
Roman Mazur 2019-07-01 11:48:07 +03:00 committed by GitHub
commit f53640ca4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 1 deletions

45
automation/lint-mocha-tests.js Executable file
View File

@ -0,0 +1,45 @@
#!/usr/bin/env node
// This script checks if files in test directory don't contain describe.only or it.only statements
// to ensure that an accidental commit does not prevent all the tests to be run.
const fs = require('fs');
const path = require('path');
const testsDir = './test';
const srcFileExtensions = ['.ts', '.coffee', '.js'];
const checkPattern = /((describe)|(it))\.only/;
const checkDirRecursively = (dirPath, func) =>
fs.readdirSync(dirPath, {withFileTypes: true}).forEach((file) => {
const filePath = path.join(dirPath, file.name);
if (file.isDirectory()) {
checkDirRecursively(filePath, func);
return;
}
for (let ext of srcFileExtensions) {
if (file.name.endsWith(ext)) {
const content = fs.readFileSync(filePath, {encoding: 'utf8'});
func(filePath, content);
break;
}
}
});
let errorsFound = false;
checkDirRecursively(testsDir, (fileName, content) => {
const lines = content.split('\n');
for (let ln = 0; ln < lines.length; ln++) {
const res = checkPattern.exec(lines[ln]);
if (res) {
errorsFound = true;
console.error(`File ${fileName}, line ${ln}: found ${res[0]}`);
}
}
});
if (errorsFound) {
process.exit(1);
}

View File

@ -17,7 +17,6 @@
"coverage": "istanbul report text && istanbul report html",
"test:fast": "npm run test:build && mocha",
"test:debug": "npm run test:build && mocha --inspect-brk",
"precommit": "lint-staged",
"prettify": "prettier --config ./node_modules/resin-lint/config/.prettierrc --write \"{src,test,typings}/**/*.ts\"",
"typescript:test-build": "tsc --project tsconfig.json",
"typescript:release": "tsc --project tsconfig.release.json && cp -r build/src/* build && rm -rf build/src",
@ -118,5 +117,10 @@
"webpack": "^4.25.0",
"webpack-cli": "^3.1.2",
"winston": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && automation/lint-mocha-tests.js"
}
}
}