rspec 测试,如何获取我的情况下的 id?
我对我的控制器进行了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在控制器中为对象分配类似的内容
,则可以使用 allocate 方法使用该对象,因此您可以执行以下操作:
并且假设保存成功,它将返回 id。
-- 编辑 --
对于 RSpec 2,分配似乎是一个方法调用,因此您提供像这样的属性,
而不是旧的类似散列的行为
If you assign the object in your controller with something like
then it'll be available using the assigns method, so you could do the following:
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
instead of the old hash-like behaviour