|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- "use strict";
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
-
- var _path = require("path");
-
- var _experimentalUtils = require("@typescript-eslint/experimental-utils");
-
- var _utils = require("./utils");
-
- const reportOnViolation = (context, node, {
- maxSize: lineLimit = 50,
- allowedSnapshots = {}
- }) => {
- const startLine = node.loc.start.line;
- const endLine = node.loc.end.line;
- const lineCount = endLine - startLine;
- const allPathsAreAbsolute = Object.keys(allowedSnapshots).every(_path.isAbsolute);
-
- if (!allPathsAreAbsolute) {
- throw new Error('All paths for allowedSnapshots must be absolute. You can use JS config and `path.resolve`');
- }
-
- let isAllowed = false;
-
- if (node.type === _experimentalUtils.AST_NODE_TYPES.ExpressionStatement && 'left' in node.expression && (0, _utils.isExpectMember)(node.expression.left)) {
- const fileName = context.getFilename();
- const allowedSnapshotsInFile = allowedSnapshots[fileName];
-
- if (allowedSnapshotsInFile) {
- const snapshotName = (0, _utils.getAccessorValue)(node.expression.left.property);
- isAllowed = allowedSnapshotsInFile.some(name => {
- if (name instanceof RegExp) {
- return name.test(snapshotName);
- }
-
- return snapshotName === name;
- });
- }
- }
-
- if (!isAllowed && lineCount > lineLimit) {
- context.report({
- messageId: lineLimit === 0 ? 'noSnapshot' : 'tooLongSnapshots',
- data: {
- lineLimit,
- lineCount
- },
- node
- });
- }
- };
-
- var _default = (0, _utils.createRule)({
- name: __filename,
- meta: {
- docs: {
- category: 'Best Practices',
- description: 'disallow large snapshots',
- recommended: false
- },
- messages: {
- noSnapshot: '`{{ lineCount }}`s should begin with lowercase',
- tooLongSnapshots: 'Expected Jest snapshot to be smaller than {{ lineLimit }} lines but was {{ lineCount }} lines long'
- },
- type: 'suggestion',
- schema: [{
- type: 'object',
- properties: {
- maxSize: {
- type: 'number'
- },
- inlineMaxSize: {
- type: 'number'
- },
- allowedSnapshots: {
- type: 'object',
- additionalProperties: {
- type: 'array'
- }
- }
- },
- additionalProperties: false
- }]
- },
- defaultOptions: [{}],
-
- create(context, [options]) {
- if (context.getFilename().endsWith('.snap')) {
- return {
- ExpressionStatement(node) {
- reportOnViolation(context, node, options);
- }
-
- };
- }
-
- return {
- CallExpression(node) {
- var _matcher$node$parent;
-
- if (!(0, _utils.isExpectCall)(node)) {
- return;
- }
-
- const {
- matcher
- } = (0, _utils.parseExpectCall)(node);
-
- if ((matcher === null || matcher === void 0 ? void 0 : (_matcher$node$parent = matcher.node.parent) === null || _matcher$node$parent === void 0 ? void 0 : _matcher$node$parent.type) !== _experimentalUtils.AST_NODE_TYPES.CallExpression) {
- return;
- }
-
- if (['toMatchInlineSnapshot', 'toThrowErrorMatchingInlineSnapshot'].includes(matcher.name)) {
- var _options$inlineMaxSiz;
-
- reportOnViolation(context, matcher.node.parent, { ...options,
- maxSize: (_options$inlineMaxSiz = options.inlineMaxSize) !== null && _options$inlineMaxSiz !== void 0 ? _options$inlineMaxSiz : options.maxSize
- });
- }
- }
-
- };
- }
-
- });
-
- exports.default = _default;
|