ashrithr/awscli

View on GitHub
lib/awscli/ec2.rb

Summary

Maintainability
F
4 days
Test Coverage

File ec2.rb has 781 lines of code (exceeds 250 allowed). Consider refactoring.
Open

module Awscli
  module EC2
    require 'pp'

    class EC2
Severity: Major
Found in lib/awscli/ec2.rb - About 1 day to fix

    Method create_instance has a Cognitive Complexity of 48 (exceeds 5 allowed). Consider refactoring.
    Open

          def create_instance(options)
            #validate required options
            puts 'Validating Options ...'
            abort "Invalid Key: #{options[:key_name]}" unless @conn.key_pairs.get(options[:key_name])
            options[:groups].each do |sg|
    Severity: Minor
    Found in lib/awscli/ec2.rb - 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

    Method create_instance has 66 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def create_instance(options)
            #validate required options
            puts 'Validating Options ...'
            abort "Invalid Key: #{options[:key_name]}" unless @conn.key_pairs.get(options[:key_name])
            options[:groups].each do |sg|
    Severity: Major
    Found in lib/awscli/ec2.rb - About 2 hrs to fix

      Method terminate_instances has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

            def terminate_instances(delete_attached_volumes = false)
              block_mappings = []
              if agree('Are you sure want to delete all the servers that are running ?  ')
                @conn.servers.all.each do |server|
                  server.destroy if server.state == 'running' || server.state == 'stopped'
      Severity: Minor
      Found in lib/awscli/ec2.rb - About 2 hrs to fix

      Cognitive Complexity

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

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

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

      Further reading

      Method show_filters has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            def show_filters
              filters =
                [
                  {:filter_name => "architecture", :desc => "Image Architecture"},
                  {:filter_name => "block-device-mapping.delete-on-termination", :desc => "Whether the Amazon EBS volume is deleted on instance termination"},
      Severity: Minor
      Found in lib/awscli/ec2.rb - About 1 hr to fix

        Method import_keypair has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

              def import_keypair(options)
                #validate if the file exists
                private_key_path = if options[:private_key_path]
                                    File.expand_path(options[:private_key_path])
                                   else
        Severity: Minor
        Found in lib/awscli/ec2.rb - 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

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

              def authorize_securitygroup(options)
                # => Ingress regular traffic -> this action applies to both EC2 and VPC Security Groups
                    # Each rule consists of the protocol, plus cidr range or a source group,
                      #for TCP/UDP protocols you must also specify the dest port or port range
                      #for ICMP, you must specify the icmp type and code (-1 means all types/codes)
        Severity: Minor
        Found in lib/awscli/ec2.rb - About 35 mins to fix

        Cognitive Complexity

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

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

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

        Further reading

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

              def associate(options)
                abort "Invalid IP Format" unless options[:eip] =~ /^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/
                eip = @conn.addresses.get(options[:eip])
                abort "Cannot find eip: #{options[:eip]}" unless eip
                server = @conn.servers.get(options[:instance_id])
        Severity: Minor
        Found in lib/awscli/ec2.rb - About 35 mins to fix

        Cognitive Complexity

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

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

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

        Further reading

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

                if options[:block_device_mapping]
                  options[:block_device_mapping].each do |group|
                    mapping = Hash.new
                    #parse options
                    abort "Invalid block device mapping format, expecting 'devicename=blockdevice' format" unless group =~ /\S=\S/
        Severity: Major
        Found in lib/awscli/ec2.rb and 1 other location - About 3 hrs to fix
        lib/awscli/as.rb on lines 35..57

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

        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

            class Vpc
              def initialize(connection)
                @conn = connection
              end
        
        
        Severity: Minor
        Found in lib/awscli/ec2.rb and 1 other location - About 45 mins to fix
        lib/awscli/ec2.rb on lines 765..783

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

        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

            class Subnet
              def initialize(connection)
                @conn = connection
              end
        
        
        Severity: Minor
        Found in lib/awscli/ec2.rb and 1 other location - About 45 mins to fix
        lib/awscli/ec2.rb on lines 743..761

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

        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 unmonitor(options)
                options[:instance_ids].each do |instance|
                  abort "Invalid InstanceId: #{instance}" unless @conn.servers.get(instance)
                end
                @conn.unmonitor_instances(options[:instance_ids])
        Severity: Minor
        Found in lib/awscli/ec2.rb and 1 other location - About 25 mins to fix
        lib/awscli/ec2.rb on lines 585..590

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

        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 monitor(options)
                options[:instance_ids].each do |instance|
                  abort "Invalid InstanceId: #{instance}" unless @conn.servers.get(instance)
                end
                @conn.monitor_instances(options[:instance_ids])
        Severity: Minor
        Found in lib/awscli/ec2.rb and 1 other location - About 25 mins to fix
        lib/awscli/ec2.rb on lines 593..598

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

        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 start_instance(instance_id)
                response = @conn.servers.get(instance_id)
                abort "InstanceId Not found :#{instance_id}" unless response
                abort 'Instance should be stopped to start it' if response.state != 'stopped'
                response.start
        Severity: Minor
        Found in lib/awscli/ec2.rb and 1 other location - About 15 mins to fix
        lib/awscli/ec2.rb on lines 180..185

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 26.

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

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

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

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

        Refactorings

        Further Reading

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

              def stop_instance(instance_id)
                response = @conn.servers.get(instance_id)
                abort "InstanceId Not found :#{instance_id}" unless response
                abort 'Instance should be in running to stop it' if response.state != 'running'
                response.stop
        Severity: Minor
        Found in lib/awscli/ec2.rb and 1 other location - About 15 mins to fix
        lib/awscli/ec2.rb on lines 189..194

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 26.

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

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

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

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

        Refactorings

        Further Reading

        There are no issues that match your filters.

        Category
        Status