我创建了一个主厨资源,该资源扩展了'厨师的部署资源。基本思想是检查是否存在与要部署的源中的机制deploy/crontab
类似的文件deploy/after_restart.rb
,并从中创建cronjobs。
虽然这个机制可以正常工作(参见https://github.com/fh/easybib-cookbooks/blob/t/cron-tests/easybib/providers/deploy.rb#L11-L14),但我正在努力进行基于ChefSpec的测试。我目前正在尝试使用FakeFS
创建模拟 - 但是当我在Chef运行之前模拟Filesystem时,运行失败,因为没有找到cookbook,因为它们在模拟文件系统中不存在。如果我不这样做,显然找不到模拟文件deploy/crontab
,因此提供者不会做任何事情。我目前的做法是直接在chef_run中的FakeFS.activate!
之前触发runner.converge(described_recipe)
。
我希望听到一些建议如何在这里进行正确的测试:是否有可能在部署资源运行之前直接启用FakeFS,或仅部分模拟文件系统?
答案 0 :(得分:4)
我在文件系统类中存在类似的问题。我解决这个问题的方法如下。
::File.stub(:exists?).with(anything).and_call_original
::File.stub(:exists?).with('/tmp/deploy/crontab').and_return true
open_file = double('file')
allow(open_file).to receive(:each_line).and_yield('line1').and_yield('line2')
::File.stub(:open).and_call_original
::File.stub(:open).with('/tmp/deploy/crontab').and_return open_file
答案 1 :(得分:4)
由于punkle的解决方案在语法上被弃用,并且缺少某些部分,我将尝试提供一个新的解决方案:
require 'spec_helper'
describe 'cookbook::recipe' do
let(:chef_run) { ChefSpec::SoloRunner.converge(described_recipe) }
file_content = <<-EOF
...here goes your
multiline
file content
EOF
describe 'describe what your recipe should do' do
before(:each) do
allow(File).to receive(:exists?).with(anything).and_call_original
allow(File).to receive(:exists?).with('/path/to/file/that/should/exist').and_return true
allow(File).to receive(:read).with(anything).and_call_original
allow(File).to receive(:read).with('/path/to/file/that/should/exist').and_return file_content
end
it 'describe what should happen with the file...' do
expect(chef_run).to #...
end
end
end