rspec 测试,如何获取我的情况下的 id?

发布于 2024-10-24 21:32:23 字数 466 浏览 2 评论 0原文

我对我的控制器进行了 rsepc 测试,在我的测试中,我有以下代码片段:

...
params= {SOME PARAMETERS}
post :create, params

上面的代码测试我的控制器中的 create 方法,create 方法创建一个实例对象并将其保存到数据库中。

现在的问题是如何获取数据库中创建的实例对象的id

看来(我不确定)我需要查询这个对象的测试数据库,如何查询? (PS:我知道有Factory可以用来创建对象实例,但这是对控制器的测试,使用Factory会失去测试控制器创建方法的目的。所以,请不要建议我使用Factory

我想知道如何根据我的代码获取我创建的对象实例的id?谢谢你:)

I have a rsepc test for my controller, in my test, I have the following code snippet:

...
params= {SOME PARAMETERS}
post :create, params

the above code test the create method in my controller, the create method create a instance object and save it into database.

Now the problem is how can I get the id of the created instance object in database?

It seems (I am not sure) I need to query the test database for this object, how to query?
(PS: I know there is Factory can be used to create object instance, BUT this is a test for controller, use Factory will loose the purpose of testing controller's create method. So, please do not advice me to use Factory)

I would like to know how to get the id of my created object instance based on my code? Thank you:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

盛夏尉蓝 2024-10-31 21:32:23

如果您在控制器中为对象分配类似的内容

@object = Object.new(params[:object]

,则可以使用 allocate 方法使用该对象,因此您可以执行以下操作:

assigns[:object].id

并且假设保存成功,它将返回 id。

-- 编辑 --

对于 RSpec 2,分配似乎是一个方法调用,因此您提供像这样的属性,

assigns(:object)

而不是旧的类似散列的行为

If you assign the object in your controller with something like

@object = Object.new(params[:object]

then it'll be available using the assigns method, so you could do the following:

assigns[:object].id

and it will return the id, assuming it saved successfully.

-- edit --

with RSpec 2 it seems assigns is a method call, so you provide the attribute like so

assigns(:object)

instead of the old hash-like behaviour

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文