我正在使用以下版本:
红宝石2.5.5
导轨5.2.3
state_machines-activerecord 0.6.0
我有一个Foo模型,上面有一个状态机:
class Foo < ApplicationRecord
def post_activate
puts "hello from sunny post_activate"
end
state_machine :state, initial: :initial do
state :active
after_transition any => :active, :do => :post_activate
event :activate do
transition initial: :active
end
end
end
我正在尝试编写一个rspec测试,以确保post_activate
在转换为状态:活动之后被调用。
我可以从Rails控制台进行测试:
2.5.5 :001 > thinger = Foo.new
=> #<Foo id: nil, state: "initial", created_at: nil, updated_at: nil>
2.5.5 :002 > thinger.activate
(0.1ms) begin transaction
Foo Create (0.4ms) INSERT INTO "foos" ("state", "created_at", "updated_at") VALUES (?, ?, ?) [["state", "active"], ["created_at", "2019-06-28 21:35:22.555917"], ["updated_at", "2019-06-28 21:35:22.555917"]]
hello from sunny post_activate
(0.7ms) commit transaction
=> true
但是,当我运行测试时:
describe 'Foo' do
it 'should fire post_activate' do
foo = Foo.new
expect(foo).to receive(:post_activate)
foo.activate
end
end
我收到以下错误:
1) Foo should fire post_activate
Failure/Error: foo.activate
ArgumentError:
Wrong number of arguments. Expected 0, got 1.
有趣的是,另一个测试正确运行,没有错误:
it 'should change the state' do
foo = Foo.new
expect{
foo.activate
}.to change {
foo.state
}.from('initial').to('active')
end
此测试通过并打印我的调试消息。
我尝试将参数放入post_activate
定义中:
def post_activate(arg)
puts arg
puts "hello from sunny post_activate"
end
现在测试通过-并且puts语句显示传入的对象是StateMachines::Transition
#<StateMachines::Transition:0x00007fd5d3534228>
hello from sunny post_activate
我不确定这是如何工作的-我知道如何将参数设为可选,但我不知道如何选择性地传递参数。
无论如何-如果我在方法定义中添加参数,则测试通过。但是我不想添加一个我不仅仅用于传递规格的参数。我该如何解决?
答案 0 :(得分:0)
RSpec验证代理通过当前转换获得对if(!res.query){
res.redirect(url.format({ // redirect to the url with the updated seed
pathname: '/canvas',
query: req.query
}))
}
的呼叫。如果在Gemfile中添加validate_arguments!
之类的东西,并有条件地将其byebug添加到Rspec的post_activate
中,则可以看到它:
byebug
这将使您可以访问Actual_args:
validate_arguments!
因此,要解决您的问题,只需在回调中添加省略的参数(您已经清楚地知道了):
@method_reference.with_signature do |signature|
verifier = Support::StrictSignatureVerifier.new(signature, actual_args)
byebug unless verifier.valid?
raise ArgumentError, verifier.error_message unless verifier.valid?
要确定为什么使用下划线使用这种方式,请查看Ruby Style Guide。