mongodb/mongoid

View on GitHub
lib/mongoid/criteria/queryable/mergeable.rb

Summary

Maintainability
C
1 day
Test Coverage

Method _mongoid_expand_keys has a Cognitive Complexity of 52 (exceeds 5 allowed). Consider refactoring.
Open

        private def _mongoid_expand_keys(expr)
          unless expr.is_a?(Hash)
            raise ArgumentError, 'Argument must be a Hash'
          end

Severity: Minor
Found in lib/mongoid/criteria/queryable/mergeable.rb - About 1 day 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

Method _mongoid_expand_keys has 52 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        private def _mongoid_expand_keys(expr)
          unless expr.is_a?(Hash)
            raise ArgumentError, 'Argument must be a Hash'
          end

Severity: Major
Found in lib/mongoid/criteria/queryable/mergeable.rb - About 2 hrs to fix

    Method _mongoid_add_top_level_operation has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

            private def _mongoid_add_top_level_operation(operator, criteria)
              # Flatten the criteria. The idea is that predicates in MongoDB
              # are always hashes and are never arrays. This method additionally
              # allows Criteria instances as predicates.
              # The flattening is existing Mongoid behavior but we could possibly
    Severity: Minor
    Found in lib/mongoid/criteria/queryable/mergeable.rb - 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

    Method __multi__ has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

            def __multi__(criteria, operator)
              clone.tap do |query|
                sel = query.selector
                criteria.flatten.each do |expr|
                  next unless expr
    Severity: Minor
    Found in lib/mongoid/criteria/queryable/mergeable.rb - 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

    Method prepare has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

            def prepare(field, operator, value)
              unless operator =~ /exists|type|size/
                value = value.__expand_complex__
                field = field.to_s
                name = aliases[field] || field
    Severity: Minor
    Found in lib/mongoid/criteria/queryable/mergeable.rb - About 45 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

    There are no issues that match your filters.

    Category
    Status