gpt4 book ai didi

ruby-on-rails - 在 rspec 中不期望任何记录器时有记录器的错误消息

转载 作者:行者123 更新时间:2023-12-04 15:20:47 27 4
gpt4 key购买 nike

在我的一份规范中,我有以下期望:

expect(Rails.logger).not_to receive(:error)

问题是当它失败时,我没有关于错误本身的有用信息:

     Failure/Error: expect(Rails.logger).not_to receive(:error)

(#<ActiveSupport::Logger:0x000000000b85dfa8 @level=1, @progname=nil, @default_formatter=#<Logger::Formatter:0x000000000b85df08 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x000000000b17f510 @datetime_format=nil, @thread_key="activesupport_tagged_logging_tags:93059720">, @logdev=#<Logger::LogDevice:0x000000000b85deb8 @shift_period_suffix=nil, @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/home/circleci/myproject/log/test.log>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x000000000b85de40>>, @local_levels=#<Concurrent::Map:0x000000000b85dda0 entries=0 default_proc=nil>, @thread_hash_level_key=:"ThreadSafeLogger#96661460@level">).error(*(any args))
expected: 0 times with any arguments
received: 1 time with any arguments

有没有办法以某种方式获取错误的内容?我是否应该更改编写规范的方式以在失败时获取规范?

在我的例子中,奇怪的部分似乎是received: 1 time with any arguments,我期待的是received: 1 time with arguments: ("foo").

最佳答案

我没有在 rspec 文档中找到如何做到这一点,但这里有一个关于如何访问错误信息的想法:

allow(Rails.logger).to receive(:error) { |params| raise params.to_s }

这不是惯用的,但是当在记录器上调用 error 时,您的测试会中断

关于ruby-on-rails - 在 rspec 中不期望任何记录器时有记录器的错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63361135/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com