saltstack/salt

View on GitHub
salt/cloud/clouds/azurearm.py

Summary

Maintainability
F
2 wks
Test Coverage

File azurearm.py has 1781 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Azure ARM Cloud Module
======================

Severity: Major
Found in salt/cloud/clouds/azurearm.py - About 4 days to fix

    Function request_instance has a Cognitive Complexity of 93 (exceeds 5 allowed). Consider refactoring.
    Open

    def request_instance(vm_):
        '''
        Request a VM from Azure.
        '''
        compconn = get_conn(client_type='compute')
    Severity: Minor
    Found in salt/cloud/clouds/azurearm.py - About 1 day 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

    Cyclomatic complexity is too high in function request_instance. (63)
    Open

    def request_instance(vm_):
        '''
        Request a VM from Azure.
        '''
        compconn = get_conn(client_type='compute')
    Severity: Minor
    Found in salt/cloud/clouds/azurearm.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function create_network_interface has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring.
    Open

    def create_network_interface(call=None, kwargs=None):
        '''
        Create a network interface.
        '''
        if call != 'action':
    Severity: Minor
    Found in salt/cloud/clouds/azurearm.py - 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

    Function get_configured_provider has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_configured_provider():
        '''
        Return the first configured provider instance.
        '''
        def __is_provider_configured(opts, provider, required_keys=()):
    Severity: Minor
    Found in salt/cloud/clouds/azurearm.py - About 6 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 destroy has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

    def destroy(name, call=None, kwargs=None):  # pylint: disable=unused-argument
        '''
        Destroy a VM.
    
        CLI Examples:
    Severity: Minor
    Found in salt/cloud/clouds/azurearm.py - 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

    Cyclomatic complexity is too high in function create_network_interface. (26)
    Open

    def create_network_interface(call=None, kwargs=None):
        '''
        Create a network interface.
        '''
        if call != 'action':
    Severity: Minor
    Found in salt/cloud/clouds/azurearm.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function request_instance has 57 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    def request_instance(vm_):
        '''
        Request a VM from Azure.
        '''
        compconn = get_conn(client_type='compute')
    Severity: Major
    Found in salt/cloud/clouds/azurearm.py - About 2 hrs to fix

      Function start has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

      def start(name, call=None):
          '''
          .. versionadded:: 2019.2.0
      
          Start a VM
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - 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

      Function stop has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

      def stop(name, call=None):
          '''
          .. versionadded:: 2019.2.0
      
          Stop (deallocate) a VM
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - 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

      Function create has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

      def create(vm_):
          '''
          Create a single VM from a data dict.
          '''
          try:
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - 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

      Function avail_images has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

      def avail_images(call=None):
          '''
          Return a dict of all available images on the provider
          '''
          if call == 'action':
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - 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

      Function list_nodes_full has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      def list_nodes_full(call=None):
          '''
          List all VMs on the subscription with full information
          '''
          if call == 'action':
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - 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

      Function list_subnets has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      def list_subnets(call=None, kwargs=None):
          '''
          List subnets in a virtual network.
          '''
          if kwargs is None:
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - 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

      Function create_network_interface has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      def create_network_interface(call=None, kwargs=None):
          '''
          Create a network interface.
          '''
          if call != 'action':
      Severity: Minor
      Found in salt/cloud/clouds/azurearm.py - About 1 hr to fix

        Function create_or_update_vmextension has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        def create_or_update_vmextension(call=None, kwargs=None):  # pylint: disable=unused-argument
            '''
            .. versionadded:: 2019.2.0
        
            Create or update a VM extension object "inside" of a VM object.
        Severity: Minor
        Found in salt/cloud/clouds/azurearm.py - About 55 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_api_versions has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def get_api_versions(call=None, kwargs=None):  # pylint: disable=unused-argument
            '''
            Get a resource type api versions
            '''
            if kwargs is None:
        Severity: Minor
        Found in salt/cloud/clouds/azurearm.py - 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

        Function list_virtual_networks has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        def list_virtual_networks(call=None, kwargs=None):
            '''
            List virtual networks.
            '''
            if kwargs is None:
        Severity: Minor
        Found in salt/cloud/clouds/azurearm.py - 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 function.
        Open

                        return provider_details
        Severity: Major
        Found in salt/cloud/clouds/azurearm.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return False
          Severity: Major
          Found in salt/cloud/clouds/azurearm.py - About 30 mins to fix

            Function avail_locations has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            def avail_locations(call=None):
                '''
                Return a dict of all available regions.
                '''
                if call == 'action':
            Severity: Minor
            Found in salt/cloud/clouds/azurearm.py - About 25 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

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

            def start(name, call=None):
                '''
                .. versionadded:: 2019.2.0
            
                Start a VM
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 2 days to fix
            salt/cloud/clouds/azurearm.py on lines 2003..2061

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

            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

            def stop(name, call=None):
                '''
                .. versionadded:: 2019.2.0
            
                Stop (deallocate) a VM
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 2 days to fix
            salt/cloud/clouds/azurearm.py on lines 2064..2122

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

            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 '|' in vm_['image']:
                        img_pub, img_off, img_sku, img_ver = vm_['image'].split('|')
                        img_ref = ImageReference(
                            publisher=img_pub,
                            offer=img_off,
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 5 hrs to fix
            salt/cloud/clouds/azurearm.py on lines 1199..1208

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

            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 '|' in vm_['image']:
                            img_pub, img_off, img_sku, img_ver = vm_['image'].split('|')
                            img_ref = ImageReference(
                                publisher=img_pub,
                                offer=img_off,
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 5 hrs to fix
            salt/cloud/clouds/azurearm.py on lines 1235..1244

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

            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 datavhd.startswith('http'):
                                ret[name]['data'] = delete_blob(
                                    kwargs={'container': container, 'blob': blob},
                                    call='function'
                                )
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 4 hrs to fix
            salt/cloud/clouds/azurearm.py on lines 1569..1578

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

            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 vhd.startswith('http'):
                            ret[name]['data'] = delete_blob(
                                kwargs={'container': container, 'blob': blob},
                                call='function'
                            )
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 4 hrs to fix
            salt/cloud/clouds/azurearm.py on lines 1610..1619

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

            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

                for node in nodes:
                    ret[node] = {'name': node}
                    for prop in ('id', 'image', 'size', 'state', 'private_ips', 'public_ips'):
                        ret[node][prop] = nodes[node].get(prop)
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 1 other location - About 3 hrs to fix
            salt/cloud/clouds/msazure.py on lines 227..230

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

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

                __utils__['cloud.fire_event'](
                    'event',
                    'created instance',
                    'salt/cloud/{0}/created'.format(vm_['name']),
                    args=__utils__['cloud.filter_event'](
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 37 other locations - About 2 hrs to fix
            salt/cloud/clouds/aliyun.py on lines 625..631
            salt/cloud/clouds/aliyun.py on lines 732..738
            salt/cloud/clouds/azurearm.py on lines 1349..1359
            salt/cloud/clouds/azurearm.py on lines 1398..1406
            salt/cloud/clouds/digitalocean.py on lines 287..293
            salt/cloud/clouds/digitalocean.py on lines 537..543
            salt/cloud/clouds/dimensiondata.py on lines 207..213
            salt/cloud/clouds/dimensiondata.py on lines 337..343
            salt/cloud/clouds/ec2.py on lines 2579..2585
            salt/cloud/clouds/gce.py on lines 2461..2467
            salt/cloud/clouds/gce.py on lines 2551..2557
            salt/cloud/clouds/gce.py on lines 2635..2641
            salt/cloud/clouds/gogrid.py on lines 96..102
            salt/cloud/clouds/gogrid.py on lines 180..186
            salt/cloud/clouds/joyent.py on lines 274..280
            salt/cloud/clouds/joyent.py on lines 325..331
            salt/cloud/clouds/lxc.py on lines 440..446
            salt/cloud/clouds/lxc.py on lines 460..466
            salt/cloud/clouds/lxc.py on lines 488..494
            salt/cloud/clouds/msazure.py on lines 429..435
            salt/cloud/clouds/msazure.py on lines 683..689
            salt/cloud/clouds/nova.py on lines 961..967
            salt/cloud/clouds/opennebula.py on lines 1006..1012
            salt/cloud/clouds/openstack.py on lines 684..690
            salt/cloud/clouds/packet.py on lines 347..353
            salt/cloud/clouds/parallels.py on lines 287..293
            salt/cloud/clouds/parallels.py on lines 356..362
            salt/cloud/clouds/proxmox.py on lines 578..585
            salt/cloud/clouds/qingcloud.py on lines 668..674
            salt/cloud/clouds/qingcloud.py on lines 738..744
            salt/cloud/clouds/scaleway.py on lines 200..206
            salt/cloud/clouds/scaleway.py on lines 304..310
            salt/cloud/clouds/virtualbox.py on lines 176..182
            salt/cloud/clouds/vmware.py on lines 2543..2549
            salt/cloud/clouds/vmware.py on lines 3072..3078
            salt/cloud/clouds/vultrpy.py on lines 292..298
            salt/cloud/clouds/vultrpy.py on lines 465..471

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

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

                __utils__['cloud.fire_event'](
                    'event',
                    'requesting instance',
                    'salt/cloud/{0}/requesting'.format(vm_['name']),
                    args=__utils__['cloud.filter_event'](
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 37 other locations - About 2 hrs to fix
            salt/cloud/clouds/aliyun.py on lines 625..631
            salt/cloud/clouds/aliyun.py on lines 732..738
            salt/cloud/clouds/azurearm.py on lines 1398..1406
            salt/cloud/clouds/azurearm.py on lines 1480..1489
            salt/cloud/clouds/digitalocean.py on lines 287..293
            salt/cloud/clouds/digitalocean.py on lines 537..543
            salt/cloud/clouds/dimensiondata.py on lines 207..213
            salt/cloud/clouds/dimensiondata.py on lines 337..343
            salt/cloud/clouds/ec2.py on lines 2579..2585
            salt/cloud/clouds/gce.py on lines 2461..2467
            salt/cloud/clouds/gce.py on lines 2551..2557
            salt/cloud/clouds/gce.py on lines 2635..2641
            salt/cloud/clouds/gogrid.py on lines 96..102
            salt/cloud/clouds/gogrid.py on lines 180..186
            salt/cloud/clouds/joyent.py on lines 274..280
            salt/cloud/clouds/joyent.py on lines 325..331
            salt/cloud/clouds/lxc.py on lines 440..446
            salt/cloud/clouds/lxc.py on lines 460..466
            salt/cloud/clouds/lxc.py on lines 488..494
            salt/cloud/clouds/msazure.py on lines 429..435
            salt/cloud/clouds/msazure.py on lines 683..689
            salt/cloud/clouds/nova.py on lines 961..967
            salt/cloud/clouds/opennebula.py on lines 1006..1012
            salt/cloud/clouds/openstack.py on lines 684..690
            salt/cloud/clouds/packet.py on lines 347..353
            salt/cloud/clouds/parallels.py on lines 287..293
            salt/cloud/clouds/parallels.py on lines 356..362
            salt/cloud/clouds/proxmox.py on lines 578..585
            salt/cloud/clouds/qingcloud.py on lines 668..674
            salt/cloud/clouds/qingcloud.py on lines 738..744
            salt/cloud/clouds/scaleway.py on lines 200..206
            salt/cloud/clouds/scaleway.py on lines 304..310
            salt/cloud/clouds/virtualbox.py on lines 176..182
            salt/cloud/clouds/vmware.py on lines 2543..2549
            salt/cloud/clouds/vmware.py on lines 3072..3078
            salt/cloud/clouds/vultrpy.py on lines 292..298
            salt/cloud/clouds/vultrpy.py on lines 465..471

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

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

                __utils__['cloud.fire_event'](
                    'event',
                    'starting create',
                    'salt/cloud/{0}/creating'.format(vm_['name']),
                    args=__utils__['cloud.filter_event'](
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 37 other locations - About 2 hrs to fix
            salt/cloud/clouds/aliyun.py on lines 625..631
            salt/cloud/clouds/aliyun.py on lines 732..738
            salt/cloud/clouds/azurearm.py on lines 1349..1359
            salt/cloud/clouds/azurearm.py on lines 1480..1489
            salt/cloud/clouds/digitalocean.py on lines 287..293
            salt/cloud/clouds/digitalocean.py on lines 537..543
            salt/cloud/clouds/dimensiondata.py on lines 207..213
            salt/cloud/clouds/dimensiondata.py on lines 337..343
            salt/cloud/clouds/ec2.py on lines 2579..2585
            salt/cloud/clouds/gce.py on lines 2461..2467
            salt/cloud/clouds/gce.py on lines 2551..2557
            salt/cloud/clouds/gce.py on lines 2635..2641
            salt/cloud/clouds/gogrid.py on lines 96..102
            salt/cloud/clouds/gogrid.py on lines 180..186
            salt/cloud/clouds/joyent.py on lines 274..280
            salt/cloud/clouds/joyent.py on lines 325..331
            salt/cloud/clouds/lxc.py on lines 440..446
            salt/cloud/clouds/lxc.py on lines 460..466
            salt/cloud/clouds/lxc.py on lines 488..494
            salt/cloud/clouds/msazure.py on lines 429..435
            salt/cloud/clouds/msazure.py on lines 683..689
            salt/cloud/clouds/nova.py on lines 961..967
            salt/cloud/clouds/opennebula.py on lines 1006..1012
            salt/cloud/clouds/openstack.py on lines 684..690
            salt/cloud/clouds/packet.py on lines 347..353
            salt/cloud/clouds/parallels.py on lines 287..293
            salt/cloud/clouds/parallels.py on lines 356..362
            salt/cloud/clouds/proxmox.py on lines 578..585
            salt/cloud/clouds/qingcloud.py on lines 668..674
            salt/cloud/clouds/qingcloud.py on lines 738..744
            salt/cloud/clouds/scaleway.py on lines 200..206
            salt/cloud/clouds/scaleway.py on lines 304..310
            salt/cloud/clouds/virtualbox.py on lines 176..182
            salt/cloud/clouds/vmware.py on lines 2543..2549
            salt/cloud/clouds/vmware.py on lines 3072..3078
            salt/cloud/clouds/vultrpy.py on lines 292..298
            salt/cloud/clouds/vultrpy.py on lines 465..471

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

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

                try:
                    if vm_['profile'] and config.is_profile_configured(
                        __opts__,
                        __active_provider_name__ or 'azurearm',
                        vm_['profile'],
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 17 other locations - About 1 hr to fix
            salt/cloud/clouds/aliyun.py on lines 615..622
            salt/cloud/clouds/cloudstack.py on lines 270..277
            salt/cloud/clouds/digitalocean.py on lines 277..284
            salt/cloud/clouds/ec2.py on lines 2554..2561
            salt/cloud/clouds/gce.py on lines 2451..2458
            salt/cloud/clouds/gogrid.py on lines 86..93
            salt/cloud/clouds/joyent.py on lines 260..267
            salt/cloud/clouds/linode.py on lines 328..335
            salt/cloud/clouds/msazure.py on lines 419..426
            salt/cloud/clouds/nova.py on lines 938..945
            salt/cloud/clouds/parallels.py on lines 277..284
            salt/cloud/clouds/proxmox.py on lines 566..573
            salt/cloud/clouds/qingcloud.py on lines 658..665
            salt/cloud/clouds/scaleway.py on lines 190..197
            salt/cloud/clouds/softlayer.py on lines 248..255
            salt/cloud/clouds/softlayer_hw.py on lines 216..223
            salt/cloud/clouds/vmware.py on lines 2532..2540

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

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

                if __opts__.get('update_cachedir', False) is True:
                    __utils__['cloud.delete_minion_cachedir'](
                       name,
                       __active_provider_name__.split(':')[0],
                       __opts__
            Severity: Major
            Found in salt/cloud/clouds/azurearm.py and 22 other locations - About 50 mins to fix
            salt/cloud/clouds/digitalocean.py on lines 868..869
            salt/cloud/clouds/ec2.py on lines 3417..3418
            salt/cloud/clouds/gce.py on lines 2377..2378
            salt/cloud/clouds/gogrid.py on lines 421..422
            salt/cloud/clouds/joyent.py on lines 429..430
            salt/cloud/clouds/linode.py on lines 758..759
            salt/cloud/clouds/lxc.py on lines 415..416
            salt/cloud/clouds/msazure.py on lines 947..948
            salt/cloud/clouds/nova.py on lines 569..570
            salt/cloud/clouds/oneandone.py on lines 918..922
            salt/cloud/clouds/opennebula.py on lines 1226..1230
            salt/cloud/clouds/openstack.py on lines 816..817
            salt/cloud/clouds/parallels.py on lines 561..562
            salt/cloud/clouds/profitbricks.py on lines 1023..1027
            salt/cloud/clouds/proxmox.py on lines 1194..1196
            salt/cloud/clouds/scaleway.py on lines 456..458
            salt/cloud/clouds/softlayer.py on lines 637..638
            salt/cloud/clouds/softlayer_hw.py on lines 547..548
            salt/cloud/clouds/vagrant.py on lines 308..310
            salt/cloud/clouds/vmware.py on lines 2513..2514
            salt/cloud/clouds/xen.py on lines 1046..1050
            salt/cloud/libcloudfuncs.py on lines 403..404

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

            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