BallAerospace/COSMOS

View on GitHub
cosmos/lib/cosmos/script/api_shared.rb

Summary

Maintainability
F
4 days
Test Coverage

Method _cosmos_script_wait_implementation has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Open

    def _cosmos_script_wait_implementation(target_name, packet_name, item_name, value_type, timeout, polling_rate, exp_to_eval, scope: $cosmos_scope, token: $cosmos_token, &block)
      end_time = Time.now.sys + timeout

      while true
        work_start = Time.now.sys
Severity: Minor
Found in cosmos/lib/cosmos/script/api_shared.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method wait_check_tolerance has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def wait_check_tolerance(*args, type: :CONVERTED, scope: $cosmos_scope, token: $cosmos_token, &block)
      raise "Invalid type '#{type}' for wait_check_tolerance" unless %i(RAW CONVERTED).include?(type)

      target_name, packet_name, item_name, expected_value, tolerance, timeout, polling_rate = _wait_tolerance_process_args(args, scope: scope, token: token)
      start_time = Time.now.sys
Severity: Minor
Found in cosmos/lib/cosmos/script/api_shared.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method check_tolerance has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def check_tolerance(*args, type: :CONVERTED, scope: $cosmos_scope, token: $cosmos_token)
      raise "Invalid type '#{type}' for check_tolerance" unless %i(RAW CONVERTED).include?(type)

      target_name, packet_name, item_name, expected_value, tolerance =
        _check_tolerance_process_args(args, scope: scope, token: token)
Severity: Minor
Found in cosmos/lib/cosmos/script/api_shared.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method cosmos_script_wait_implementation_expression has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

    def cosmos_script_wait_implementation_expression(exp_to_eval, timeout, polling_rate, context, scope: $cosmos_scope, token: $cosmos_token)
      end_time = Time.now.sys + timeout

      while true
        work_start = Time.now.sys
Severity: Minor
Found in cosmos/lib/cosmos/script/api_shared.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method wait_tolerance has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

    def wait_tolerance(*args, type: :CONVERTED, scope: $cosmos_scope, token: $cosmos_token)
      raise "Invalid type '#{type}' for wait_tolerance" unless %i(RAW CONVERTED).include?(type)

      target_name, packet_name, item_name, expected_value, tolerance, timeout, polling_rate = _wait_tolerance_process_args(args, scope: scope, token: token)
      start_time = Time.now.sys
Severity: Minor
Found in cosmos/lib/cosmos/script/api_shared.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 _wait_tolerance_process_args has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    def _wait_tolerance_process_args(args, scope: $cosmos_scope, token: $cosmos_token)
      case args.length
      when 4, 5
        target_name, packet_name, item_name = extract_fields_from_tlm_text(args[0])
        expected_value = args[1]
