如何显示 RSpec 测试生成的 SQL 查询日志?

发布于 2024-11-27 06:26:09 字数 177 浏览 1 评论 0原文

我正在为我的 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 技术交流群。

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

发布评论

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

评论(3

旧人九事 2024-12-04 06:26:09

将以下代码放入您的规范中:

Rails 7.0+

ActiveRecord.verbose_query_logs = true

Rails 5.2

ActiveRecord::Base.verbose_query_logs = true

Rails 3.0

ActiveRecord::Base.logger = Logger.new(STDOUT) if defined?(ActiveRecord::Base)

感谢所有对 Rails 更新发表评论的人。

Put the following code in your specs:

Rails 7.0+

ActiveRecord.verbose_query_logs = true

Rails 5.2

ActiveRecord::Base.verbose_query_logs = true

Rails 3.0

ActiveRecord::Base.logger = Logger.new(STDOUT) if defined?(ActiveRecord::Base)

Thanks to everyone who commented for the Rails updates.

爱你是孤单的心事 2024-12-04 06:26:09

对我有用的是以下内容的组合:

  • Phil 上面的评论:“在你的 test.rb 文件中,你可能还需要设置 config.log_level = :debug
  • 并使用 < 在另一个终端中查看测试日志代码>tail -f log/test.log

What worked for me is a combination of:

  • Phil's comment above: "in your test.rb file you may also need to set config.log_level = :debug"
  • and viewing the test's log in another terminal with tail -f log/test.log
も星光 2024-12-04 06:26:09

根据Rails 5文档(活动记录解释)。您现在可以使用解释方法。这只会记录您指定的查询,但如果您在测试之前有大量 SQL 代码,您也不会不知所措。

ap Model.explain

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.

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