summaryrefslogtreecommitdiff
path: root/tools/eslint-rules/prefer-assert-methods.js
blob: 0604fd3ed99046dacf360233d25e888e72065258 (plain)
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
'use strict';

const astSelector = 'ExpressionStatement[expression.type="CallExpression"]' +
                    '[expression.callee.name="assert"]' +
                    '[expression.arguments.0.type="BinaryExpression"]';

function parseError(method, op) {
  return `'assert.${method}' should be used instead of '${op}'`;
}

const preferedAssertMethod = {
  '===': 'strictEqual',
  '!==': 'notStrictEqual',
  '==': 'equal',
  '!=': 'notEqual'
};

module.exports = function(context) {
  return {
    [astSelector]: function(node) {
      const arg = node.expression.arguments[0];
      const assertMethod = preferedAssertMethod[arg.operator];
      if (assertMethod) {
        context.report(node, parseError(assertMethod, arg.operator));
      }
    }
  };
};