加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 在rspec中删除测试 – 更改(模型,:计数)失败

发布时间:2020-12-17 03:29:18 所属栏目:百科 来源:网络整理
导读:TLDR:App.count需要重新加载才能查看创建的记录.为什么? 我发现很多引用测试DELETE方法,如下所示: expect { delete_request }.to change(App,:count).by(-1) 这是有道理的,并且适用于某些类似的场景.但是,在测试不应该工作的删除时,我发现了一个问题,例如
TLDR:App.count需要重新加载才能查看创建的记录.为什么?

我发现很多引用测试DELETE方法,如下所示:

expect { delete_request }.to change(App,:count).by(-1)

这是有道理的,并且适用于某些类似的场景.但是,在测试不应该工作的删除时,我发现了一个问题,例如没有用户登录时.

这是我开始的地方,有两种方法来测试同一件事:

require 'rails_helper'

RSpec.describe V1::AppsController,type: :controller do
  let(:user) { create(:user) }
  let(:app) { create(:app,account: user.account) }

  describe 'DELETE destroy when you are not logged in' do
    let(:delete_request) { delete :destroy,id: app,format: :json }

    it 'does not delete the app (.count)' do
      expect { delete_request }.not_to change(App,:count)
    end

    it 'does not delete the app (.exists?)' do
      delete_request
      expect(App.exists?(app.id)).to eq(true)
    end
  end
end

这就是rspec所说的:

V1::AppsController
  DELETE destroy when you are not logged in
    does not delete the app (.count) (FAILED - 1)
    does not delete the app (.exists?)

Failures:

  1) V1::AppsController DELETE destroy when you are not logged in does not delete the app (.count)
     Failure/Error: expect { delete_request }.not_to change(App,:count)
       expected #count not to have changed,but did change from 0 to 1
     # ./spec/controllers/v1/delete_test_1.rb:11:in `block (3 levels) in <top (required)>'

2 examples,1 failure

注意最令人困惑的部分:预期#count没有改变,但确实从0变为1.咦?我试图进行非法删除,我的记录数增加了一倍?另请注意,明确检查主题记录的检查仍然存在.

所以我玩了一些,发现我可以在expect()之前重新加载修复问题:

it 'does not delete the app (.count)' do
  puts "App.count is #{App.count} (after create(:app))"
  app.reload
  puts "App.count is #{App.count} (after reload)"
  expect { delete_request }.not_to change(App,:count)
  puts "App.count is #{App.count} (after request)"
end

现在rspec很高兴:

V1::AppsController
  DELETE destroy when you are not logged in
App.count is 0 (after create(:app))
App.count is 1 (after reload)
App.count is 1 (after request)
    does not delete the app (.count)
    does not delete the app (.exists?)

2 examples,0 failures

从这一切来看,我决定坚持存在?做法.但另一个(可能更大)的问题是,我在互联网上发现的所有测试样本都要测试创建记录,如期望{create_request}.更改(App,:count).by(1)可能是误报,如果他们我看到了与我相同的结果,并假设创建记录实际上它是一个缓存工件?

那么,任何想法为什么App.count需要重新加载来查看当前值?

解决方法

发生这种情况是因为当ruby调用delete_request方法时,它会调用app方法,并创建一个App

要测试它,请在调用expect rspec方法之前创建应用程序:

it 'does not delete the app (.count)' do
  app #creates the app
  expect { delete_request }.not_to change(App,:count)
end

看看我们的文档:

Use let to define a memoized helper method. The value will be cached
across multiple calls in the same example but not across examples.

Note that let is lazy-evaluated: it is not evaluated until the first
time the method it defines is invoked. You can use let! to force the
method’s invocation before each example.

https://www.relishapp.com/rspec/rspec-core/v/2-11/docs/helper-methods/let-and-let

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读