bbyars/mountebank

View on GitHub
src/models/behaviors.js

Summary

Maintainability
C
1 day
Test Coverage
A
95%

File behaviors.js has 420 lines of code (exceeds 250 allowed). Consider refactoring.
Open

'use strict';

/**
 * The functionality behind the behaviors field in the API, supporting post-processing responses
 * @module
Severity: Minor
Found in src/models/behaviors.js - About 6 hrs to fix

    Function selectRowFromCSV has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function selectRowFromCSV (csvConfig, keyValue, logger) {
        const delimiter = csvConfig.delimiter || ',',
            inputStream = fsExtra.createReadStream(csvConfig.path),
            parser = csvParse.parse({ delimiter: delimiter }),
            pipe = inputStream.pipe(parser);
    Severity: Minor
    Found in src/models/behaviors.js - About 1 hr to fix

      Function execShell has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function execShell (command, request, response, logger) {
          const exec = childProcess.exec,
              env = helpers.clone(process.env),
              maxBuffer = buffer.constants.MAX_STRING_LENGTH,
              maxShellCommandLength = 2048;
      Severity: Minor
      Found in src/models/behaviors.js - About 1 hr to fix

        Function decorate has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        function decorate (originalRequest, response, fn, logger, imposterState) {
        Severity: Minor
        Found in src/models/behaviors.js - About 35 mins to fix

          Function execute has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          async function execute (request, response, behaviors, logger, imposterState) {
          Severity: Minor
          Found in src/models/behaviors.js - About 35 mins to fix

            Function getFrom has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            function getFrom (obj, from) {
                const isObject = helpers.isObject;
            
                if (typeof obj === 'undefined') {
                    return undefined;
            Severity: Minor
            Found in src/models/behaviors.js - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Parsing error: Invalid ecmaVersion.
            Open

            'use strict';
            Severity: Minor
            Found in src/models/behaviors.js by eslint

            For more information visit Source: http://eslint.org/docs/rules/

            There are no issues that match your filters.

            Category
            Status