saltstack/salt

View on GitHub

Showing 9,400 of 17,590 total issues

Function _get_request_mode_info has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def _get_request_mode_info(interface):
    '''
    return requestmode for given interface
    '''
    settings = _load_config(interface, ['linklocalenabled', 'dhcpenabled'], -1)
Severity: Minor
Found in salt/modules/nilrt_ip.py - 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

Function status has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def status(name, sig=None):
    '''
    Return the status for a service.
    If the name contains globbing, a dict mapping service name to True/False
    values is returned.
Severity: Minor
Found in salt/modules/rh_service.py - 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

Function _validate_ipv4 has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def _validate_ipv4(value):
    '''
    validate ipv4 values
    '''
    if len(value) == 3:
Severity: Minor
Found in salt/modules/nilrt_ip.py - 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

Function _change_state_legacy has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def _change_state_legacy(interface, new_state):
    '''
    Enable or disable an interface on a legacy distro

    Change adapter mode to TCP/IP. If previous adapter mode was EtherCAT, the target will need reboot.
Severity: Minor
Found in salt/modules/nilrt_ip.py - 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

Function get_config has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def get_config():
    '''
    Get the status of all the firewall profiles

    Returns:
Severity: Minor
Found in salt/modules/win_firewall.py - 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

Function file_dict has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def file_dict(*packages, **kwargs):
    '''
    List the files that belong to a package, grouped by package. Not
    specifying any packages will return a list of _every_ file on the
    system's package database (not generally recommended).
Severity: Minor
Found in salt/modules/freebsdpkg.py - 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

Function _call_salt_command has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def _call_salt_command(self,
                           fun,
                           args,
                           kwargs,
                           assertion_section=None):
Severity: Minor
Found in salt/modules/saltcheck.py - 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

Avoid deeply nested control flow statements.
Open

                        if not salt.utils.platform.is_windows():
                            perm = zfile.getinfo(target).external_attr >> 16
                            if perm == 0:
                                umask_ = salt.utils.files.get_umask()
                                if target.endswith('/'):
Severity: Major
Found in salt/modules/archive.py - About 45 mins to fix

    Function set_main has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    def set_main(key, value, path=MAIN_CF):
        '''
        Set a single config value in the main.cf file. If the value does not already
        exist, it will be appended to the end.
    
    
    Severity: Minor
    Found in salt/modules/postfix.py - 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

    Avoid deeply nested control flow statements.
    Open

                            for dir_name, sub_dirs, files in salt.utils.path.os_walk(src):
                                if cwd and dir_name.startswith(cwd):
                                    arc_dir = os.path.relpath(dir_name, cwd)
                                else:
                                    arc_dir = os.path.relpath(dir_name, rel_root)
    Severity: Major
    Found in salt/modules/archive.py - About 45 mins to fix

      Function run_highstate_tests has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      def run_highstate_tests(saltenv=None):
          '''
          Execute all tests for states assigned to the minion through highstate and return results
      
          CLI Example:
      Severity: Minor
      Found in salt/modules/saltcheck.py - 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

      Avoid deeply nested control flow statements.
      Open

                          if mkey not in interres:
                              interres[mkey] = {}
                          interres[mkey][skey] = interres.pop(key)
      Severity: Major
      Found in salt/modules/bcache.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if stat.S_ISLNK(info.external_attr >> 16):
                                    source = zfile.read(target)
                                    os.symlink(source, os.path.join(dest, target))
                                    continue
                            zfile.extract(target, dest, password)
        Severity: Major
        Found in salt/modules/archive.py - About 45 mins to fix

          Function build_network_settings has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

          def build_network_settings(**settings):
              '''
              Build the global network script.
          
              CLI Example:
          Severity: Minor
          Found in salt/modules/nilrt_ip.py - 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

          Avoid deeply nested control flow statements.
          Open

                              if dep not in ret:
                                  ret.append(dep)
          
          
          Severity: Major
          Found in salt/modules/genesis.py - About 45 mins to fix

            Function update has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def update(name, profile="splunk", **kwargs):
                '''
                Update a splunk search
            
                CLI Example:
            Severity: Minor
            Found in salt/modules/splunk_search.py - 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

            Function _process_priv_part has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def _process_priv_part(perms):
                '''
                Process part
                '''
                _tmp = {}
            Severity: Minor
            Found in salt/modules/postgres.py - 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

            Function _get_object_owner has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def _get_object_owner(name,
                    object_type,
                    prepend='public',
                    maintenance_db=None,
                    user=None,
            Severity: Minor
            Found in salt/modules/postgres.py - 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

            Function _validate_privileges has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def _validate_privileges(object_type, privs, privileges):
                '''
                Validate the supplied privileges
                '''
                if object_type != 'group':
            Severity: Minor
            Found in salt/modules/postgres.py - 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

            Function _validate_default_privileges has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def _validate_default_privileges(object_type, defprivs, defprivileges):
                '''
                Validate the supplied privileges
                '''
                if object_type != 'group':
            Severity: Minor
            Found in salt/modules/postgres.py - 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

            Severity
            Category
            Status
            Source
            Language