bbyars/mountebank

View on GitHub

Showing 119 of 386 total issues

Function create has 107 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function create (options, logger, responseFn) {
    const mode = options.mode ? options.mode : 'text',
        encoding = mode === 'binary' ? 'base64' : 'utf8',
        server = net.createServer(),
        connections = {},
Severity: Major
Found in src/models/tcp/tcpServer.js - About 4 hrs to fix

    Function createApp has 106 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    async function createApp (options) {
        applyDefaults(options);
    
        const app = express(),
            hostname = options.host || 'localhost',
    Severity: Major
    Found in src/mountebank.js - About 4 hrs to fix

      Function outOfProcessCreate has 100 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function outOfProcessCreate (protocolName, config) {
              function customFieldsFor (creationRequest) {
                  const fields = {},
                      commonFields = ['protocol', 'port', 'name', 'recordRequests', 'stubs', 'defaultResponse'];
                  Object.keys(creationRequest).forEach(key => {
      Severity: Major
      Found in src/models/protocols.js - About 4 hrs to fix

        File predicates.js has 331 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        'use strict';
        
        const stringify = require('safe-stable-stringify'),
            safeRegex = require('safe-regex'),
            jsonpath = require('./jsonpath.js'),
        Severity: Minor
        Found in src/models/predicates.js - About 3 hrs to fix

          Function create has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
          Open

          function create () {
              function hasExactlyOneKey (obj) {
                  const keys = Object.keys(obj);
                  return keys.length === 1;
              }
          Severity: Minor
          Found in src/models/behaviorsValidator.js - About 3 hrs 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

          Function create has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
          Open

          function create (protocols, imposters, logger, allowInjection) {
              function isFlagFalse (query, key) {
                  return !helpers.defined(query[key]) || query[key].toLowerCase() !== 'false';
              }
          
          
          Severity: Minor
          Found in src/controllers/impostersController.js - About 3 hrs 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

          Function create has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
          Open

          function create (header, server, loadRequests) {
              const baseURL = `/imposters/${server.port}`;
          
              function createHeader (numberOfRequests, options) {
                  const result = {
          Severity: Minor
          Found in src/models/imposterPrinter.js - About 3 hrs 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

          Function exports has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
          Open

          module.exports = function (createBaseServer) {
          
              function create (options, logger, responseFn) {
                  const connections = {},
                      defaultResponse = options.defaultResponse || {};
          Severity: Minor
          Found in src/models/http/baseHttpServer.js - About 3 hrs 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

          Function createStubsRepository has 89 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function createStubsRepository () {
              const stubs = [];
              let requests = [];
          
              function reindex () {
          Severity: Major
          Found in src/models/inMemoryImpostersRepository.js - About 3 hrs to fix

            Function create has 87 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function create (header, server, loadRequests) {
                const baseURL = `/imposters/${server.port}`;
            
                function createHeader (numberOfRequests, options) {
                    const result = {
            Severity: Major
            Found in src/models/imposterPrinter.js - About 3 hrs to fix

              File responseResolver.js has 302 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              'use strict';
              
              const prometheus = require('prom-client'),
                  stringify = require('safe-stable-stringify'),
                  helpers = require('../util/helpers.js'),
              Severity: Minor
              Found in src/models/responseResolver.js - About 3 hrs to fix

                Function create has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                Open

                function create (options, logger, responseFn) {
                    const mode = options.mode ? options.mode : 'text',
                        encoding = mode === 'binary' ? 'base64' : 'utf8',
                        server = net.createServer(),
                        connections = {},
                Severity: Minor
                Found in src/models/tcp/tcpServer.js - About 3 hrs 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

                Function create has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                Open

                async function create (Protocol, creationRequest, baseLogger, config, isAllowedConnection) {
                
                    const metrics = getMetrics();
                
                    function scopeFor (port) {
                Severity: Minor
                Found in src/models/imposter.js - About 3 hrs 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

                Function create has 74 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function create (options, logger, responseFn) {
                    const connections = {},
                        SMTPServer = smtpServer.SMTPServer,
                        server = new SMTPServer({
                            maxAllowedUnauthenticatedCommands: 1000,
                Severity: Major
                Found in src/models/smtp/smtpServer.js - About 2 hrs to fix

                  Function create has 68 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function create (logger, encoding, isEndOfRequest) {
                  
                      if (typeof isEndOfRequest === 'undefined') {
                          isEndOfRequest = () => true; // defaults to a packet boundary
                      }
                  Severity: Major
                  Found in src/models/tcp/tcpProxy.js - About 2 hrs to fix

                    Function create has 66 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function create () {
                        const imposters = {},
                            stubRepos = {};
                    
                        /**
                    Severity: Major
                    Found in src/models/inMemoryImpostersRepository.js - About 2 hrs to fix

                      Function wrap has 63 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              function wrap (stub) {
                                  const cloned = helpers.clone(stub || {}),
                                      stubDir = stub ? stub.meta.dir : '';
                      
                                  if (typeof stub === 'undefined') {
                      Severity: Major
                      Found in src/models/filesystemBackedImpostersRepository.js - About 2 hrs to fix

                        Function create has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function create (releases) {
                            const feedReleases = helpers.clone(releases);
                        
                            // Init once since we hope many consumers poll the heroku feed and we don't have monitoring
                            feedReleases.reverse();
                        Severity: Major
                        Found in src/controllers/feedController.js - About 2 hrs to fix

                          Function predicatesFor has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              function predicatesFor (request, matchers, logger) {
                                  const predicates = [];
                          
                                  matchers.forEach(matcher => {
                                      if (matcher.inject) {
                          Severity: Major
                          Found in src/models/responseResolver.js - About 2 hrs to fix

                            Function useAbsoluteUrls has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            function useAbsoluteUrls (port) {
                                return function (request, response, next) {
                                    const setHeaderOriginal = response.setHeader,
                                        sendOriginal = response.send,
                                        host = request.headers.host || `localhost:${port}`,
                            Severity: Major
                            Found in src/util/middleware.js - About 2 hrs to fix
                              Severity
                              Category
                              Status
                              Source
                              Language