Chefspec和stubbing shell_out命令

时间:2015-03-11 07:57:10

标签: ruby chef chefspec

我在我的食谱中写了一个库方法,它会读取/ etc / fstab文件并修改它,如果安装时缺少某些选项。

当我尝试编写Chefspec测试时,他们都无法返回存根信息,而是读取计算机上的本地/ etc / fstab。

我想知道在生产服务器上存储样本fstab的正确语法是什么,并且在运行Chefspec时将该信息传递给库方法。

库方法位于libraries / fstab_quota.rb文件中:

    module ApplicationQuota
      module Fstab
        def read_fstab
          cmd = shell_out('cat /etc/fstab')
          cmd.run_command

          cmd.stdout.split("\n").each do |fs|
            # Logic here
          end
      end
    end
[Chef::Recipe, Chef::Resource].each  do |l|
  l.send :include, ::ApplicationQuota::Fstab
end

然后我会在cookbook配方中调用库方法:

# Fstab returns either an Array if there are modifications or false if 
# no modifications have been made
fstab = read_fstab

file '/etc/fstab' do
  content fstab.join("\n")
  owner "root"
  group "root"
  mode "644"
  action :create
  only_if { fstab }
end

1 个答案:

答案 0 :(得分:1)

将shell_out命令本身存根。

my_double = double('shellout_double')
allow(my_double).to receive(:run_command)
allow(my_double).to receive(:stdout).and_return(.....)
allow(Mixlib:ShellOut).to receive(:shell_out).with("your command").and_return(my_double)