在一本食谱上,我定义了一个类 Rds::Checks,它共享为 bash/execute 资源和 Guards 构建 unix 命令的方法。文件库/checks.rb 的示例是:
module Rds
class Checks
class << self
def ssh_config_entry_present host, config_file, key_name
"cat #{config_file} | grep #{key_name}"
end
def redmine_migrated user, pass, name
"if [ `mysql -u#{user} -p#{pass} -e 'select count(id) FROM #{name}.users;' | sed -n '2 p'` -gt 0 ]; then echo '0'; else echo '1'; fi"
end
end
end
end
在 LWPR 提供程序、食谱和 chefspec 测试中,文件加载没有问题,但是当我通过它在 serverspec 中使用它时kitchen verify
会引发错误。
paolo@tower:~/cookbooks/rds$ cat test/integration/install/serverspec/localhost/install_spec.rb
...
it 'do migrations' do
cmd = Rds::Checks.redmine_migrated
expect(command(cmd).stdout).to eq 0
end
...
paolo@tower:~/cookbooks/rds$ kitchen verify
...
NameError:
uninitialized constant Rds
我真的很想保留在公共层上构建 bash/sh 命令的方法,以便我可以单独对其进行测试,而不必在单元和集成测试中为它们烦恼