Rspec / Mongoid测试JSON响应失败,期望字段名称,但改为使用字段Alias

时间:2013-08-23 09:26:09

标签: ruby-on-rails json testing rspec mongoid

我正在尝试测试我的控制器的JSON响应,

这是我的模特:

class SalesRep < Person
 include Mongoid::Document
end


#Here is Class Person which SalesRep Inherits from:

class Person
include Mongoid::Document

field :nf,  as: :first_name,    type: String
field :nl,  as: :last_name,     type: String
field :ttl, as: :title,         type: String
field :ph,  as: :phone_num,     type: String
field :em,  as: :email,         type: String


attr_accessible :first_name,
                :last_name,
                :title,
                :phone_num ,
                :email

end

这是我的Controller#index:

def index
@sales_reps = SalesRep.all

respond_to do |format|
  format.html # index.html.erb
  format.json { render json: @sales_reps, root: false }
end
end

这是我的rspec测试,我试图用以下方法测试JSON响应:

  require 'spec_helper'
  describe SalesRepsController do
  let(:valid_attributes) { { first_name: "Seth", last_name: "McFee" } }
  describe "GET index" do
    let!(:sales_rep1){ SalesRep.create! valid_attributes}
    it "return JSON-formated content" do
      get :index, format: :json
      expect(response.body).to have_content sales_rep1.to_json
    end
  end
  end

,这是序列化器:

class SalesRepSerializer < ActiveModel::Serializer
  attributes :id, :first_name, :last_name
end

这是测试输出:  1)SalesRepsController GET索引返回JSON格式化内容

Failure/Error: expect(response.body).to have_content sales_rep1.to_json
expected to find text "{\"_id\":\"52171a4fd7037ee84e000001\",\"em\":null,\"meeting_ids\":[],\"nf\":\"Seth\",\"nl\":\"McFee\",\"ph\":null,\"sex\":1,\"ttl\":null}" in "[{\"id\":\"521718ced7037e15c2000001\",\"first_name\":\"Mark\",\"last_name\":\"Doe\"},{\"id\":\"52171a4fd7037ee84e000001\",\"first_name\":\"Seth\",\"last_name\":\"McFee\"}]"

如您所见,测试期望找到nf和nl,但是它接收字段Aliases(first_name,last_name), 我看到了问题,但我不知道如何解决它!

搜索时使用的任何帮助/建议/提示/关键字。非常感谢。

PS,不推荐使用某些数据以使帖子更具可读性,

PPS,抱歉我的英语不好。

1 个答案:

答案 0 :(得分:0)

现在,在所有mongoid版本上,这就是行为。 JSON序列化不要在编码时使用别名字段。有一个公关来解决这个https://github.com/mongoid/mongoid/pull/2849,这仍然存在争议。如果您想要该功能,可以将PR合并到您自己的分支中。此外,您可以对票证进行投票,以便更快地合并。