summaryrefslogtreecommitdiff
path: root/deps/node-inspect/tools/eslint-rules/prefer-assert-methods.js
blob: fa345eb7c3fc33a92dee51ae59036c24b7161d2e (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
29
30
31
32
33
34
35
36
37
38
39
'use strict';

function isAssert(node) {
  return node.expression &&
    node.expression.type === 'CallExpression' &&
    node.expression.callee &&
    node.expression.callee.name === 'assert';
}

function getFirstArg(expression) {
  return expression.arguments && expression.arguments[0];
}

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

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

module.exports = function(context) {
  return {
    ExpressionStatement(node) {
      if (isAssert(node)) {
        const arg = getFirstArg(node.expression);
        if (arg && arg.type === 'BinaryExpression') {
          const assertMethod = preferedAssertMethod[arg.operator];
          if (assertMethod) {
            context.report(node, parseError(assertMethod, arg.operator));
          }
        }
      }
    }
  };
};