如何在请求规范上执行请求之前设置请求标头?
我正在移动控制器规范以使用Rails在我的API上请求规范.我坚持的一件事是我无法访问请求对象以允许请求.
def sign_in(user) token = user.api_keys.first.token # note the request object being used in the next line request.env["HTTP_AUTHORIZATION"] = ActionController::HttpAuthentication::Token.encode_credentials(token) end
这在控制器规格上工作正常,我可以安全地做到:
before { sign_in(user) } it { post :endpoint,params }
但是在请求规范中,请求对象不可用.
如果我尝试:
before { sign_in(user) } it { post "/api/endpoint",params }
我的帮助方法请求为nil.
我知道我能做到:
it { post "/api/endpoint",{"HTTP_AUTHORIZATION" => ... } }
但这在规范中看起来很混乱,特别是与控制器规格相比.
我已尝试使用this answer建议的ActionDispatch :: TestRequest :: DEFAULT_ENV,但它也没有用(我得到401).
解决方法
如果你还没有使用Rack :: Test那么你应该这样做. Rack :: Test比Capybara更适合测试API请求.它可以在rspec / spec_helper.rb中配置
RSpec.configure do |config| # ... config.include Rack::Test::Methods end
当您配置为使用Rack :: Test时,您可以在请求之前设置标头,如下所示:
it 'POST /api/enpoint authenticates successfully' do header 'Authorization','...' post "/api/endpoint",params expect(last_response).to be_ok end
这可以在您的控制器中作为request.headers [‘HTTP_AUTHORIZATION’]访问.
此方法的源代码可在此处找到 – https://github.com/brynary/rack-test/blob/master/lib/rack/test.rb#L127-L141