lib/fog/aws/requests/storage/delete_object.rb

Summary

Maintainability
C
1 day
Test Coverage
B
80%

Method delete_object has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
Open

        def delete_object(bucket_name, object_name, options = {})
          response = Excon::Response.new
          if bucket = self.data[:buckets][bucket_name]
            response.status = 204

Severity: Minor
Found in lib/fog/aws/requests/storage/delete_object.rb - About 5 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 delete_object has 47 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def delete_object(bucket_name, object_name, options = {})
          response = Excon::Response.new
          if bucket = self.data[:buckets][bucket_name]
            response.status = 204

Severity: Minor
Found in lib/fog/aws/requests/storage/delete_object.rb - About 1 hr to fix

    Avoid deeply nested control flow statements.
    Open

                      response.headers['x-amz-delete-marker'] = 'true' if version[:delete_marker]
    Severity: Major
    Found in lib/fog/aws/requests/storage/delete_object.rb - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                        bucket[:objects].delete(object_name) if bucket[:objects][object_name].empty?
      Severity: Major
      Found in lib/fog/aws/requests/storage/delete_object.rb - About 45 mins to fix

        There are no issues that match your filters.

        Category
        Status