ClusterLabs/hawk

View on GitHub

Showing 2,376 of 2,376 total issues

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

  def initialize(id, user, pass, use_file = false, stonithwarning = false)
    Rails.logger.debug "Cib.initialize #{id}, #{user}, #{use_file}"

    if use_file
      cib_path = id
Severity: Minor
Found in hawk/app/models/cib.rb by rubocop

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. [119/6]
Open

  def initialize(id, user, pass, use_file = false, stonithwarning = false)
    Rails.logger.debug "Cib.initialize #{id}, #{user}, #{use_file}"

    if use_file
      cib_path = id
Severity: Minor
Found in hawk/app/models/cib.rb by rubocop

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.

File resources.js has 775 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// Copyright (c) 2009-2015 Tim Serong <tserong@suse.com>
// See COPYING for license.

$(function() {
  function executeAction(context, confirmMsg) {
Severity: Major
Found in hawk/app/assets/javascripts/module/resources.js - About 1 day to fix

    Module has too many lines. [191/100]
    Open

    module Cibtools
    
      # Roughly equivalent to crm_element_value() in Pacemaker
      def get_xml_attr(elem, name, default = nil)
        return nil if elem.nil?
    Severity: Minor
    Found in hawk/app/lib/cibtools.rb by rubocop

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

    Class has too many lines. [369/300]
    Open

    class ReportsController < ApplicationController
      before_action :login_required
      before_action :set_title
      before_action :set_record, only: [:show, :destroy, :download, :cache]
      before_action :set_transition, only: [:display, :detail, :graph, :logs, :diff, :pefile, :status, :cib]

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

    File hawk_test_driver.py has 586 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    #!/usr/bin/python3
    # Copyright (C) 2019 SUSE LLC
    """Define Selenium driver related functions and classes to test the HAWK GUI"""
    
    import ipaddress
    Severity: Major
    Found in e2e_test/hawk_test_driver.py - About 1 day to fix

      Assignment Branch Condition size for instantiate is too high. [82.24/15]
      Open

          def instantiate(xml)
            record = allocate
            record.clazz = xml.attributes["class"] || ""
            record.provider = xml.attributes["provider"] || ""
            record.type = xml.attributes["type"] || ""
      Severity: Minor
      Found in hawk/app/models/template.rb by rubocop

      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

      File statustable.js has 544 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      // Copyright (c) 2015-2016 Kristoffer Gronlund <kgronlund@suse.com>
      // Copyright (c) 2016 Ayoub Belarbi <abelarbi@suse.com>
      // See COPYING for license.
      
      // This module is a table-based visualization for cluster status (Using JsRender). To use this module:
      Severity: Major
      Found in hawk/app/assets/javascripts/module/statustable.js - About 1 day to fix

        Module has too many lines. [109/100]
        Open

        module PrimitiveHelper
          def primitive_template_options(selected)
            options = ::Template.ordered.map do |template|
              [
                template.id,

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

        Assignment Branch Condition size for get_resource is too high. [75.49/15]
        Open

          def get_resource(elem, is_managed = true, maintenance = false, clone_max = nil, is_ms = false)
            res = {
              id: elem.attributes['id'],
              object_type: elem.name,
              attributes: {},
        Severity: Minor
        Found in hawk/app/models/cib.rb by rubocop

        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

        File reports.js has 526 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        // Copyright (c) 2009-2015 Tim Serong <tserong@suse.com>
        // See COPYING for license.
        
        $(function() {
          var time_format_string = 'YYYY-MM-DD HH:mm:ss ZZ';
        Severity: Major
        Found in hawk/app/assets/javascripts/module/reports.js - About 1 day to fix

          Assignment Branch Condition size for instantiate is too high. [72.39/15]
          Open

              def instantiate(xml, state)
                record = allocate
                record.id = state[:id]
                record.xml = xml
                record.name = state[:name]
          Severity: Minor
          Found in hawk/app/models/node.rb by rubocop

          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

          Function init has 204 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            OpList.prototype.init = function() {
              var self = this;
          
              var content = {
                labels: self.options.labels,
          Severity: Major
          Found in hawk/app/assets/javascripts/module/oplist.js - About 1 day to fix

            Assignment Branch Condition size for edit is too high. [70.04/15]
            Open

              def edit
                if request.post?
                  fencing = params[:fencing]
                  fencing = fencing["fencing"] if fencing.is_a? Hash
                  fencing = [] if fencing.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

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

                  $.ajax({
                    dataType: 'json',
                    method: 'GET',
                    url: route,
                    success: function(data) {
            Severity: Major
            Found in hawk/app/assets/javascripts/module/basics.js and 1 other location - About 7 hrs to fix
            hawk/app/assets/javascripts/module/resources.js on lines 64..94

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

            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

                  $.ajax({
                    dataType: 'json',
                    method: 'GET',
                    url: url,
                    success: function(data) {
            Severity: Major
            Found in hawk/app/assets/javascripts/module/resources.js and 1 other location - About 7 hrs to fix
            hawk/app/assets/javascripts/module/basics.js on lines 224..242

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

            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

            Assignment Branch Condition size for run is too high. [66.02/15]
            Open

              def run
                if current_cib.id == "live"
                  head :bad_request
                  return
                end

            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

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

              $('#nodes #middle table.nodes, #cib #middle table.nodes, #configs #middle table.nodes').on("click", ".dropdown-toggle", function(event){
                var button = $(this);
                var open = button.attr('aria-expanded');
                var dropdown = button.siblings('.dropdown-menu');
                if (open) {
            Severity: Major
            Found in hawk/app/assets/javascripts/module/nodes.js and 1 other location - About 7 hrs to fix
            hawk/app/assets/javascripts/module/resources.js on lines 768..777

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

            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

              $('#cib #middle table.resources, #cib #middle table.tagtable, #cib #middle .tag-controls').on("click", ".dropdown-toggle", function(event){
                var button = $(this);
                var open = button.attr('aria-expanded');
                var dropdown = button.siblings('.dropdown-menu');
                if (open) {
            Severity: Major
            Found in hawk/app/assets/javascripts/module/resources.js and 1 other location - About 7 hrs to fix
            hawk/app/assets/javascripts/module/nodes.js on lines 372..381

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

            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

            Assignment Branch Condition size for update_resource_state is too high. [65.3/15]
            Open

              def update_resource_state(resource, node, instance, state, substate, failed_ops)
                # m/s slave state hack (*sigh*)
                state = :slave if resource[:is_ms] && state == :started
                instances = resource[:instances]
            
            
            Severity: Minor
            Found in hawk/app/models/cib.rb by rubocop

            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

            Severity
            Category
            Status
            Source
            Language