lib/fog/aws/lambda.rb

Summary

Maintainability
A
3 hrs
Test Coverage
F
50%

Method request has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def request(params)
          refresh_credentials_if_expired

          idempotent   = params.delete(:idempotent)
          parser       = params.delete(:parser)
Severity: Minor
Found in lib/fog/aws/lambda.rb - About 1 hr to fix

    Method _request has 8 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            def _request(method, path, query, body, headers, expects, idempotent, parser=nil)
    Severity: Major
    Found in lib/fog/aws/lambda.rb - About 1 hr to fix

      Method process_response has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

              def process_response(response, parser)
                if response &&
                   response.body &&
                   response.body.is_a?(String) &&
                   !response.body.strip.empty? &&
      Severity: Minor
      Found in lib/fog/aws/lambda.rb - 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 20 locations. Consider refactoring.
      Open

              def setup_credentials(options)
                @aws_access_key_id         = options[:aws_access_key_id]
                @aws_secret_access_key     = options[:aws_secret_access_key]
                @aws_session_token         = options[:aws_session_token]
                @aws_credentials_expire_at = options[:aws_credentials_expire_at]
      Severity: Major
      Found in lib/fog/aws/lambda.rb and 19 other locations - About 20 mins to fix
      lib/fog/aws/auto_scaling.rb on lines 175..181
      lib/fog/aws/beanstalk.rb on lines 94..100
      lib/fog/aws/cloud_formation.rb on lines 85..91
      lib/fog/aws/cloud_watch.rb on lines 113..119
      lib/fog/aws/compute.rb on lines 588..594
      lib/fog/aws/data_pipeline.rb on lines 130..136
      lib/fog/aws/dynamodb.rb on lines 95..101
      lib/fog/aws/ecs.rb on lines 82..88
      lib/fog/aws/efs.rb on lines 95..103
      lib/fog/aws/elasticache.rb on lines 79..85
      lib/fog/aws/emr.rb on lines 85..91
      lib/fog/aws/glacier.rb on lines 199..205
      lib/fog/aws/iam.rb on lines 285..293
      lib/fog/aws/kinesis.rb on lines 59..65
      lib/fog/aws/rds.rb on lines 241..247
      lib/fog/aws/redshift.rb on lines 93..99
      lib/fog/aws/sns.rb on lines 108..114
      lib/fog/aws/sqs.rb on lines 101..107
      lib/fog/aws/support.rb on lines 110..118

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

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

              def self.data
                @data ||= Hash.new do |hash, region|
                  hash[region] = Hash.new do |region_hash, key|
                    region_hash[key] = {
                      :functions             => {},
      Severity: Minor
      Found in lib/fog/aws/lambda.rb and 2 other locations - About 20 mins to fix
      lib/fog/aws/efs.rb on lines 34..44
      lib/fog/aws/sns.rb on lines 29..39

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

      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 initialize(options={})
                @region            = options[:region] || 'us-east-1'
                @aws_access_key_id = options[:aws_access_key_id]
                @account_id        = Fog::AWS::Mock.owner_id
                @module            = "lambda"
      Severity: Minor
      Found in lib/fog/aws/lambda.rb and 1 other location - About 15 mins to fix
      lib/fog/aws/sns.rb on lines 44..50

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

      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