rspec 测试错误数量的参数

Posted

技术标签:

【中文标题】rspec 测试错误数量的参数【英文标题】:rspec tests wrong number of arguments 【发布时间】:2015-02-07 14:58:14 【问题描述】:

运行我的规范时,我收到以下错误:

失败: 1) UserMailer account_activation 呈现标题 失败/错误:mail.subject.should eq("Bazleyapp account activation") 参数错误: 参数数量错误(0 代表 1)

我无法解决参数数量错误的问题。它指的是什么?错误消息不是很有帮助。

user_mailer_spec.rb:

require "spec_helper"

describe UserMailer do
  describe "account_activation" do
    let(:mail)  UserMailer.account_activation 
    it "renders the headers" do
      mail.subject.should eq("Bazleyapp account activation")
    end
  end
end

user_mailer.rb:

class UserMailer < ActionMailer::Base
  default from: "noreply@bazleyapp.com"
  def account_activation(user)
    @user = user
    mail to: user.email, subject: "Bazleyapp account activation"
  end
end

config/environments/test.rb:

config.action_mailer.delivery_method = :test
config.action_mailer.default_url_options =  host: 'localhost:3000' 

编辑:

我按照 BroiSatse 的建议进行了更改,但现在出现此错误:

UserMailer account_activation 渲染标题失败/错误:let(:user) FactoryGirl.create(:user) ArgumentError: 参数数量错误(1 代表 0)

事实上我刚刚注意到这个错误出现在我的整个测试套件中的任何地方

let(:user)  FactoryGirl.create(:user) 

出现。所以问题转移到了FactoryGirl?

我的 factory.rb 文件是:

FactoryGirl.define do

  factory :user do
    sequence(:name)      |n| "User #n" 
    sequence(:email)     |n| "user_#n@example.com" 
    sequence(:callsign)  |n| "user_#n" 
    password "foobar"
    password_confirmation "foobar"
    activated true

    factory :admin do
      admin true
    end
  end
end

用户.rb:

class User < ActiveRecord::Base
  attr_accessor :remember_token, :activation_token, :reset_token
  has_one  :ghost,    dependent: :destroy
  has_many :personas, dependent: :destroy
  has_secure_password

  before_save do
    self.email.downcase!
    self.callsign.downcase!
  end
  before_create :create_activation_digest
  after_save do
    self.create_ghost unless ghost
  end

  validates :name, presence: true,
                   length:  maximum: 50 
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-]+(?:\.[a-z\d\-]+)*\.[a-z]+\z/i
  validates :email, presence:   true,
                    format:      with: VALID_EMAIL_REGEX ,
                    uniqueness:  case_sensitive: false 
  VALID_CALLSIGN_REGEX = /\A[a-z\d\-.\_]+\z/i
  validates :callsign, presence:   true,
                       length:      maximum: 20 ,
                       format:      with: VALID_CALLSIGN_REGEX ,
                       uniqueness:  case_sensitive: false 
  validates :password, length:  minimum: 6 

  def to_param
    callsign
  end

  def self.digest(string)
    cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST :
                                                  BCrypt::Engine.cost
    BCrypt::Password.create(string, cost: cost)
  end

  def self.new_token
    SecureRandom.urlsafe_base64
  end

  def remember
    self.remember_token = User.new_token
    update_attribute(:remember_digest, User.digest(remember_token))
  end

  def forget
    update_attribute(:remember_digest, nil)
  end

  def authenticated?(attribute, token)
    digest = send("#attribute_digest")
    return false if digest.nil?
    BCrypt::Password.new(digest).is_password?(token)
  end

  def activate
    update_columns(activated: true, activated_at: Time.zone.now)
  end

  def send_activation_email
    UserMailer.account_activation(self).deliver_now
  end

  def create_reset_digest
    self.reset_token = User.new_token
    update_columns(reset_digest:  User.digest(reset_token),
                   reset_sent_at: Time.zone.now)
  end

  def send_password_reset_email
    UserMailer.password_reset(self).deliver_now
  end

  def password_reset_expired?
    reset_sent_at < 2.hours.ago
  end

  private

    def create_activation_digest
      self.activation_token  = User.new_token
      self.activation_digest = User.digest(activation_token)
    end

end

【问题讨论】:

请将您的用户工厂与用户模型一起发布。 嗯,看不到任何明显的东西。您是否尝试过打开控制台并检查:FactoryGirl.create :user 试过了:得到响应“NameError: uninitialized constant FactoryGirl” 但我认为这是因为gem 'factory_girl_rails', '4.2.0' 在我的gemfile 中的group :test 中。当我将它移到 gemfile 的顶部时,我得到了这个:(0.2ms)BEGIN 用户存在(1.0ms)从“用户”中选择 1 作为一个 WHERE LOWER(“用户”。“电子邮件”)= LOWER('user_1@ example.com') LIMIT 1 User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."callsign") = LOWER('user_1') LIMIT 1 (0.2ms) ROLLBACK ArgumentError: wrong number参数(1 代表 0) 任何回溯?尝试以通常的方式创建新用户。 User.create [attributes] 【参考方案1】:

这是由于 ActiveRecord 4.2 Beta 4 和新发布的 Arel 之间不兼容,在 https://***.com/a/27140014/1008891 中得到解决

当我浏览 Michael Hartl 的教程时,他非常坚持认为他的教程只保证适用于他确定的特定版本的 gem。

【讨论】:

你会如何解决这个问题? 检查链接。冒着重复自己的风险,您唯一的保证是坚持使用教程中规定的版本。否则,您可以升级 Rails 和/或 Arel,看看是否能找到两个兼容的。

以上是关于rspec 测试错误数量的参数的主要内容,如果未能解决你的问题,请参考以下文章

RSpec 请求测试在 POST JSON 参数中合并数组中的哈希

RSpec2 错误代码测试

Proc中的RSpec模型验证测试错误

rspec错误测试

使用应该匹配器使用 RSPEC 测试我的控制器时发生错误,特别是创建我无法测试保存功能

rspec 显示错误信息