inertia186/radiator

View on GitHub
lib/radiator/ssc/base_steem_smart_contract_rpc.rb

Summary

Maintainability
B
5 hrs
Test Coverage

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

    class BaseSteemSmartContractRPC
      # @private
      POST_HEADERS = {
        'Content-Type' => 'application/json',
        'User-Agent' => Radiator::AGENT_ID

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. [29/10]
Open

      def initialize(options = {})
        @root_url = options[:root_url] || 'https://api.steem-engine.net/rpc'
        
        @self_hashie_logger = false
        @hashie_logger = if options[:hashie_logger].nil?

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.

Assignment Branch Condition size for request is too high. [34.34/15]
Open

      def request(options)
        request = post_request
        skip_health_check = options.delete(:skip_health_check)
        request.body = JSON[options.merge(jsonrpc: '2.0', id: rpc_id)]
        

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 has too many lines. [26/10]
Open

      def request(options)
        request = post_request
        skip_health_check = options.delete(:skip_health_check)
        request.body = JSON[options.merge(jsonrpc: '2.0', id: rpc_id)]
        

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.

Assignment Branch Condition size for http is too high. [26.17/15]
Open

      def http
        @http ||= if persist?
          if defined? Net::HTTP::Persistent::DEFAULT_POOL_SIZE
            Net::HTTP::Persistent.new(name: http_id, pool_size: @pool_size).tap do |http|
              http.keep_alive = 30

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 has too many lines. [20/10]
Open

      def http
        @http ||= if persist?
          if defined? Net::HTTP::Persistent::DEFAULT_POOL_SIZE
            Net::HTTP::Persistent.new(name: http_id, pool_size: @pool_size).tap do |http|
              http.keep_alive = 30

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.

Assignment Branch Condition size for initialize is too high. [21.4/15]
Open

      def initialize(options = {})
        @root_url = options[:root_url] || 'https://api.steem-engine.net/rpc'
        
        @self_hashie_logger = false
        @hashie_logger = if options[:hashie_logger].nil?

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

Perceived complexity for initialize is too high. [12/7]
Open

      def initialize(options = {})
        @root_url = options[:root_url] || 'https://api.steem-engine.net/rpc'
        
        @self_hashie_logger = false
        @hashie_logger = if options[:hashie_logger].nil?

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

Cyclomatic complexity for initialize is too high. [9/6]
Open

      def initialize(options = {})
        @root_url = options[:root_url] || 'https://api.steem-engine.net/rpc'
        
        @self_hashie_logger = false
        @hashie_logger = if options[:hashie_logger].nil?

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.

Method request has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

      def request(options)
        request = post_request
        skip_health_check = options.delete(:skip_health_check)
        request.body = JSON[options.merge(jsonrpc: '2.0', id: rpc_id)]
        
Severity: Minor
Found in lib/radiator/ssc/base_steem_smart_contract_rpc.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

Cyclomatic complexity for request is too high. [8/6]
Open

      def request(options)
        request = post_request
        skip_health_check = options.delete(:skip_health_check)
        request.body = JSON[options.merge(jsonrpc: '2.0', id: rpc_id)]
        

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.

Method initialize has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

      def initialize(options = {})
        @root_url = options[:root_url] || 'https://api.steem-engine.net/rpc'
        
        @self_hashie_logger = false
        @hashie_logger = if options[:hashie_logger].nil?
Severity: Minor
Found in lib/radiator/ssc/base_steem_smart_contract_rpc.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 initialize has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def initialize(options = {})
        @root_url = options[:root_url] || 'https://api.steem-engine.net/rpc'
        
        @self_hashie_logger = false
        @hashie_logger = if options[:hashie_logger].nil?
Severity: Minor
Found in lib/radiator/ssc/base_steem_smart_contract_rpc.rb - About 1 hr to fix

    Method request has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def request(options)
            request = post_request
            skip_health_check = options.delete(:skip_health_check)
            request.body = JSON[options.merge(jsonrpc: '2.0', id: rpc_id)]
            
    Severity: Minor
    Found in lib/radiator/ssc/base_steem_smart_contract_rpc.rb - About 1 hr to fix

      Avoid more than 3 levels of block nesting.
      Open

                    raise "Too many failures on #{url}" if backoff >= MAX_BACKOFF

      This cop checks for excessive nesting of conditional and looping constructs.

      You can configure if blocks are considered using the CountBlocks option. When set to false (the default) blocks are not counted towards the nesting level. Set to true to count blocks as well.

      The maximum level of nesting allowed is configurable.

      Indent when as deep as case.
      Open

              when Net::HTTP::Persistent then http.request(uri, request)

      This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

      It will register a separate offense for each misaligned when.

      Example:

      # If Layout/EndAlignment is set to keyword style (default)
      # *case* and *end* should always be aligned to same depth,
      # and therefore *when* should always be aligned to both -
      # regardless of configuration.
      
      # bad for all styles
      case n
        when 0
          x * 2
        else
          y / 3
      end
      
      # good for all styles
      case n
      when 0
        x * 2
      else
        y / 3
      end

      Example: EnforcedStyle: case (default)

      # if EndAlignment is set to other style such as
      # start_of_line (as shown below), then *when* alignment
      # configuration does have an effect.
      
      # bad
      a = case n
      when 0
        x * 2
      else
        y / 3
      end
      
      # good
      a = case n
          when 0
            x * 2
          else
            y / 3
      end

      Example: EnforcedStyle: end

      # bad
      a = case n
          when 0
            x * 2
          else
            y / 3
      end
      
      # good
      a = case n
      when 0
        x * 2
      else
        y / 3
      end

      Align else with if.
      Open

              else

      This cops checks the alignment of else keywords. Normally they should be aligned with an if/unless/while/until/begin/def keyword, but there are special cases when they should follow the same rules as the alignment of end.

      Example:

      # bad
      if something
        code
       else
        code
      end
      
      # bad
      if something
        code
       elsif something
        code
      end
      
      # good
      if something
        code
      else
        code
      end

      Trailing whitespace detected.
      Open

                

      Indent when as deep as case.
      Open

              when Net::HTTP then http.request(request)

      This cop checks how the whens of a case expression are indented in relation to its case or end keyword.

      It will register a separate offense for each misaligned when.

      Example:

      # If Layout/EndAlignment is set to keyword style (default)
      # *case* and *end* should always be aligned to same depth,
      # and therefore *when* should always be aligned to both -
      # regardless of configuration.
      
      # bad for all styles
      case n
        when 0
          x * 2
        else
          y / 3
      end
      
      # good for all styles
      case n
      when 0
        x * 2
      else
        y / 3
      end

      Example: EnforcedStyle: case (default)

      # if EndAlignment is set to other style such as
      # start_of_line (as shown below), then *when* alignment
      # configuration does have an effect.
      
      # bad
      a = case n
      when 0
        x * 2
      else
        y / 3
      end
      
      # good
      a = case n
          when 0
            x * 2
          else
            y / 3
      end

      Example: EnforcedStyle: end

      # bad
      a = case n
          when 0
            x * 2
          else
            y / 3
      end
      
      # good
      a = case n
      when 0
        x * 2
      else
        y / 3
      end

      Trailing whitespace detected.
      Open

              

      end at 126, 8 is not aligned with case at 122, 19.
      Open

              end

      This cop checks whether the end keywords are aligned properly.

      Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

      If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

      If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

      If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

      Example: EnforcedStyleAlignWith: keyword (default)

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
                 end

      Example: EnforcedStyleAlignWith: variable

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
      end

      Example: EnforcedStyleAlignWith: startofline

      # bad
      
      variable = if true
          end
      
      # good
      
      puts(if true
      end)

      Use 2 (not -15) spaces for indentation.
      Open

                @self_hashie_logger = true

      This cops checks for indentation that doesn't use the specified number of spaces.

      See also the IndentationConsistency cop which is the companion to this one.

      Example:

      # bad
      class A
       def test
        puts 'hello'
       end
      end
      
      # good
      class A
        def test
          puts 'hello'
        end
      end

      Example: IgnoredPatterns: ['^\s*module']

      # bad
      module A
      class B
        def test
        puts 'hello'
        end
      end
      end
      
      # good
      module A
      class B
        def test
          puts 'hello'
        end
      end
      end

      end at 37, 8 is not aligned with if at 33, 19.
      Open

              end

      This cop checks whether the end keywords are aligned properly.

      Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

      If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

      If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

      If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

      Example: EnforcedStyleAlignWith: keyword (default)

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
                 end

      Example: EnforcedStyleAlignWith: variable

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
      end

      Example: EnforcedStyleAlignWith: startofline

      # bad
      
      variable = if true
          end
      
      # good
      
      puts(if true
      end)

      Argument http was shadowed by a local variable before it was used.
      Open

                    http = Net::HTTP.new(uri.host, uri.port)

      This cop checks for shadowed arguments.

      Example:

      # bad
      
      do_something do |foo|
        foo = 42
        puts foo
      end
      
      def do_something(foo)
        foo = 42
        puts foo
      end

      Example:

      # good
      
      do_something do |foo|
        foo = foo + 42
        puts foo
      end
      
      def do_something(foo)
        foo = foo + 42
        puts foo
      end
      
      def do_something(foo)
        puts foo
      end

      Align else with if.
      Open

              else

      This cops checks the alignment of else keywords. Normally they should be aligned with an if/unless/while/until/begin/def keyword, but there are special cases when they should follow the same rules as the alignment of end.

      Example:

      # bad
      if something
        code
       else
        code
      end
      
      # bad
      if something
        code
       elsif something
        code
      end
      
      # good
      if something
        code
      else
        code
      end

      Trailing whitespace detected.
      Open

                  

      Trailing whitespace detected.
      Open

                    

      Trailing whitespace detected.
      Open

              

      Avoid the use of double negation (!!).
      Open

              if !!(error = response.error)

      This cop checks for uses of double negation (!!) to convert something to a boolean value. As this is both cryptic and usually redundant, it should be avoided.

      Example:

      # bad
      !!something
      
      # good
      !something.nil?

      Please, note that when something is a boolean value !!something and !something.nil? are not the same thing. As you're unlikely to write code that can accept values of any type this is rarely a problem in practice.

      end at 92, 8 is not aligned with if at 72, 18.
      Open

              end

      This cop checks whether the end keywords are aligned properly.

      Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

      If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

      If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

      If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

      Example: EnforcedStyleAlignWith: keyword (default)

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
                 end

      Example: EnforcedStyleAlignWith: variable

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
      end

      Example: EnforcedStyleAlignWith: startofline

      # bad
      
      variable = if true
          end
      
      # good
      
      puts(if true
      end)

      Line is too long. [88/80]
      Open

              @http_id ||= "radiator-#{Radiator::VERSION}-ssc-blockchain-#{SecureRandom.uuid}"

      Line is too long. [86/80]
      Open

                    http.retry_change_requests = true if defined? http.retry_change_requests

      Trailing whitespace detected.
      Open

              

      Trailing whitespace detected.
      Open

              

      Trailing whitespace detected.
      Open

            

      Align else with if.
      Open

              else

      This cops checks the alignment of else keywords. Normally they should be aligned with an if/unless/while/until/begin/def keyword, but there are special cases when they should follow the same rules as the alignment of end.

      Example:

      # bad
      if something
        code
       else
        code
      end
      
      # bad
      if something
        code
       elsif something
        code
      end
      
      # good
      if something
        code
      else
        code
      end

      Trailing whitespace detected.
      Open

            

      Trailing whitespace detected.
      Open

            

      Trailing whitespace detected.
      Open

            

      Line is too long. [86/80]
      Open

                @pool_size = options[:pool_size] || Net::HTTP::Persistent::DEFAULT_POOL_SIZE

      Use 2 (not -20) spaces for indentation.
      Open

                options[:reuse_ssl_sessions]

      This cops checks for indentation that doesn't use the specified number of spaces.

      See also the IndentationConsistency cop which is the companion to this one.

      Example:

      # bad
      class A
       def test
        puts 'hello'
       end
      end
      
      # good
      class A
        def test
          puts 'hello'
        end
      end

      Example: IgnoredPatterns: ['^\s*module']

      # bad
      module A
      class B
        def test
        puts 'hello'
        end
      end
      end
      
      # good
      module A
      class B
        def test
          puts 'hello'
        end
      end
      end

      Trailing whitespace detected.
      Open

            

      Trailing whitespace detected.
      Open

              

      Line is too long. [89/80]
      Open

                  Net::HTTP::Persistent.new(name: http_id, pool_size: @pool_size).tap do |http|

      Trailing whitespace detected.
      Open

              

      Trailing whitespace detected.
      Open

            

      Trailing whitespace detected.
      Open

            

      Use 2 (not -8) spaces for indentation.
      Open

                if defined? Net::HTTP::Persistent::DEFAULT_POOL_SIZE

      This cops checks for indentation that doesn't use the specified number of spaces.

      See also the IndentationConsistency cop which is the companion to this one.

      Example:

      # bad
      class A
       def test
        puts 'hello'
       end
      end
      
      # good
      class A
        def test
          puts 'hello'
        end
      end

      Example: IgnoredPatterns: ['^\s*module']

      # bad
      module A
      class B
        def test
        puts 'hello'
        end
      end
      end
      
      # good
      module A
      class B
        def test
          puts 'hello'
        end
      end
      end

      Avoid the use of double negation (!!).
      Open

                  if !!backoff

      This cop checks for uses of double negation (!!) to convert something to a boolean value. As this is both cryptic and usually redundant, it should be avoided.

      Example:

      # bad
      !!something
      
      # good
      !something.nil?

      Please, note that when something is a boolean value !!something and !something.nil? are not the same thing. As you're unlikely to write code that can accept values of any type this is rarely a problem in practice.

      Avoid the use of double negation (!!).
      Open

              !!@persist

      This cop checks for uses of double negation (!!) to convert something to a boolean value. As this is both cryptic and usually redundant, it should be avoided.

      Example:

      # bad
      !!something
      
      # good
      !something.nil?

      Please, note that when something is a boolean value !!something and !something.nil? are not the same thing. As you're unlikely to write code that can accept values of any type this is rarely a problem in practice.

      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

      Use 2 (not -9) spaces for indentation.
      Open

                true
              else

      This cops checks for indentation that doesn't use the specified number of spaces.

      See also the IndentationConsistency cop which is the companion to this one.

      Example:

      # bad
      class A
       def test
        puts 'hello'
       end
      end
      
      # good
      class A
        def test
          puts 'hello'
        end
      end

      Example: IgnoredPatterns: ['^\s*module']

      # bad
      module A
      class B
        def test
        puts 'hello'
        end
      end
      end
      
      # good
      module A
      class B
        def test
          puts 'hello'
        end
      end
      end

      Trailing whitespace detected.
      Open

              

      Trailing whitespace detected.
      Open

                  

      Trailing whitespace detected.
      Open

              

      Missing top-level class documentation comment.
      Open

          class BaseSteemSmartContractRPC

      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

      Freeze mutable objects assigned to constants.
      Open

            POST_HEADERS = {
              'Content-Type' => 'application/json',
              'User-Agent' => Radiator::AGENT_ID
            }

      This cop checks whether some constant value isn't a mutable literal (e.g. array or hash).

      Example:

      # bad
      CONST = [1, 2, 3]
      
      # good
      CONST = [1, 2, 3].freeze

      Use self-assignment shorthand +=.
      Open

              @rpc_id = @rpc_id + 1

      This cop enforces the use the shorthand for self-assignment.

      Example:

      # bad
      x = x + 1
      
      # good
      x += 1

      Trailing whitespace detected.
      Open

              

      Trailing whitespace detected.
      Open

              

      Indent access modifiers like protected.
      Open

          protected

      Modifiers should be indented as deep as method definitions, or as deep as the class/module keyword, depending on configuration.

      Example: EnforcedStyle: indent (default)

      # bad
      class Plumbus
      private
        def smooth; end
      end
      
      # good
      class Plumbus
        private
        def smooth; end
      end

      Example: EnforcedStyle: outdent

      # bad
      class Plumbus
        private
        def smooth; end
      end
      
      # good
      class Plumbus
      private
        def smooth; end
      end

      Trailing whitespace detected.
      Open

            

      Align else with if.
      Open

              else

      This cops checks the alignment of else keywords. Normally they should be aligned with an if/unless/while/until/begin/def keyword, but there are special cases when they should follow the same rules as the alignment of end.

      Example:

      # bad
      if something
        code
       else
        code
      end
      
      # bad
      if something
        code
       elsif something
        code
      end
      
      # good
      if something
        code
      else
        code
      end

      Trailing whitespace detected.
      Open

            

      Trailing whitespace detected.
      Open

            

      end at 21, 8 is not aligned with if at 16, 25.
      Open

              end

      This cop checks whether the end keywords are aligned properly.

      Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

      If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

      If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

      If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

      Example: EnforcedStyleAlignWith: keyword (default)

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
                 end

      Example: EnforcedStyleAlignWith: variable

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
      end

      Example: EnforcedStyleAlignWith: startofline

      # bad
      
      variable = if true
          end
      
      # good
      
      puts(if true
      end)

      end at 31, 8 is not aligned with if at 27, 30.
      Open

              end

      This cop checks whether the end keywords are aligned properly.

      Three modes are supported through the EnforcedStyleAlignWith configuration parameter:

      If it's set to keyword (which is the default), the end shall be aligned with the start of the keyword (if, class, etc.).

      If it's set to variable the end shall be aligned with the left-hand-side of the variable assignment, if there is one.

      If it's set to start_of_line, the end shall be aligned with the start of the line where the matching keyword appears.

      Example: EnforcedStyleAlignWith: keyword (default)

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
                 end

      Example: EnforcedStyleAlignWith: variable

      # bad
      
      variable = if true
          end
      
      # good
      
      variable = if true
      end

      Example: EnforcedStyleAlignWith: startofline

      # bad
      
      variable = if true
          end
      
      # good
      
      puts(if true
      end)

      Trailing whitespace detected.
      Open

              

      There are no issues that match your filters.

      Category
      Status