gpt4 book ai didi

ruby-on-rails - Rspec 的 instance_double 创建间歇性规范失败

转载 作者:数据小太阳 更新时间:2023-10-29 07:07:05 29 4
gpt4 key购买 nike

我在使用 instance_double 时遇到间歇性测试失败。

我有一个包含 4 个规范的文件。这是来源:

require 'rails_helper'

describe SubmitPost do
before(:each) do
@post = instance_double('Post')
allow(@post).to receive(:submitted_at=)
end

context 'on success' do
before(:each) do
allow(@post).to receive(:save).and_return(true)

@result = SubmitPost.call(post: @post)
end

it 'should set the submitted_at date' do
expect(@post).to have_received(:submitted_at=)
end

it 'should call save' do
expect(@post).to have_received(:save)
end

it 'should return success' do
expect(@result.success?).to eq(true)
expect(@result.failure?).to eq(false)
end
end

context 'on failure' do
before(:each) do
allow(@post).to receive(:save).and_return(false)

@result = SubmitPost.call(post: @post)
end

it 'should return failure' do
expect(@result.success?).to eq(false)
expect(@result.failure?).to eq(true)
end
end

end

这是一个 Rails 4.1.4 应用程序。在内部,SubmitPost 设置 submitted_at 并在传入的 Post 上调用 save。我的 Post 模型如下所示:

class Post < ActiveRecord::Base

validates :title, presence: true
validates :summary, presence: true
validates :url, presence: true
validates :submitted_at, presence: true

scope :chronological, -> { order('submitted_at desc') }

end

这是 super Vanilla 。

当我运行 rakerspecbin/rspec 时,我发现所有四个测试都失败了 20% - 30%时间。错误信息总是:

Failure/Error: allow(@post).to receive(:submitted_at=)
Post does not implement: submitted_at=

如果我用 focus: true 标记其中一项规范,则该规范将在 100% 的时间内失败。

如果我将 instance_double 替换为 double,所有规范将在 100% 的时间内成功。

似乎 instance_double 在推断 Post 类上可用的方法时遇到了一些困难。它似乎也有些随机和基于时间。

有人遇到过这个问题吗?任何想法可能是错误的?知道如何解决这个问题吗?自然地,插入调试断点会导致规范在 100% 的时间内通过。

最佳答案

您看到的问题是 ActiveRecord 动态创建列方法。 instance_double 使用 'Post' 查找方法以验证您是否正确地 stub (除非该类尚不存在或尚未加载)。

当先前的规范加载模型时,ActiveRecord 将创建这些动态方法,以便您的规范通过,因为 RSpec 然后可以找到这些方法(使用 respond_to? 调用)。当单独运行时,模型以前没有被使用过,因此 ActiveRecord 还不会创建动态方法,并且您的测试会像您遇到的那样失败。

解决方法是强制 ActiveRecord 在您的规范中调用动态方法时加载它们:

class Post < ActiveRecord::Base
def submitted_at=(value)
super
end
end

有关该问题的进一步解释和解决方法,请参阅 RSpec 文档:

https://www.relishapp.com/rspec/rspec-mocks/docs/verifying-doubles/dynamic-classes

关于ruby-on-rails - Rspec 的 instance_double 创建间歇性规范失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25756845/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com