7

我正在尝试使用ChefSpec测试角色。我宁愿不使用Chef Zero(通过要求 'chefspec/server'),因为它的运行速度比 ChefSpec 本身的运行速度要慢一些。

也许我读错了文档,但看起来不需要厨师零来测试角色。但是,我目前的配置没有任何运气。这是我的测试:

require 'chefspec'

RSpec.configure do |config|
  config.cookbook_path = 'C:\projects\chef\cookbooks'
  config.role_path = 'C:\projects\chef\roles'
  config.log_level = :debug
  config.platform = 'ubuntu'
  config.version = '12.04'
end

describe 'my_cookbook::default' do
  let(:chef_run) do
    ChefSpec::Runner.new.converge('role[my_role]')
  end

  it 'runs without failing' do
    expect(chef_run)
  end
end

角色(位于角色/my_role.json):

{
    "name": "my_role",
    "description": "My role",
    "default_attributes": {
    },
    "run_list": [
        "recipe[my_cookbook::default]"
    ]
}

当我运行测试时,我收到:

NoMethodError: undefined method `run_list_for' for #<Hash:0x4fa3280>
./spec/role_spec.rb:13:in `block (2 levels) in <top (required)>'
./spec/role_spec.rb:17:in `block (2 levels) in <top (required)>'

如果我修改我的测试以通过 requires 手动将角色加载到 Chef Zero 中chefspec/server,那似乎可行。我认为我不应该从编写文档的方式来模拟服务器,但我可能是错的。

难道我做错了什么?这是一个错误吗?还是我必须使用零厨师?

4

1 回答 1

16

如果您使用 JSON 角色,则必须包括json_class

"json_class": "Chef::Role"

如果您使用 Ruby 角色,则不需要这样做。

于 2014-02-01T18:31:05.993 回答