Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failing test: Logging headers & errors fails when ConnectionFailed is raised #1512

Merged
merged 3 commits into from Jun 28, 2023

Conversation

eikes
Copy link
Contributor

@eikes eikes commented Jun 28, 2023

Description

I was not able to use faraday logging with the logging options headers: true, errors: true when the connection can not be estabilshed and a Faraday::ConnectionFailed error should be raised, because it raised a different error instead: NoMethodError: undefined method map' for nil:NilClass`

Here is the stacktrace:

         # ./lib/faraday/logging/formatter.rb:59:in `dump_headers'
         # ./lib/faraday/logging/formatter.rb:112:in `block in log_headers'
         # ./lib/faraday/logging/formatter.rb:113:in `public_send'
         # ./lib/faraday/logging/formatter.rb:113:in `log_headers'
         # ./lib/faraday/logging/formatter.rb:46:in `exception'
         # ./lib/faraday/response/logger.rb:31:in `on_error'
         # ./lib/faraday/middleware.rb:21:in `rescue in call'
         # ./lib/faraday/middleware.rb:15:in `call'
         # ./lib/faraday/response/logger.rb:23:in `call'
         # ./lib/faraday/rack_builder.rb:153:in `build_response'
         # ./lib/faraday/connection.rb:444:in `run_request'
         # ./lib/faraday/connection.rb:200:in `get'

The reason this happens is that the Faraday::Logging::Formatter#exception method tries to log the headers of the exception, but there aren't any. #log_headers is still called though, because exc.respond_to?(:response_headers) && log_headers?(:error) is true, as the Faraday::Error class implements the #response_headers method. Again, the @response of the exc instance is nil, so when the dump_headers method is finally called, it is called with nil. And there it fails because it can't call map on nil.

There are various ways to solve this, but the simplest would be to check for nil in the dump_headers method:

      def dump_headers(headers)
        return if headers.nil?
        # or:
        return unless headers.respond_to?(:map)
        headers.map { |k, v| "#{k}: #{v.inspect}" }.join("\n")
      end

You could also catch this in the exception method, but I think catching it in the dump_headers method is more robust:

      def exception(exc)
       #...
        log_headers('error', exc.response_headers) if exc.respond_to?(:response_headers) && !exc.response_headers.nil? && log_headers?(:error)
       #...
      end

@iMacTia
Copy link
Member

iMacTia commented Jun 28, 2023

Thank you for opening this @eikes, I love that you provided a failing test to demonstrate the issue.
I'm trying to understand if this is somehow related to this recent change, but I'm not sure there's any connection at this point.

My preference would also be to add a return if headers.nil? guard to the dump_headers method 👍

@eikes
Copy link
Contributor Author

eikes commented Jun 28, 2023

@iMacTia Thank you for the kind and immediate feedback! I made the change and the test is now passing... 😄

Copy link
Member

@iMacTia iMacTia left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you again @eikes, it's a pleasure to review well-thought PRs like this ❤️

@iMacTia iMacTia merged commit 990799a into lostisland:main Jun 28, 2023
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants