我在 Chef 中创建了一个非常简单的自定义资源,该资源内部是一些简单的逻辑。有问题的逻辑调用了一些自定义辅助方法。
我可以构建资源,并将其作为配方的一部分执行 - 但如果我想对资源本身的行为进行单元测试以确保流程正确。因此,我希望能够模拟这些辅助函数的行为,以便我可以指导资源行为。不幸的是,我无法让它工作。
我的食谱是这样的:
my_resource 'executing' do
action :execute
end
资源如下所示:
action :execute do
if my_helper?(node['should_be_true'])
converge_by "Updating" do
my_helper_method
end
end
end
action_class do
include CustomResource::Helpers
end
功能很简单:
module CustomResource
module Helpers
def my_helper?(should_be_true)
should_be_true
end
def my_helper_method
hidden_method
end
def hidden_method
3
end
end
end
当我试图在我的 ChefSpec 测试中模拟这些行为时,我得到了错误:
it 'executes' do
allow(CustomResource::Helpers).to receive(:my_helper?).and_return(true)
expect(CustomResource::Helpers).to receive(:my_helper_method)
expect { chef_run }.to_not raise_error
end
Failure/Error: expect(CustomResource::Helpers).to receive(:my_helper_method)
(CustomResource::Helpers).my_helper_method(*(any args))
expected: 1 time with any arguments
received: 0 times with any arguments
任何想法我在嘲笑中做错了什么?
提前致谢!