I'm using rspec to write test for my application. In order to authorization I'm sending token in header:
request.headers['token'] = '000000099'
get :index
In controller side I can read this value by request.env["HTTP_TOKEN"] but env["HTTP_TOKEN"] is empty.
What is the difference between them and how can I set env instead of request.env?
request.env is a ruby hash that contains information about a visiting user’s and server environments. request.env is the standard object that's being used in Rails app to extract important information such as path_info, request_uri etc.
env is empty for your test because rspec-rails bypasses the ActionController::Metal dispatch method.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With