ifad/vacman_controller

View on GitHub
lib/vacman_controller/token/properties.rb

Summary

Maintainability
A
0 mins
Test Coverage

Class has too many lines. [158/100]
Open

    class Properties
      class << self
        # Gets the available token property names
        #
        def names

This cop checks if the length a class exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method has too many lines. [59/10]
Open

        def read_cast(property, value)
          # Short-circuit on 'NA'
          return nil if value == 'NA' or value == 'DISABLE'

          case property

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method has too many lines. [49/10]
Open

        def write_cast!(property, value)
          case property
            # Bounded integer values
          when 'last_time_used'
            write_check_bounds! property, value,

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Cyclomatic complexity for write_cast! is too high. [18/6]
Open

        def write_cast!(property, value)
          case property
            # Bounded integer values
          when 'last_time_used'
            write_check_bounds! property, value,

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Cyclomatic complexity for read_cast is too high. [14/6]
Open

        def read_cast(property, value)
          # Short-circuit on 'NA'
          return nil if value == 'NA' or value == 'DISABLE'

          case property

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Assignment Branch Condition size for write_cast! is too high. [22.02/15]
Open

        def write_cast!(property, value)
          case property
            # Bounded integer values
          when 'last_time_used'
            write_check_bounds! property, value,

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method read_cast has 59 lines of code (exceeds 25 allowed). Consider refactoring.
Wontfix

        def read_cast(property, value)
          # Short-circuit on 'NA'
          return nil if value == 'NA' or value == 'DISABLE'

          case property
