2

可以说我有以下测试:

context 'test' do
  let(:hiera_data) { { :number => '2' } }

  it { should have_module__define_resource_count(2) }
end

context 'test2' do
  let(:hiera_data) { { :number => '10' } }

  it { should have_module__define_resource_count(10) }
end

第一个测试通过,但是当第二个测试运行时它失败了,因为 hiera 变量number仍然是 2。

似乎let(:hiera_data)无法覆盖先前声明的变量。

根据这个自述文件,如果 hiera 数据设置在不同的文件中,它应该可以工作,但它不起作用。

如何在一个规范文件中多次测试 hiera?

4

1 回答 1

3

我遇到了同样的问题,并且被难住了一段时间。最终我发现hiera信息是。你可以像这样修复它:

let(:facts) {{ :cache_bust => Time.now }}

例如:

傀儡代码:

class example::bar {
  notify { 'bar': message => hiera('bar_message') }
}

rspec-木偶代码:

describe "example::bar" do

  let(:facts) {{ :cache_bust => Time.now }}

  describe "first in-line hiera_data test with a" do
    let(:hiera_data) { { :bar_message => "a" } }
    it { should contain_notify("bar").with_message("a") }
  end

  describe "second in-line hiera_data test with b" do
    let(:hiera_data) { { :bar_message => "b" } }
    it { should contain_notify("bar").with_message("b") }
  end
end

这行得通!我有一个 PR 可以将其添加到文档中。botfish 叉子是 hiera-puppet-helper 最近维护的叉子(参见原文的注释

于 2015-03-04T15:44:41.517 回答