Severity: Minor
Found in cosmos/lib/cosmos/script/api_shared.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 cosmos_script_wait_implementation_array_tolerance has 10 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def cosmos_script_wait_implementation_array_tolerance(array_size, target_name, packet_name, item_name, value_type, expected_value, tolerance, timeout, polling_rate = DEFAULT_TLM_POLLING_RATE, scope: $cosmos_scope, token: $cosmos_token, &block)
Severity: Major
Found in cosmos/lib/cosmos/script/api_shared.rb - About 1 hr to fix

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

        def _wait_packet(check,
                         target_name,
                         packet_name,
                         num_packets,
                         timeout,
    Severity: Minor
    Found in cosmos/lib/cosmos/script/api_shared.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 cosmos_script_wait_implementation_tolerance has 9 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def cosmos_script_wait_implementation_tolerance(target_name, packet_name, item_name, value_type, expected_value, tolerance, timeout, polling_rate = DEFAULT_TLM_POLLING_RATE, scope: $cosmos_scope, token: $cosmos_token, &block)
    Severity: Major
    Found in cosmos/lib/cosmos/script/api_shared.rb - About 1 hr to fix

      Method check_exception has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def check_exception(method_name, *args, **kwargs)
            orig_kwargs = kwargs.clone
            kwargs[:scope] = $cosmos_scope unless kwargs[:scope]
            kwargs[:token] = $cosmos_token unless kwargs[:token]
            send(method_name.intern, *args, **kwargs)
      Severity: Minor
      Found in cosmos/lib/cosmos/script/api_shared.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 wait has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def wait(*args, type: :CONVERTED, scope: $cosmos_scope, token: $cosmos_token)
            time = nil
      
            case args.length
            # wait() # indefinitely until they click Go
      Severity: Minor
      Found in cosmos/lib/cosmos/script/api_shared.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 _cosmos_script_wait_implementation has 8 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def _cosmos_script_wait_implementation(target_name, packet_name, item_name, value_type, timeout, polling_rate, exp_to_eval, scope: $cosmos_scope, token: $cosmos_token, &block)
      Severity: Major
      Found in cosmos/lib/cosmos/script/api_shared.rb - About 1 hr to fix

        Method cosmos_script_wait_implementation has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def cosmos_script_wait_implementation(target_name, packet_name, item_name, value_type, comparison_to_eval, timeout, polling_rate = DEFAULT_TLM_POLLING_RATE, scope: $cosmos_scope, token: $cosmos_token, &block)
        Severity: Major
        Found in cosmos/lib/cosmos/script/api_shared.rb - About 1 hr to fix

          Method _execute_wait has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def _execute_wait(target_name, packet_name, item_name, value_type, comparison_to_eval, timeout, polling_rate, scope: $cosmos_scope, token: $cosmos_token)
          Severity: Major
          Found in cosmos/lib/cosmos/script/api_shared.rb - About 50 mins to fix

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

                def array_tolerance_process_args(array_size, expected_value, tolerance, function_name, scope: $cosmos_scope, token: $cosmos_token)
                  if expected_value.is_a?(Array)
                    if array_size != expected_value.size
                      raise "ERROR: Invalid array size for expected_value passed to #{function_name}()"
                    end
            Severity: Minor
            Found in cosmos/lib/cosmos/script/api_shared.rb - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method _wait_packet has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def _wait_packet(check,
                                 target_name,
                                 packet_name,
                                 num_packets,
                                 timeout,
            Severity: Minor
            Found in cosmos/lib/cosmos/script/api_shared.rb - About 45 mins to fix

              Method wait_packet has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def wait_packet(target_name,
                                  packet_name,
                                  num_packets,
                                  timeout,
                                  polling_rate = DEFAULT_TLM_POLLING_RATE,
              Severity: Minor
              Found in cosmos/lib/cosmos/script/api_shared.rb - About 35 mins to fix

                Method wait_check_packet has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def wait_check_packet(target_name,
                                          packet_name,
                                          num_packets,
                                          timeout,
                                          polling_rate = DEFAULT_TLM_POLLING_RATE,
                Severity: Minor
                Found in cosmos/lib/cosmos/script/api_shared.rb - About 35 mins to fix

                  Method check_eval has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def check_eval(target_name, packet_name, item_name, comparison_to_eval, value, scope: $cosmos_scope, token: $cosmos_token)
                  Severity: Minor
                  Found in cosmos/lib/cosmos/script/api_shared.rb - About 35 mins to fix

                    Method wait_check_expression has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        def wait_check_expression(exp_to_eval,
                                                  timeout,
                                                  polling_rate = DEFAULT_TLM_POLLING_RATE,
                                                  context = nil,
                                                  scope: $cosmos_scope, token: $cosmos_token, &block)
                    Severity: Minor
                    Found in cosmos/lib/cosmos/script/api_shared.rb - About 35 mins to fix

                      Method _check_tolerance_process_args has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def _check_tolerance_process_args(args, scope: $cosmos_scope, token: $cosmos_token)
                            case args.length
                            when 3
                              target_name, packet_name, item_name = extract_fields_from_tlm_text(args[0])
                              expected_value = args[1]
                      Severity: Minor
                      Found in cosmos/lib/cosmos/script/api_shared.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

                      Method _wait_check_process_args has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def _wait_check_process_args(args, scope: $cosmos_scope, token: $cosmos_token)
                            case args.length
                            when 2, 3
                              target_name, packet_name, item_name, comparison_to_eval = extract_fields_from_check_text(args[0])
                              timeout = args[1]
                      Severity: Minor
                      Found in cosmos/lib/cosmos/script/api_shared.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

                      Avoid too many return statements within this method.
                      Open

                            return false, value
                      Severity: Major
                      Found in cosmos/lib/cosmos/script/api_shared.rb - About 30 mins to fix

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

                                value.size.times do |i|
                                  range = (expected_value[i] - tolerance[i]..expected_value[i] + tolerance[i])
                                  check_str = "CHECK: #{_upcase(target_name, packet_name, item_name)}[#{i}]"
                                  range_str = "range #{range.first} to #{range.last} with value == #{value[i]} after waiting #{time} seconds"
                                  if range.include?(value[i])
                        Severity: Major
                        Found in cosmos/lib/cosmos/script/api_shared.rb and 1 other location - About 1 hr to fix
                        cosmos/lib/cosmos/script/api_shared.rb on lines 245..252

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

                        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 2 locations. Consider refactoring.
                        Open

                                value.size.times do |i|
                                  range = (expected_value[i] - tolerance[i]..expected_value[i] + tolerance[i])
                                  wait_str = "WAIT: #{_upcase(target_name, packet_name, item_name)}[#{i}]"
                                  range_str = "range #{range.first} to #{range.last} with value == #{value[i]} after waiting #{time} seconds"
                                  if range.include?(value[i])
                        Severity: Major
                        Found in cosmos/lib/cosmos/script/api_shared.rb and 1 other location - About 1 hr to fix
                        cosmos/lib/cosmos/script/api_shared.rb on lines 350..357

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

                        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 2 locations. Consider refactoring.
                        Open

                              case args.length
                              when 1
                                target_name, packet_name, item_name, comparison_to_eval = extract_fields_from_check_text(args[0])
                              when 4
                                target_name        = args[0]
                        Severity: Minor
                        Found in cosmos/lib/cosmos/script/api_shared.rb and 1 other location - About 55 mins to fix
                        cosmos/lib/cosmos/api/tlm_api.rb on lines 437..447

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

                        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 2 locations. Consider refactoring.
                        Open

                              if success
                                Logger.info "#{check_str} success #{with_value_str}"
                              else
                                message = "#{check_str} failed #{with_value_str}"
                                if $disconnect
                        Severity: Minor
                        Found in cosmos/lib/cosmos/script/api_shared.rb and 1 other location - About 15 mins to fix
                        cosmos/lib/cosmos/script/api_shared.rb on lines 376..383

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

                        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 2 locations. Consider refactoring.
                        Open

                                if success
                                  Logger.info "#{check_str} was within #{range_str}"
                                else
                                  message = "#{check_str} failed to be within #{range_str}"
                                  if $disconnect
                        Severity: Minor
                        Found in cosmos/lib/cosmos/script/api_shared.rb and 1 other location - About 15 mins to fix
                        cosmos/lib/cosmos/script/api_shared.rb on lines 310..317

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

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

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

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

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

                        Refactorings

                        Further Reading

                        There are no issues that match your filters.

                        Category
                        Status