Severity: Major
Found in lib/vacman_controller/token/properties.rb - About 2 hrs to fix

    Perceived complexity for write_cast! is too high. [11/7]
    Open

            def write_cast!(property, value)
              case property
                # Bounded integer values
              when 'last_time_used'
                write_check_bounds! property, value,

    This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

    Example:

    def my_method                   # 1
      if cond                       # 1
        case var                    # 2 (0.8 + 4 * 0.2, rounded)
        when 1 then func_one
        when 2 then func_two
        when 3 then func_three
        when 4..10 then func_other
        end
      else                          # 1
        do_something until a && b   # 2
      end                           # ===
    end                             # 7 complexity points

    Method write_cast! has 49 lines of code (exceeds 25 allowed). Consider refactoring.
    Wontfix

            def write_cast!(property, value)
              case property
                # Bounded integer values
              when 'last_time_used'
                write_check_bounds! property, value,
    Severity: Minor
    Found in lib/vacman_controller/token/properties.rb - About 1 hr to fix

      Perceived complexity for read_cast is too high. [8/7]
      Open

              def read_cast(property, value)
                # Short-circuit on 'NA'
                return nil if value == 'NA' or value == 'DISABLE'
      
                case property

      This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

      Example:

      def my_method                   # 1
        if cond                       # 1
          case var                    # 2 (0.8 + 4 * 0.2, rounded)
          when 1 then func_one
          when 2 then func_two
          when 3 then func_three
          when 4..10 then func_other
          end
        else                          # 1
          do_something until a && b   # 2
        end                           # ===
      end                             # 7 complexity points

      Method write_cast! has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Wontfix

              def write_cast!(property, value)
                case property
                  # Bounded integer values
                when 'last_time_used'
                  write_check_bounds! property, value,
      Severity: Minor
      Found in lib/vacman_controller/token/properties.rb - 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

      Method read_cast has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Wontfix

              def read_cast(property, value)
                # Short-circuit on 'NA'
                return nil if value == 'NA' or value == 'DISABLE'
      
                case property
      Severity: Minor
      Found in lib/vacman_controller/token/properties.rb - 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

      Align the parameters of a method call if they span more than one line.
      Open

                    [1, 364]

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Use empty lines between method definitions.
      Open

              def read_cast(property, value)

      This cop checks whether method definitions are separated by one empty line.

      NumberOfEmptyLines can be and integer (e.g. 1 by default) or an array (e.g. [1, 2]) to specificy a minimum and a maximum of empty lines.

      AllowAdjacentOneLineDefs can be used to configure is adjacent one line methods definitions are an offense

      Example:

      # bad
      def a
      end
      def b
      end

      Example:

      # good
      def a
      end
      
      def b
      end

      Extra blank line detected.
      Open

      
            # Get a Token property

      This cops checks for two or more consecutive blank lines.

      Example:

      # bad - It has two empty lines.
      some_method
      # one empty line
      # two empty lines
      some_method
      
      # good
      some_method
      # one empty line
      some_method

      Extra blank line detected.
      Open

      
              # Maps the given property value to a Ruby value for:

      This cops checks for two or more consecutive blank lines.

      Example:

      # bad - It has two empty lines.
      some_method
      # one empty line
      # two empty lines
      some_method
      
      # good
      some_method
      # one empty line
      some_method

      Keep a blank line before and after protected.
      Open

            protected

      Access modifiers should be surrounded by blank lines.

      Example:

      # bad
      class Foo
        def bar; end
        private
        def baz; end
      end
      
      # good
      class Foo
        def bar; end
      
        private
      
        def baz; end
      end

      Keep a blank line before and after private.
      Open

            private

      Access modifiers should be surrounded by blank lines.

      Example:

      # bad
      class Foo
        def bar; end
        private
        def baz; end
      end
      
      # good
      class Foo
        def bar; end
      
        private
      
        def baz; end
      end

      Use underscores(_) as decimal mark and separate every 3 digits with them.
      Open

                    [631152000, 2147483647]

      This cop checks for big numeric literals without _ between groups of digits in them.

      Example:

      # bad
      
      1000000
      1_00_000
      1_0000
      
      # good
      
      1_000_000
      1000
      
      # good unless Strict is set
      
      10_000_00 # typical representation of $10,000 in cents

      Align the parameters of a method call if they span more than one line.
      Open

                      "Token property #{property} cannot be set to #{value.inspect}"

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Extra blank line detected.
      Open

      
            # Set a Token property

      This cops checks for two or more consecutive blank lines.

      Example:

      # bad - It has two empty lines.
      some_method
      # one empty line
      # two empty lines
      some_method
      
      # good
      some_method
      # one empty line
      some_method

      Use value.zero? instead of value == 0.
      Open

                  if value == 0

      This cop checks for usage of comparison operators (==, >, <) to test numbers as zero, positive, or negative. These can be replaced by their respective predicate methods. The cop can also be configured to do the reverse.

      The cop disregards #nonzero? as it its value is truthy or falsey, but not true and false, and thus not always interchangeable with != 0.

      The cop ignores comparisons to global variables, since they are often populated with objects which can be compared with integers, but are not themselves Interger polymorphic.

      Example: EnforcedStyle: predicate (default)

      # bad
      
      foo == 0
      0 > foo
      bar.baz > 0
      
      # good
      
      foo.zero?
      foo.negative?
      bar.baz.positive?

      Example: EnforcedStyle: comparison

      # bad
      
      foo.zero?
      foo.negative?
      bar.baz.positive?
      
      # good
      
      foo == 0
      0 > foo
      bar.baz > 0

      Use empty lines between method definitions.
      Open

            def all

      This cop checks whether method definitions are separated by one empty line.

      NumberOfEmptyLines can be and integer (e.g. 1 by default) or an array (e.g. [1, 2]) to specificy a minimum and a maximum of empty lines.

      AllowAdjacentOneLineDefs can be used to configure is adjacent one line methods definitions are an offense

      Example:

      # bad
      def a
      end
      def b
      end

      Example:

      # good
      def a
      end
      
      def b
      end

      Extra blank line detected.
      Open

      
            def all

      This cops checks for two or more consecutive blank lines.

      Example:

      # bad - It has two empty lines.
      some_method
      # one empty line
      # two empty lines
      some_method
      
      # good
      some_method
      # one empty line
      some_method

      Inconsistent indentation detected.
      Open

              def write_cast!(property, value)
                case property
                  # Bounded integer values
                when 'last_time_used'
                  write_check_bounds! property, value,

      This cops checks for inconsistent indentation.

      Example:

      class A
        def test
          puts 'hello'
           puts 'world'
        end
      end

      Align the parameters of a method call if they span more than one line.
      Open

                    [3, 8]

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Avoid using rescue in its modifier form.
      Open

                h.update(name => (self[name] rescue "ERROR: #$!"))

      This cop checks for uses of rescue in its modifier form.

      Example:

      # bad
      some_method rescue handle_error
      
      # good
      begin
        some_method
      rescue
        handle_error
      end

      Align the parameters of a method call if they span more than one line.
      Open

                    [-100_000, 100_000]

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Use empty lines between method definitions.
      Open

            def []=(name, value)

      This cop checks whether method definitions are separated by one empty line.

      NumberOfEmptyLines can be and integer (e.g. 1 by default) or an array (e.g. [1, 2]) to specificy a minimum and a maximum of empty lines.

      AllowAdjacentOneLineDefs can be used to configure is adjacent one line methods definitions are an offense

      Example:

      # bad
      def a
      end
      def b
      end

      Example:

      # good
      def a
      end
      
      def b
      end

      Missing top-level class documentation comment.
      Open

          class Properties

      This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

      The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

      Example:

      # bad
      class Person
        # ...
      end
      
      # good
      # Description/Explanation of Person class
      class Person
        # ...
      end

      Use empty lines between method definitions.
      Open

            def inspect

      This cop checks whether method definitions are separated by one empty line.

      NumberOfEmptyLines can be and integer (e.g. 1 by default) or an array (e.g. [1, 2]) to specificy a minimum and a maximum of empty lines.

      AllowAdjacentOneLineDefs can be used to configure is adjacent one line methods definitions are an offense

      Example:

      # bad
      def a
      end
      def b
      end

      Example:

      # good
      def a
      end
      
      def b
      end

      Use underscores(_) as decimal mark and separate every 3 digits with them.
      Open

                    [631152000, 2147483647]

      This cop checks for big numeric literals without _ between groups of digits in them.

      Example:

      # bad
      
      1000000
      1_00_000
      1_0000
      
      # good
      
      1_000_000
      1000
      
      # good unless Strict is set
      
      10_000_00 # typical representation of $10,000 in cents

      Align the parameters of a method call if they span more than one line.
      Open

                      "Token property #{property} cannot be set to #{value.inspect}"

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Inconsistent indentation detected.
      Open

              def read_cast(property, value)
                # Short-circuit on 'NA'
                return nil if value == 'NA' or value == 'DISABLE'
      
                case property

      This cops checks for inconsistent indentation.

      Example:

      class A
        def test
          puts 'hello'
           puts 'world'
        end
      end

      Align the parameters of a method call if they span more than one line.
      Open

                    [0, 4_294_967_294]

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Extra empty line detected at class body end.
      Open

      
        end

      This cops checks if empty lines around the bodies of classes match the configuration.

      Example: EnforcedStyle: empty_lines

      # good
      
      class Foo
      
        def bar
          # ...
        end
      
      end

      Example: EnforcedStyle: emptylinesexcept_namespace

      # good
      
      class Foo
        class Bar
      
          # ...
      
        end
      end

      Example: EnforcedStyle: emptylinesspecial

      # good
      class Foo
      
        def bar; end
      
      end

      Example: EnforcedStyle: noemptylines (default)

      # good
      
      class Foo
        def bar
          # ...
        end
      end

      Unused method argument - block. If it's necessary, use _ or _block as an argument name to indicate that it won't be used.
      Open

              def method_missing(name, *args, &block)

      This cop checks for unused method arguments.

      Example:

      # bad
      
      def some_method(used, unused, _unused_but_allowed)
        puts used
      end

      Example:

      # good
      
      def some_method(used, _unused, _unused_but_allowed)
        puts used
      end

      Replace interpolated variable $! with expression #{$!}.
      Open

                h.update(name => (self[name] rescue "ERROR: #$!"))

      This cop checks for variable interpolation (like "#@ivar").

      Example:

      # bad
      "His name is #$name"
      /check #$pattern/
      "Let's go to the #@store"
      
      # good
      "His name is #{$name}"
      /check #{$pattern}/
      "Let's go to the #{@store}"

      Align the parameters of a method call if they span more than one line.
      Open

                    [0, 254]

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      When using method_missing, define respond_to_missing? and fall back on super.
      Open

              def method_missing(name, *args, &block)
                prop, setter = name.to_s.match(/\A(.+?)(=)?\Z/).values_at(1, 2)
      
                if setter
                  self[prop] = args.first

      This cop checks for the presence of method_missing without also defining respond_to_missing? and falling back on super.

      Example:

      #bad
      def method_missing(name, *args)
        # ...
      end
      
      #good
      def respond_to_missing?(name, include_private)
        # ...
      end
      
      def method_missing(name, *args)
        # ...
        super
      end

      Align the parameters of a method call if they span more than one line.
      Open

                    [631152000, 2147483647]

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Align the parameters of a method call if they span more than one line.
      Open

                      "Token property #{property} cannot be set to #{value.inspect}"

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Unnecessary spacing detected.
      Open

                when  # Integer values

      This cop checks for extra/unnecessary whitespace.

      Example:

      # good if AllowForAlignment is true
      name      = "RuboCop"
      # Some comment and an empty line
      
      website  += "/bbatsov/rubocop" unless cond
      puts        "rubocop"          if     debug
      
      # bad for any configuration
      set_app("RuboCop")
      website  = "https://github.com/bbatsov/rubocop"

      Inconsistent indentation detected.
      Open

              def method_missing(name, *args, &block)
                prop, setter = name.to_s.match(/\A(.+?)(=)?\Z/).values_at(1, 2)
      
                if setter
                  self[prop] = args.first

      This cops checks for inconsistent indentation.

      Example:

      class A
        def test
          puts 'hello'
           puts 'world'
        end
      end

      Avoid comparing a variable with multiple items in a conditional, use Array#include? instead.
      Open

                return nil if value == 'NA' or value == 'DISABLE'

      This cop checks against comparing a variable with multiple items, where Array#include? could be used instead to avoid code repetition.

      Example:

      # bad
      a = 'a'
      foo if a == 'a' || a == 'b' || a == 'c'
      
      # good
      a = 'a'
      foo if ['a', 'b', 'c'].include?(a)

      Prefer $ERROR_INFO from the stdlib 'English' module (don't forget to require it) over $!.
      Open

                h.update(name => (self[name] rescue "ERROR: #$!"))

      Extra blank line detected.
      Open

      
            def initialize(token)

      This cops checks for two or more consecutive blank lines.

      Example:

      # bad - It has two empty lines.
      some_method
      # one empty line
      # two empty lines
      some_method
      
      # good
      some_method
      # one empty line
      some_method

      Extra blank line detected.
      Open

      
            def inspect

      This cops checks for two or more consecutive blank lines.

      Example:

      # bad - It has two empty lines.
      some_method
      # one empty line
      # two empty lines
      some_method
      
      # good
      some_method
      # one empty line
      some_method

      Align the parameters of a method call if they span more than one line.
      Open

                    "Invalid or read-only property: #{property}"

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Align the parameters of a method call if they span more than one line.
      Open

                    "Invalid #{property} value provided: #{value}. " \
                    "Must be between greater than #{min} and less than #{max}."

      Here we check if the parameters on a multi-line method call or definition are aligned.

      Example: EnforcedStyle: withfirstparameter (default)

      # good
      
      foo :bar,
          :baz
      
      # bad
      
      foo :bar,
        :baz

      Example: EnforcedStyle: withfixedindentation

      # good
      
      foo :bar,
        :baz
      
      # bad
      
      foo :bar,
          :baz

      Extra empty line detected at class body beginning.
      Open

      
          class Properties

      This cops checks if empty lines around the bodies of classes match the configuration.

      Example: EnforcedStyle: empty_lines

      # good
      
      class Foo
      
        def bar
          # ...
        end
      
      end

      Example: EnforcedStyle: emptylinesexcept_namespace

      # good
      
      class Foo
        class Bar
      
          # ...
      
        end
      end

      Example: EnforcedStyle: emptylinesspecial

      # good
      class Foo
      
        def bar; end
      
      end

      Example: EnforcedStyle: noemptylines (default)

      # good
      
      class Foo
        def bar
          # ...
        end
      end

      Inconsistent indentation detected.
      Open

              def write_check_bounds!(property, value, bounds)
                min, max = bounds
      
                if value < min || value > max
                  raise VacmanController::Error,

      This cops checks for inconsistent indentation.

      Example:

      class A
        def test
          puts 'hello'
           puts 'world'
        end
      end

      Use || instead of or.
      Open

                return nil if value == 'NA' or value == 'DISABLE'

      This cop checks for uses of and and or, and suggests using && and || instead. It can be configured to check only in conditions, or in all contexts.

      Example: EnforcedStyle: always (default)

      # bad
      foo.save and return
      
      # bad
      if foo and bar
      end
      
      # good
      foo.save && return
      
      # good
      if foo && bar
      end

      Example: EnforcedStyle: conditionals

      # bad
      if foo and bar
      end
      
      # good
      foo.save && return
      
      # good
      foo.save and return
      
      # good
      if foo && bar
      end

      There are no issues that match your filters.

      Category
      Status