如何将auth令牌添加到每个http RSpec测试头

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将auth令牌添加到每个http RSpec测试头相关的知识,希望对你有一定的参考价值。

我在尝试验证请求规范时遇到问题。如何在每个http请求的标头中传递有效的身份验证令牌?我的方法是否正确?

tweets_request_spec.rb

require 'rails_helper'

RSpec.describe 'Tweets API', type: :request do
  before do
    @tweets = create_list(:tweet, 10)
    @tweet = @tweets.first
  end

  describe 'GET /tweets' do
    before { get '/tweets', { "Authorization": *some sort of token*} }

    it "returns tweets" do
      expect(json).to_not be_empty
      expect(json).to eq(10)
    end

    it "is a successful http request" do
      expect(response).to have_http_response(200)
    end
  end
end

这是我的身份验证控制器代码,以及帮助生成和解码在http标头中传递的身份验证令牌的模块。

authentication_controller.rb

class AuthenticationController < ApplicationController
  skip_before_action :authenticate_request

  def authenticate
    command = AuthenticateUser.call(params[:email], params[:password])

    if command.success?
      render json: { auth_token: command.result }
    else
      render json: { error: command.errors }, status: :authorized
    end
  end
end

authorize_api_request.rb

class AuthorizeApiRequest
  prepend SimpleCommand

  def initialize(headers = {})
    @headers = headers
  end

  def call
    user
  end

  private

  attr_reader :headers

  def user
    @user ||= User.find(decoded_auth_token[:user_id]) if decoded_auth_token
    @user ||= errors.add(:token, 'Invalid token') && nil
  end

  #decode the auth token and retrieve the user id
  def decoded_auth_token
    @decoded_auth_token ||= JSONWebToken.decode(http_auth_header)
  end

  #retrieve auth token from header
  def http_auth_header
    if headers['Authorization'].present? 
      return headers['Authorization'].split(' ').last
    else
      errors.add(:token, 'Missing token')
    end
  end
end
答案

the official pluralsight page复制的一些代码提取

要进行身份验证的端点位于config/routes.rb

post 'authenticate', to: 'authentication#authenticate'

执行此操作。如果您正确进行身份验证,操作将返回令牌。

def authenticate 
   command = AuthenticateUser.call(params[:email], params[:password]) 
   if command.success? 
      render json: { auth_token: command.result } 
   else 
      render json: { error: command.errors }, status: :unauthorized 
   end 
end

在rspec中,您有两个选项,您可以模拟此方法或创建工厂。

token based身份验证的概念是,一旦通过身份验证,用户将拥有一个令牌,并且通过提供此令牌,他将能够访问仅保留给用户的功能

请求

$ curl -H "Content-Type: application/json" -X POST -d '{"email":"example@mail.com","password":"123123123"}' http://localhost:3000/authenticate

作为回应令牌

{"auth_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJleHAiOjE0NjA2NTgxODZ9.xsSwcPC22IR71OBv6bU_OGCSyfE89DvEzWfDU0iybMA"}

如果您在标头中包含令牌,请求将不会触发授权错误

$ curl -H "Authorization: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJleHAiOjE0NjA2NTgxODZ9.xsSwcPC22IR71OBv6bU_OGCSyfE89DvEzWfDU0iybMA" http://localhost:3000/items []

所以在执行get请求之前,请在请求标头中包含令牌

request.headers['Authorization'] = auth_token
get :your_action

如何提供auth_token的正确值?

你将需要mockauthenticate_request的方法ApplicationController,因为它被称为before action

#app/controllers/application_controller.rb
class ApplicationController < ActionController::API
 before_action :authenticate_request
  attr_reader :current_user

  private

  def authenticate_request
    @current_user = AuthorizeApiRequest.call(request.headers).result
    render json: { error: 'Not Authorized' }, status: 401 unless @current_user
  end
end

我相信你应该模拟这行代码,以避免收到身份验证错误。

@current_user = AuthorizeApiRequest.call(request.headers).result

所以我会写这样的规格

user = FactoryBot.create(:user)
allow(AuthorizeApiRequest).to receive(:call).and_return(user)
# request.headers['Authorization'] = auth_token # this is not required anymore the authentication is skipped
get :your_action

我引用pluralsight

通过使用before_action,每次用户发出请求时,服务器都会将request headers(使用内置对象属性request.headers)传递给AuthorizeApiRequest。在result上调用AuthorizeApiRequest.call(request.headers)来自SimpleCommand模块,它被定义为attr_reader :result。请求结果返回到@current_user,因此可用于继承自ApplicationController的所有控制器。

你可以阅读更多关于嘲笑的内容

https://github.com/rspec/rspec-mocks

以上是关于如何将auth令牌添加到每个http RSpec测试头的主要内容,如果未能解决你的问题,请参考以下文章

使用带有 JWT Auth/Laravel 的 Angular JS 获取新的刷新令牌后,如何恢复/重新发送请求?

如何将 Auth0 的 ID 令牌转发到 GraphQL 代码生成器?

如何在传入的http请求标头中添加授权令牌[关闭]

调试 Rspec Postgres 锁定

如何在所有请求中传输动态auth值,而不是在SOAPUI中更改每个请求的标头中的值

简单 Odata 客户端 - 如何在每个请求标头中添加 oAuth 令牌?