1

有些人坚持在 rspec 中使用变量。这是我的 params.pp

case $::osfamily{
  Debian: {
    $ssh_daemon = "ssh"
  }
  Redhat: {
    $ssh_daemon = "sshd"
  }

在 rspec 测试中,我需要像这样使用变量 $ssh_daemon :

it { should contain_service("${ssh_daemon}").with(
  :ensure => 'running',
  :enable => 'true',
)}

这是我的 ssh.pp 文件

service { "${ssh_daemon}":
  ensure => running,
  enable => true,
}

如何编写此变量 ($ssh_daemon) 以使该测试正常工作?

4

1 回答 1

1

您可以通过模拟 Factor 输出来做到这一点。

就像是:

context 'service on debian' do
  let(:facts) { { :osfamily => 'Debian' } }
  it { should contain_service("ssh") }
end

context 'service on redhat' do
  let(:facts) { { :osfamily => 'RedHat' } }
  it { should contain_service("sshd") }
end
于 2015-06-20T23:46:12.183 回答