如何显示 RSpec 测试生成的 SQL 查询日志?
我正在为我的 Rails 3 应用程序编写规范。我想测试数据库事务是否真的有效。如果能够看到我的应用程序在规范驱动下生成的 sql 查询,那将非常有帮助。
有没有办法像在 Rails 控制台中一样查看查询?
我正在使用 Rails 3.0.9、RSpec 2.6 和 sqlite(稍后将转移到 mysql)
I am writing a spec for my rails 3 application. I want to test that db transactions are really working. It would be really helpful to be able to see the sql queries being generated my app while being driven by the spec.
Is there a way to see the queries just like in the rails console?
I'm using Rails 3.0.9, RSpec 2.6, and sqlite (will move to mysql later on)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将以下代码放入您的规范中:
Rails 7.0+
Rails 5.2
Rails 3.0
感谢所有对 Rails 更新发表评论的人。
Put the following code in your specs:
Rails 7.0+
Rails 5.2
Rails 3.0
Thanks to everyone who commented for the Rails updates.
对我有用的是以下内容的组合:
config.log_level = :debug
”What worked for me is a combination of:
config.log_level = :debug
"tail -f log/test.log
根据Rails 5文档(活动记录解释)。您现在可以使用解释方法。这只会记录您指定的查询,但如果您在测试之前有大量 SQL 代码,您也不会不知所措。
According to the Rails 5 docs (Active Record Explain). You can now use the explain method. This will only log the queries you specify, but you will not be overwhelmed if you have a large amount of SQL code before your tests.