我正在为我写的一本食谱编写ServerSpec测试。测试需要节点属性来通过厨房断言各种事物。
幸运的是,这里有一个指南解释如何实现这个目标: http://jakshi.com/blog/2014/05/12/accessing-chef-attributes-in-serverspec-tests/
我遇到的问题是,这不起作用:
attrs = attrs.deep_merge(node.override_attrs) unless node.override_attrs.empty?
但这有效:
attrs = attrs.deep_merge(node.attributes.combined_override) unless node.attributes.combined_override.empty?
我的设置与博客中描述的完全相同。由于缺乏ruby-fu,浏览code没有帮助。 chef-client版本为11.14.6,Test-Kitchen版本为1.3.1
有人可以帮忙吗?有没有其他人有这个问题?感谢。
更新:以下是我创建的虚拟食谱的所有属性,以模拟这一点。
cb-under-test/recipes/default.rb
<Nothing>
cb-under-test/test/fixtures/cookbooks/fake/attributes/default.rb
force_override['important_dir'] = 'test_recipe_force_override'
../env/dummy-env.json
{
"name": "dummy-env",
"description": "Dummy Env",
"cookbook_versions": {
},
"json_class": "Chef::Environment",
"chef_type": "environment",
"override_attributes": {
"important_dir": "env_override"
}
}
答案 0 :(得分:3)
根据the code,没有override_attrs方法。
在这里,您将node.override
下的食谱属性和node.env_override
中的环境属性,node.combined_override
为您提供结果属性深度合并。
博客文章相当陈旧,您最好使用attrs = node.merged_attributes
编写json文件并从cookbook,角色和环境中获取结果属性,使用merged_attributes
应避免使用ohai
属性为,保持json的大小。