thoughtbot/capybara-webkit

View on GitHub
src/capybara.js

Summary

Maintainability
F
3 days
Test Coverage

File capybara.js has 477 lines of code (exceeds 250 allowed). Consider refactoring.
Open

Capybara = {
  nextIndex: 0,
  nodes: {},
  attachedFiles: [],
  keyModifiersStack: [],
Severity: Minor
Found in src/capybara.js - About 7 hrs to fix

    `` has 51 functions (exceeds 20 allowed). Consider refactoring.
    Open

    Capybara = {
      nextIndex: 0,
      nodes: {},
      attachedFiles: [],
      keyModifiersStack: [],
    Severity: Major
    Found in src/capybara.js - About 7 hrs to fix

      Function set has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

        set: function (index, value) {
          var length, maxLength, node, strindex, textTypes, type;
      
          node = this.getNode(index);
          type = (node.type || node.tagName).toLowerCase();
      Severity: Minor
      Found in src/capybara.js - About 2 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 getXPathNode has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

        getXPathNode: function(node, path) {
          path = path || [];
          if (node.parentNode) {
            path = this.getXPathNode(node.parentNode, path);
          }
      Severity: Minor
      Found in src/capybara.js - About 1 hr 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 wrapResult has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

        wrapResult: function(arg) {
          if (this._visitedObjects.indexOf(arg) >= 0) { return '(cyclic structure)'; }
          if (arg instanceof NodeList) { arg = Array.prototype.slice.call(arg, 0); }
          if (Array.isArray(arg)) {
            for(var _j = 0; _j < arg.length; _j++) {
      Severity: Minor
      Found in src/capybara.js - About 1 hr 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 _sendKeys has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

        _sendKeys: function(keys) {
          if (typeof keys == "string") {
            var str_len = keys.length;
            var str_idx;
            for (str_idx = 0; str_idx < str_len; str_idx++) {
      Severity: Minor
      Found in src/capybara.js - About 1 hr 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 set has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        set: function (index, value) {
          var length, maxLength, node, strindex, textTypes, type;
      
          node = this.getNode(index);
          type = (node.type || node.tagName).toLowerCase();
      Severity: Minor
      Found in src/capybara.js - About 1 hr to fix

        Function clickPosition has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

          clickPosition: function(node) {
            if(node.namespaceURI == 'http://www.w3.org/2000/svg') {
              var rect = node.getBoundingClientRect();
        
              if (rect.width > 0 && rect.height > 0)
        Severity: Minor
        Found in src/capybara.js - About 55 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

        Avoid too many return statements within this function.
        Open

              return result;
        Severity: Major
        Found in src/capybara.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return arg;
          Severity: Major
          Found in src/capybara.js - About 30 mins to fix

            Function invoke has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              invoke: function () {
                try {
                  if (CapybaraInvocation.functionName == "leftClick") {
                    var args = CapybaraInvocation.arguments;
                    var leftClickOptions = this["verifiedClickPosition"].apply(this, args);
            Severity: Minor
            Found in src/capybara.js - About 25 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

            Function reflow has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              reflow: function(element, force) {
                if (force || element.offsetWidth === 0) {
                  var prop, oldStyle = {}, newStyle = {position: "absolute", visibility : "hidden", display: "block" };
                  for (prop in newStyle)  {
                    oldStyle[prop] = element.style[prop];
            Severity: Minor
            Found in src/capybara.js - About 25 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

            Function text has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

              text: function (index) {
                var node = this.getNode(index);
                var type = node instanceof HTMLFormElement ? 'form' : (node.type || node.tagName).toLowerCase();
            
                if (!this.isNodeVisible(node)) {
            Severity: Minor
            Found in src/capybara.js - About 25 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

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

                    if (rect.width > 0 && rect.height > 0)
                      return CapybaraInvocation.clickPosition(node, rect.left, rect.top, rect.width, rect.height);
            Severity: Major
            Found in src/capybara.js and 1 other location - About 1 hr to fix
            src/capybara.js on lines 193..194

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 55.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

                  if (rect.width > 0 && rect.height > 0)
                    return CapybaraInvocation.clickPosition(node, rect.left, rect.top, rect.width, rect.height);
            Severity: Major
            Found in src/capybara.js and 1 other location - About 1 hr to fix
            src/capybara.js on lines 201..202

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 55.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            There are no issues that match your filters.

            Category
            Status