我正在尝试在我的请求规范中存根:authenticate_user方法调用,以便我可以测试用户的关联创建。我正在使用这些博客文章作为存根的指南:
2)http://johnnyji.me/rspec/2015/06/18/stubbing-controller-instance-methods-in-rspec.html
我没有取得成功,我无法弄清楚我错过了什么。
当我尝试
时it 'creates a new contract' do
allow(controller).to receive(:authenticate_user).and_return(user)
post api_v1_user_contracts_path(user), { params: contract_params}
expect(response).to have_http_status(200)
end
当我尝试时:
it 'creates a new contract' do
allow_any_instance_of(controller).to receive(:authenticate_user).and_return(user)
post api_v1_user_contracts_path(user), { params: contract_params}
expect(response).to have_http_status(200)
end
我的代码: 规格/请求/ contracts_api_spec.rb
require 'rails_helper'
require 'pry'
context "POST #create" do
let (:user) { User.create(full_name: "Jason Bourne", email: "jbourne@test.com", password: "123456") }
let (:contract_params) do
{
"contract[vendor]" => "Lebara",
"contract[starts_on]" => "2018-12-12",
"contract[ends_on]" => "2018-12-16",
"contract[price]" => "15"
}
end
it 'creates a new contract' do
allow(controller).to receive(:authenticate_user).and_return(user)
post api_v1_user_contracts_path(user), { params: contract_params}
expect(response).to have_http_status(200)
end
应用程序/控制器/ API / V1 / contracts_controller.rb
class Api::V1::ContractsController < ApplicationController
before_action :authenticate_user
def show
if @current_user.contracts.find_by(id: params[:id])
render json: @current_user.contracts.find_by(id: params[:id])
else
render json: { error: "Contract not found"}, status: 400
end
end
def create
contract = @current_user.contracts.build(contract_params)
if contract.save
render json: contract
else
render json: { error: contract.errors }, status: 400
end
end
应用程序/控制器/关切/ token_authenticatable.rb
class NotAuthorizedException < StandardError; end
module TokenAuthenticatable
extend ActiveSupport::Concern
included do
attr_reader :current_user
before_action :authenticate_user
rescue_from NotAuthorizedException, with: -> { render json: { error: 'Not Authorized' }, status: :unauthorized }
end
private
def authenticate_user
@current_user = DecodeAuthenticationCommand.call(request.headers).result
raise NotAuthorizedException unless @current_user
end
end
其他问题:
1)我应该使用真正的User对象,还是应该是double?我假设它应该是真正的用户,以便测试关联创建是否有效。
2)我应该使用allow( Api :: V1 :: ContractsController )来接收(:authenticate_user).and_return(用户)吗?我之前尝试过并且没有工作,但我不知道这是因为其他东西也破坏了它。
感谢您提供任何反馈!
答案 0 :(得分:2)
关键是authenticate_user
将用户分配给变量(稍后再使用)。请尝试:
allow(DecodeAuthenticationCommand).to receive_message_chain(:call, :result).and_return(user)
使用test double,您必须为用户定义所有方法,例如contracts
。此外,您正在检查合同是否已创建 - 在我看来,使用user
的真实对象完全没问题。