2021-10-19 16:38:44 +03:00

82 lines
1.8 KiB
JavaScript

import parse from '../../src/parsers/javascript.js';
import { lintComments, formatLint } from '../../src/lint.js';
function toComment(fn, filename) {
return parse(
{
file: filename,
source: fn instanceof Function ? '(' + fn.toString() + ')' : fn
},
{}
)[0];
}
function evaluate(fn) {
return lintComments(toComment(fn, 'input.js'));
}
test('lintComments', function () {
expect(
evaluate(function () {
/**
* @param {foo
*/
}).errors
).toEqual([
{ message: 'Braces are not balanced' },
{ message: 'Missing or invalid tag name' }
]);
expect(
evaluate(function () {
/**
* @param {Object} foo.bar
*/
}).errors
).toEqual([{ commentLineNumber: 1, message: 'Parent of foo.bar not found' }]);
expect(
evaluate(function () {
/**
* @param {String} foo
* @param {array} bar
*/
}).errors
).toEqual([
{
commentLineNumber: 1,
message: 'type String found, string is standard'
},
{ commentLineNumber: 2, message: 'type array found, Array is standard' }
]);
expect(
evaluate(function () {
/**
* @param {string} foo
*/
}).errors
).toEqual([]);
});
test('formatLint', function () {
const comment = evaluate(function () {
// 2
// 3
/** 4
* @param {String} foo
* @param {array} bar
* @param {foo
*/
});
const formatted = formatLint([comment]);
expect(formatted.match(/input.js/g));
expect(formatted.match(/4:1[^\n]+Braces are not balanced/g));
expect(formatted.match(/4:1[^\n]+Missing or invalid tag name/g));
expect(formatted.match(/5:1[^\n]+type String found, string is standard/g));
expect(formatted.match(/6:1[^\n]+type array found, Array is standard/g));
expect(formatted.match(/4 warnings/g));
});