saltstack/salt

View on GitHub
salt/states/boto_elbv2.py

Summary

Maintainability
F
5 days
Test Coverage

Function targets_deregistered has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

def targets_deregistered(name, targets, region=None, key=None, keyid=None,
                         profile=None, **kwargs):
    '''
    Remove targets to an Application Load Balancer target group.

Severity: Minor
Found in salt/states/boto_elbv2.py - About 4 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

Function targets_registered has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

def targets_registered(name, targets, region=None, key=None, keyid=None,
                       profile=None, **kwargs):
    '''
    .. versionadded:: 2017.7.0

Severity: Minor
Found in salt/states/boto_elbv2.py - About 4 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

File boto_elbv2.py has 297 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Manage AWS Application Load Balancer

.. versionadded:: 2017.7.0
Severity: Minor
Found in salt/states/boto_elbv2.py - About 3 hrs to fix

    Avoid deeply nested control flow statements.
    Open

                        if state:
                            changes = True
                            ret['result'] = True
                        else:
                            ret['comment'] = 'Target Group {0} failed to remove targets'.format(name)
    Severity: Major
    Found in salt/states/boto_elbv2.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                          if state:
                              changes = True
                              ret['result'] = True
                          else:
                              ret['comment'] = 'Target Group {0} failed to add targets'.format(name)
      Severity: Major
      Found in salt/states/boto_elbv2.py - About 45 mins to fix

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

                if changes:
                    ret['changes']['old'] = health
                    if __opts__['test']:
                        ret['comment'] = 'Target Group {0} would be changed'.format(name)
                        ret['result'] = None
        Severity: Major
        Found in salt/states/boto_elbv2.py and 1 other location - About 1 day to fix
        salt/states/boto_elbv2.py on lines 339..352

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

        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

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

                if changes:
                    ret['changes']['old'] = health
                    if __opts__['test']:
                        ret['comment'] = 'Target Group {0} would be changed'.format(name)
                        ret['result'] = None
        Severity: Major
        Found in salt/states/boto_elbv2.py and 1 other location - About 1 day to fix
        salt/states/boto_elbv2.py on lines 262..275

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

        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 target in health and health.get(target) != "draining":
                        ret['comment'] = ret['comment'] + 'Target/s {0} already registered and is {1}.\n'.format(target, health[target])
                        ret['result'] = True
                    else:
                        if __opts__['test']:
        Severity: Major
        Found in salt/states/boto_elbv2.py and 1 other location - About 5 hrs to fix
        salt/states/boto_elbv2.py on lines 317..336

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

        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 target not in health or health.get(target) == "draining":
                        ret['comment'] = ret['comment'] + 'Target/s {0} already deregistered\n'.format(target)
                        ret['result'] = True
                    else:
                        if __opts__['test']:
        Severity: Major
        Found in salt/states/boto_elbv2.py and 1 other location - About 5 hrs to fix
        salt/states/boto_elbv2.py on lines 240..259

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

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

            if not __salt__['boto_elbv2.target_group_exists'](name, region, key, keyid, profile):
                ret['result'] = True
                ret['comment'] = 'Target Group {0} does not exists'.format(name)
                return ret
        Severity: Major
        Found in salt/states/boto_elbv2.py and 4 other locations - About 1 hr to fix
        salt/states/boto_iam.py on lines 229..232
        salt/states/boto_iam.py on lines 350..353
        salt/states/boto_iam.py on lines 444..447
        salt/states/boto_iam.py on lines 832..835

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

        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