HewlettPackard/oneview-sdk-ruby

View on GitHub

Showing 225 of 225 total issues

File cli.rb has 540 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'thor'
require 'json'
require 'yaml'
require 'highline/import'

Severity: Major
Found in lib/oneview-sdk/cli.rb - About 1 day to fix

    Method output has a Cognitive Complexity of 49 (exceeds 5 allowed). Consider refactoring.
    Open

        def output(data = {}, indent = 0)
          case @options['format']
          when 'json'
            puts JSON.pretty_generate(data)
          when 'yaml'
    Severity: Minor
    Found in lib/oneview-sdk/cli.rb - About 7 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

    Method recursive_like? has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

        def recursive_like?(other, data = @data)
          raise "Can't compare with object type: #{other.class}! Must respond_to :each" unless other.respond_to?(:each)
          other.each do |key, val|
            return false unless data && data.respond_to?(:[])
            if val.is_a?(Hash)
    Severity: Minor
    Found in lib/oneview-sdk/resource.rb - 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

    Class Resource has 31 methods (exceeds 20 allowed). Consider refactoring.
    Open

      class Resource
        BASE_URI = '/rest'.freeze
        UNIQUE_IDENTIFIERS = %w[name uri].freeze # Ordered list of unique attributes to search by
        DEFAULT_REQUEST_HEADER = {}.freeze
    
    
    Severity: Minor
    Found in lib/oneview-sdk/resource.rb - About 3 hrs to fix

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v2400
        module API2400
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api2400.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v1600
        module API1600
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api1600.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v3000
        module API3000
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api3000.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v2000
        module API2000
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api2000.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v500
        module API500
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api500.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v1800
        module API1800
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api1800.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v2200
        module API2200
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api2200.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v2600
        module API2600
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api2600.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v1000
        module API1000
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api1000.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v600
        module API600
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api600.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v1200
        module API1200
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api1200.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v300
        module API300
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api300.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v800
        module API800
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api800.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api2800.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60

      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 131.

      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

      Similar blocks of code found in 14 locations. Consider refactoring.
      Open

      module OneviewSDK
        # Module for API v2800
        module API2800
          SUPPORTED_VARIANTS = %w[C7000 Synergy].freeze
          DEFAULT_VARIANT = 'C7000'.freeze
      Severity: Major
      Found in lib/oneview-sdk/resource/api2800.rb and 13 other locations - About 3 hrs to fix
      lib/oneview-sdk/resource/api1000.rb on lines 12..60
      lib/oneview-sdk/resource/api1200.rb on lines 12..60
      lib/oneview-sdk/resource/api1600.rb on lines 12..60
      lib/oneview-sdk/resource/api1800.rb on lines 12..60
      lib/oneview-sdk/resource/api2000.rb on lines 12..60
      lib/oneview-sdk/resource/api2200.rb on lines 12..60
      lib/oneview-sdk/resource/api2400.rb on lines 12..60
      lib/oneview-sdk/resource/api2600.rb on lines 12..60
      lib/oneview-sdk/resource/api300.rb on lines 12..60
      lib/oneview-sdk/resource/api3000.rb on lines 12..60
      lib/oneview-sdk/resource/api500.rb on lines 12..60
      lib/oneview-sdk/resource/api600.rb on lines 12..60
      lib/oneview-sdk/resource/api800.rb on lines 12..60

      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 131.

      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

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

          def initialize(options = {})
            options = Hash[options.map { |k, v| [k.to_sym, v] }] # Convert string hash keys to symbols
            STDOUT.sync = true
            @logger = options[:logger] || Logger.new(STDOUT)
            %i[debug info warn error level=].each { |m| raise InvalidClient, "Logger must respond to #{m} method " unless @logger.respond_to?(m) }
      Severity: Minor
      Found in lib/oneview-sdk/client.rb - 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

      Method parse_hash has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          def parse_hash(hash, convert_types = false)
            new_hash = {}
            hash.each do |k, v|
              if convert_types
                v = v.to_i if v && v.match(/^\d+$/)
      Severity: Minor
      Found in lib/oneview-sdk/cli.rb - 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

      Severity
      Category
      Status
      Source
      Language