chef 13.6.4-universal-mingw32 → 13.7.16-universal-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/VERSION +1 -1
- data/acceptance/Gemfile +2 -2
- data/acceptance/top-cookbooks/.acceptance/acceptance-cookbook/libraries/top_cookbooks.rb +1 -6
- data/distro/powershell/chef/chef.psm1 +1 -5
- data/lib/chef/api_client.rb +5 -5
- data/lib/chef/api_client_v1.rb +6 -6
- data/lib/chef/application.rb +3 -2
- data/lib/chef/application/knife.rb +4 -0
- data/lib/chef/chef_class.rb +2 -2
- data/lib/chef/chef_fs/data_handler/data_bag_item_data_handler.rb +1 -1
- data/lib/chef/chef_fs/data_handler/data_handler_base.rb +2 -4
- data/lib/chef/client.rb +3 -3
- data/lib/chef/cookbook/chefignore.rb +4 -0
- data/lib/chef/cookbook/cookbook_collection.rb +2 -2
- data/lib/chef/cookbook/metadata.rb +2 -2
- data/lib/chef/data_bag.rb +1 -1
- data/lib/chef/deprecated.rb +10 -0
- data/lib/chef/event_dispatch/base.rb +2 -2
- data/lib/chef/http.rb +10 -10
- data/lib/chef/knife.rb +16 -15
- data/lib/chef/knife/configure.rb +12 -36
- data/lib/chef/knife/cookbook_upload.rb +4 -4
- data/lib/chef/knife/core/bootstrap_context.rb +1 -1
- data/lib/chef/knife/core/status_presenter.rb +6 -2
- data/lib/chef/knife/core/ui.rb +1 -1
- data/lib/chef/knife/data_bag_secret_options.rb +1 -1
- data/lib/chef/knife/data_bag_show.rb +1 -1
- data/lib/chef/knife/edit.rb +1 -1
- data/lib/chef/knife/ssh.rb +47 -35
- data/lib/chef/knife/user_create.rb +2 -0
- data/lib/chef/knife/user_delete.rb +2 -0
- data/lib/chef/knife/user_edit.rb +2 -0
- data/lib/chef/knife/user_reregister.rb +2 -0
- data/lib/chef/knife/user_show.rb +2 -0
- data/lib/chef/mixin/powershell_out.rb +1 -1
- data/lib/chef/node/attribute.rb +46 -70
- data/lib/chef/node/attribute_collections.rb +5 -5
- data/lib/chef/node/common_api.rb +1 -1
- data/lib/chef/node/immutable_collections.rb +180 -23
- data/lib/chef/node/mixin/state_tracking.rb +6 -6
- data/lib/chef/node_map.rb +63 -45
- data/lib/chef/property.rb +8 -8
- data/lib/chef/provider.rb +9 -3
- data/lib/chef/provider/apt_preference.rb +1 -1
- data/lib/chef/provider/apt_repository.rb +1 -1
- data/lib/chef/provider/apt_update.rb +1 -1
- data/lib/chef/provider/file.rb +1 -1
- data/lib/chef/provider/group/dscl.rb +6 -2
- data/lib/chef/provider/ifconfig.rb +96 -34
- data/lib/chef/provider/launchd.rb +0 -1
- data/lib/chef/provider/log.rb +3 -13
- data/lib/chef/provider/package/dnf.rb +1 -1
- data/lib/chef/provider/package/smartos.rb +2 -2
- data/lib/chef/provider/reboot.rb +12 -0
- data/lib/chef/provider/remote_directory.rb +1 -1
- data/lib/chef/provider/remote_file/http.rb +3 -2
- data/lib/chef/provider/service/solaris.rb +6 -2
- data/lib/chef/provider/systemd_unit.rb +34 -33
- data/lib/chef/provider/user/dscl.rb +1 -1
- data/lib/chef/provider/windows_path.rb +6 -7
- data/lib/chef/provider/windows_task.rb +89 -33
- data/lib/chef/provider/yum_repository.rb +24 -9
- data/lib/chef/resource/apt_package.rb +1 -0
- data/lib/chef/resource/apt_preference.rb +4 -0
- data/lib/chef/resource/apt_repository.rb +4 -0
- data/lib/chef/resource/apt_update.rb +3 -0
- data/lib/chef/resource/bash.rb +4 -0
- data/lib/chef/resource/batch.rb +5 -0
- data/lib/chef/resource/bff_package.rb +4 -0
- data/lib/chef/resource/breakpoint.rb +6 -0
- data/lib/chef/resource/cab_package.rb +6 -6
- data/lib/chef/resource/chef_gem.rb +13 -0
- data/lib/chef/resource/chocolatey_package.rb +4 -6
- data/lib/chef/resource/cookbook_file.rb +13 -15
- data/lib/chef/resource/cron.rb +2 -0
- data/lib/chef/resource/csh.rb +4 -0
- data/lib/chef/resource/directory.rb +8 -26
- data/lib/chef/resource/dnf_package.rb +5 -0
- data/lib/chef/resource/dpkg_package.rb +2 -0
- data/lib/chef/resource/dsc_resource.rb +5 -0
- data/lib/chef/resource/dsc_script.rb +6 -0
- data/lib/chef/resource/env.rb +3 -0
- data/lib/chef/resource/erl_call.rb +5 -0
- data/lib/chef/resource/execute.rb +5 -1
- data/lib/chef/resource/file.rb +2 -1
- data/lib/chef/resource/file/verification.rb +10 -0
- data/lib/chef/resource/freebsd_package.rb +10 -2
- data/lib/chef/resource/gem_package.rb +2 -0
- data/lib/chef/resource/git.rb +2 -0
- data/lib/chef/resource/group.rb +1 -0
- data/lib/chef/resource/homebrew_package.rb +3 -0
- data/lib/chef/resource/http_request.rb +2 -0
- data/lib/chef/resource/ifconfig.rb +23 -150
- data/lib/chef/resource/ips_package.rb +1 -0
- data/lib/chef/resource/ksh.rb +6 -0
- data/lib/chef/resource/launchd.rb +5 -4
- data/lib/chef/resource/link.rb +10 -0
- data/lib/chef/resource/log.rb +19 -46
- data/lib/chef/resource/macports_package.rb +1 -0
- data/lib/chef/resource/mdadm.rb +4 -0
- data/lib/chef/resource/mount.rb +1 -0
- data/lib/chef/resource/msu_package.rb +7 -8
- data/lib/chef/resource/ohai.rb +2 -0
- data/lib/chef/resource/openbsd_package.rb +3 -0
- data/lib/chef/resource/osx_profile.rb +10 -40
- data/lib/chef/resource/package.rb +6 -0
- data/lib/chef/resource/pacman_package.rb +1 -0
- data/lib/chef/resource/paludis_package.rb +3 -0
- data/lib/chef/resource/perl.rb +4 -0
- data/lib/chef/resource/portage_package.rb +1 -0
- data/lib/chef/resource/powershell_package.rb +5 -0
- data/lib/chef/resource/powershell_script.rb +8 -0
- data/lib/chef/resource/python.rb +4 -0
- data/lib/chef/resource/reboot.rb +14 -20
- data/lib/chef/resource/registry_key.rb +1 -0
- data/lib/chef/resource/remote_directory.rb +3 -0
- data/lib/chef/resource/remote_file.rb +2 -0
- data/lib/chef/resource/resource_notification.rb +17 -0
- data/lib/chef/resource/route.rb +1 -0
- data/lib/chef/resource/rpm_package.rb +1 -0
- data/lib/chef/resource/ruby.rb +4 -0
- data/lib/chef/resource/ruby_block.rb +3 -0
- data/lib/chef/resource/script.rb +4 -0
- data/lib/chef/resource/service.rb +1 -0
- data/lib/chef/resource/smartos_package.rb +1 -0
- data/lib/chef/resource/solaris_package.rb +1 -0
- data/lib/chef/resource/subversion.rb +1 -0
- data/lib/chef/resource/systemd_unit.rb +6 -0
- data/lib/chef/resource/template.rb +9 -0
- data/lib/chef/resource/user.rb +1 -0
- data/lib/chef/resource/windows_package.rb +2 -0
- data/lib/chef/resource/windows_path.rb +5 -10
- data/lib/chef/resource/windows_service.rb +3 -0
- data/lib/chef/resource/windows_task.rb +66 -87
- data/lib/chef/resource/yum_repository.rb +26 -22
- data/lib/chef/resource/zypper_package.rb +2 -0
- data/lib/chef/resource/zypper_repository.rb +6 -1
- data/lib/chef/run_context.rb +8 -2
- data/lib/chef/server_api.rb +1 -0
- data/lib/chef/util/selinux.rb +5 -4
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version/platform.rb +18 -0
- data/lib/chef/version_constraint/platform.rb +2 -0
- data/spec/data/client.d_00/02-strings.rb +2 -0
- data/spec/functional/assets/chefinittest +6 -4
- data/spec/functional/knife/ssh_spec.rb +54 -7
- data/spec/functional/resource/bff_spec.rb +3 -3
- data/spec/functional/resource/ifconfig_spec.rb +1 -1
- data/spec/functional/resource/mount_spec.rb +7 -3
- data/spec/functional/resource/user/useradd_spec.rb +4 -4
- data/spec/functional/resource/windows_task_spec.rb +6 -6
- data/spec/functional/win32/security_spec.rb +7 -33
- data/spec/integration/knife/data_bag_show_spec.rb +1 -1
- data/spec/integration/recipes/noop_resource_spec.rb +1 -1
- data/spec/integration/recipes/recipe_dsl_spec.rb +30 -30
- data/spec/integration/recipes/resource_action_spec.rb +2 -2
- data/spec/integration/recipes/resource_converge_if_changed_spec.rb +71 -15
- data/spec/spec_helper.rb +19 -0
- data/spec/support/shared/functional/execute_resource.rb +1 -1
- data/spec/support/shared/unit/application_dot_d.rb +2 -0
- data/spec/support/shared/unit/execute_resource.rb +8 -1
- data/spec/support/shared/unit/provider/file.rb +9 -1
- data/spec/unit/chef_fs/data_handler/data_bag_item_data_handler.rb +10 -7
- data/spec/unit/chef_fs/file_system/repository/directory_spec.rb +2 -2
- data/spec/unit/client_spec.rb +1 -1
- data/spec/unit/deprecated_spec.rb +4 -4
- data/spec/unit/http_spec.rb +9 -0
- data/spec/unit/knife/bootstrap_spec.rb +5 -0
- data/spec/unit/knife/configure_spec.rb +10 -60
- data/spec/unit/knife/data_bag_create_spec.rb +40 -2
- data/spec/unit/knife/data_bag_show_spec.rb +16 -2
- data/spec/unit/knife/ssh_spec.rb +85 -39
- data/spec/unit/knife_spec.rb +2 -0
- data/spec/unit/lwrp_spec.rb +5 -3
- data/spec/unit/mixin/powershell_type_coercions_spec.rb +7 -6
- data/spec/unit/node/attribute_spec.rb +55 -24
- data/spec/unit/node/immutable_collections_spec.rb +28 -14
- data/spec/unit/node/vivid_mash_spec.rb +27 -10
- data/spec/unit/node_map_spec.rb +34 -0
- data/spec/unit/property_spec.rb +13 -13
- data/spec/unit/provider/group/dscl_spec.rb +14 -5
- data/spec/unit/provider/ifconfig_spec.rb +10 -3
- data/spec/unit/provider/remote_file/http_spec.rb +23 -19
- data/spec/unit/provider/service/solaris_smf_service_spec.rb +6 -5
- data/spec/unit/provider/user/dscl_spec.rb +26 -0
- data/spec/unit/provider/windows_task_spec.rb +148 -4
- data/spec/unit/provider_spec.rb +1 -1
- data/spec/unit/resource/apt_package_spec.rb +1 -1
- data/spec/unit/resource/bash_spec.rb +8 -10
- data/spec/unit/resource/batch_spec.rb +1 -1
- data/spec/unit/resource/cab_package_spec.rb +19 -1
- data/spec/unit/resource/chef_gem_spec.rb +3 -3
- data/spec/unit/resource/chocolatey_package_spec.rb +10 -10
- data/spec/unit/resource/conditional_spec.rb +2 -2
- data/spec/unit/resource/cookbook_file_spec.rb +24 -30
- data/spec/unit/resource/cron_spec.rb +79 -82
- data/spec/unit/resource/csh_spec.rb +8 -10
- data/spec/unit/resource/deploy_spec.rb +1 -1
- data/spec/unit/resource/directory_spec.rb +28 -31
- data/spec/unit/resource/dnf_package_spec.rb +9 -9
- data/spec/unit/resource/env_spec.rb +7 -7
- data/spec/unit/resource/erl_call_spec.rb +9 -9
- data/spec/unit/resource/execute_spec.rb +6 -6
- data/spec/unit/resource/file/verification_spec.rb +18 -4
- data/spec/unit/resource/file_spec.rb +53 -56
- data/spec/unit/resource/freebsd_package_spec.rb +7 -7
- data/spec/unit/resource/gem_package_spec.rb +1 -1
- data/spec/unit/resource/git_spec.rb +7 -9
- data/spec/unit/resource/group_spec.rb +60 -70
- data/spec/unit/resource/http_request_spec.rb +16 -19
- data/spec/unit/resource/ifconfig_spec.rb +3 -3
- data/spec/unit/resource/ips_package_spec.rb +3 -5
- data/spec/unit/resource/ksh_spec.rb +8 -10
- data/spec/unit/resource/launchd_spec.rb +17 -10
- data/spec/unit/resource/link_spec.rb +53 -53
- data/spec/unit/resource/log_spec.rb +24 -28
- data/spec/unit/resource/mdadm_spec.rb +42 -44
- data/spec/unit/resource/mount_spec.rb +97 -99
- data/spec/unit/resource/msu_package_spec.rb +14 -8
- data/spec/unit/resource/ohai_spec.rb +15 -17
- data/spec/unit/resource/openbsd_package_spec.rb +3 -3
- data/spec/unit/resource/osx_profile_spec.rb +7 -7
- data/spec/unit/resource/package_spec.rb +36 -40
- data/spec/unit/resource/perl_spec.rb +8 -11
- data/spec/unit/resource/portage_package_spec.rb +8 -10
- data/spec/unit/resource/powershell_package_spec.rb +9 -9
- data/spec/unit/resource/python_spec.rb +8 -11
- data/spec/unit/resource/reboot_spec.rb +50 -0
- data/spec/unit/resource/registry_key_spec.rb +84 -98
- data/spec/unit/resource/remote_directory_spec.rb +40 -42
- data/spec/unit/resource/remote_file_spec.rb +78 -80
- data/spec/unit/resource/route_spec.rb +42 -44
- data/spec/unit/resource/rpm_package_spec.rb +5 -7
- data/spec/unit/resource/ruby_block_spec.rb +14 -16
- data/spec/unit/resource/ruby_spec.rb +8 -12
- data/spec/unit/resource/scm_spec.rb +66 -69
- data/spec/unit/resource/script_spec.rb +1 -1
- data/spec/unit/resource/service_spec.rb +80 -83
- data/spec/unit/resource/smartos_package_spec.rb +5 -0
- data/spec/unit/resource/solaris_package_spec.rb +3 -5
- data/spec/unit/resource/subversion_spec.rb +18 -16
- data/spec/unit/resource/systemd_unit_spec.rb +50 -54
- data/spec/unit/resource/template_spec.rb +56 -61
- data/spec/unit/resource/user_spec.rb +47 -53
- data/spec/unit/resource/windows_package_spec.rb +1 -1
- data/spec/unit/resource/windows_path_spec.rb +11 -8
- data/spec/unit/resource/windows_task_spec.rb +129 -33
- data/spec/unit/resource/yum_package_spec.rb +1 -1
- data/spec/unit/resource/yum_repository_spec.rb +61 -8
- data/spec/unit/resource/zypper_repository_spec.rb +17 -18
- data/spec/unit/util/selinux_spec.rb +3 -6
- data/tasks/dependencies.rb +0 -5
- data/tasks/rspec.rb +1 -1
- metadata +7 -19
- data/acceptance/.DS_Store +0 -0
- data/acceptance/.bundle/config +0 -2
- data/acceptance/top-cookbooks/.kitchen.docker.yml +0 -13
- data/acceptance/top-cookbooks/.kitchen.git.yml +0 -11
- data/distro/.DS_Store +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/chef/.DS_Store +0 -0
- data/lib/chef/knife/.DS_Store +0 -0
- data/lib/chef/mixin/.DS_Store +0 -0
- data/spec/.DS_Store +0 -0
- data/spec/functional/.DS_Store +0 -0
- data/spec/support/.DS_Store +0 -0
- data/spec/unit/.DS_Store +0 -0
- data/tasks/.DS_Store +0 -0
@@ -20,13 +20,18 @@ require "spec_helper"
|
|
20
20
|
require "chef/node/immutable_collections"
|
21
21
|
|
22
22
|
describe Chef::Node::ImmutableMash do
|
23
|
+
|
23
24
|
before do
|
24
|
-
@data_in = { "
|
25
|
-
"
|
26
|
-
|
27
|
-
|
25
|
+
@data_in = { "key" =>
|
26
|
+
{ "top" => { "second_level" => "some value" },
|
27
|
+
"top_level_2" => %w{array of values},
|
28
|
+
"top_level_3" => [{ "hash_array" => 1, "hash_array_b" => 2 }],
|
29
|
+
"top_level_4" => { "level2" => { "key" => "value" } },
|
30
|
+
},
|
28
31
|
}
|
29
|
-
@
|
32
|
+
@node = Chef::Node.new()
|
33
|
+
@node.attributes.default = @data_in
|
34
|
+
@immutable_mash = @node["key"]
|
30
35
|
end
|
31
36
|
|
32
37
|
it "element references like regular hash" do
|
@@ -57,9 +62,9 @@ describe Chef::Node::ImmutableMash do
|
|
57
62
|
# we only ever absorb VividMashes from other precedence levels, which already have
|
58
63
|
# been coerced to only have string keys, so we do not need to do that work twice (performance).
|
59
64
|
it "does not call convert_value like Mash/VividMash" do
|
60
|
-
@
|
61
|
-
expect(@
|
62
|
-
expect(@
|
65
|
+
@node.attributes.default = { test: "foo", "test2" => "bar" }
|
66
|
+
expect(@node[:test]).to eql("foo")
|
67
|
+
expect(@node["test2"]).to eql("bar")
|
63
68
|
end
|
64
69
|
|
65
70
|
describe "to_hash" do
|
@@ -80,7 +85,7 @@ describe Chef::Node::ImmutableMash do
|
|
80
85
|
end
|
81
86
|
|
82
87
|
it "should create a mash with the same content" do
|
83
|
-
expect(@copy).to
|
88
|
+
expect(@copy).to eql(@immutable_mash)
|
84
89
|
end
|
85
90
|
|
86
91
|
it "should allow mutation" do
|
@@ -175,9 +180,11 @@ end
|
|
175
180
|
describe Chef::Node::ImmutableArray do
|
176
181
|
|
177
182
|
before do
|
178
|
-
@
|
179
|
-
|
180
|
-
@
|
183
|
+
@node = Chef::Node.new()
|
184
|
+
@node.attributes.default = { "key" => ["level1", %w{foo bar baz} + Array(1..3) + [nil, true, false, [ "el", 0, nil ] ], { "m" => "m" }] }
|
185
|
+
@immutable_array = @node["key"][1]
|
186
|
+
@immutable_mash = @node["key"][2]
|
187
|
+
@immutable_nested_array = @node["key"]
|
181
188
|
end
|
182
189
|
|
183
190
|
##
|
@@ -249,7 +256,7 @@ describe Chef::Node::ImmutableArray do
|
|
249
256
|
end
|
250
257
|
|
251
258
|
it "should create an array with the same content" do
|
252
|
-
expect(@
|
259
|
+
expect(@immutable_nested_array).to eq(@copy)
|
253
260
|
end
|
254
261
|
|
255
262
|
it "should allow mutation" do
|
@@ -301,7 +308,7 @@ describe Chef::Node::ImmutableArray do
|
|
301
308
|
end
|
302
309
|
|
303
310
|
it "should create an array with the same content" do
|
304
|
-
expect(@
|
311
|
+
expect(@immutable_nested_array).to eq(@copy)
|
305
312
|
end
|
306
313
|
|
307
314
|
it "should allow mutation" do
|
@@ -314,4 +321,11 @@ describe Chef::Node::ImmutableArray do
|
|
314
321
|
expect(@immutable_array[1, 2]).to eql(%w{bar baz})
|
315
322
|
end
|
316
323
|
end
|
324
|
+
|
325
|
+
describe "uniq" do
|
326
|
+
it "works" do
|
327
|
+
@node.attributes.default = { "key" => %w{foo bar foo baz bar} }
|
328
|
+
expect(@node["key"].uniq).to eql(%w{foo bar baz})
|
329
|
+
end
|
330
|
+
end
|
317
331
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
#
|
2
|
-
# Copyright:: Copyright 2016, Chef Software Inc.
|
2
|
+
# Copyright:: Copyright 2016-2017, Chef Software Inc.
|
3
3
|
# License:: Apache License, Version 2.0
|
4
4
|
#
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -60,7 +60,7 @@ describe Chef::Node::VividMash do
|
|
60
60
|
end
|
61
61
|
|
62
62
|
it "deep converts values through arrays" do
|
63
|
-
expect(root).to receive(:reset_cache).with(
|
63
|
+
expect(root).to receive(:reset_cache).with(no_args)
|
64
64
|
vivid["foo"] = [ { :bar => true } ]
|
65
65
|
expect(vivid["foo"].class).to eql(Chef::Node::AttrArray)
|
66
66
|
expect(vivid["foo"][0].class).to eql(Chef::Node::VividMash)
|
@@ -68,7 +68,7 @@ describe Chef::Node::VividMash do
|
|
68
68
|
end
|
69
69
|
|
70
70
|
it "deep converts values through nested arrays" do
|
71
|
-
expect(root).to receive(:reset_cache).with(
|
71
|
+
expect(root).to receive(:reset_cache).with(no_args)
|
72
72
|
vivid["foo"] = [ [ { :bar => true } ] ]
|
73
73
|
expect(vivid["foo"].class).to eql(Chef::Node::AttrArray)
|
74
74
|
expect(vivid["foo"][0].class).to eql(Chef::Node::AttrArray)
|
@@ -77,7 +77,7 @@ describe Chef::Node::VividMash do
|
|
77
77
|
end
|
78
78
|
|
79
79
|
it "deep converts values through hashes" do
|
80
|
-
expect(root).to receive(:reset_cache).with(
|
80
|
+
expect(root).to receive(:reset_cache).with(no_args)
|
81
81
|
vivid["foo"] = { baz: { :bar => true } }
|
82
82
|
expect(vivid["foo"]).to be_an_instance_of(Chef::Node::VividMash)
|
83
83
|
expect(vivid["foo"]["baz"]).to be_an_instance_of(Chef::Node::VividMash)
|
@@ -184,42 +184,55 @@ describe Chef::Node::VividMash do
|
|
184
184
|
|
185
185
|
it "should deeply autovivify" do
|
186
186
|
expect(root).to receive(:reset_cache).at_least(:once).with("one")
|
187
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five")
|
188
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five", "six")
|
189
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five", "six", "seven")
|
190
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five", "six", "seven", "eight")
|
187
191
|
vivid.write("one", "five", "six", "seven", "eight", "nine", "ten")
|
188
192
|
expect(vivid["one"]["five"]["six"]["seven"]["eight"]["nine"]).to eql("ten")
|
189
193
|
end
|
190
194
|
|
191
195
|
it "should raise an exception if you overwrite an array with a hash" do
|
196
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
192
197
|
expect(root).to receive(:reset_cache).at_least(:once).with("array")
|
193
198
|
vivid.write("array", "five", "six")
|
194
199
|
expect(vivid).to eql({ "one" => { "two" => { "three" => "four" } }, "array" => { "five" => "six" }, "nil" => nil })
|
195
200
|
end
|
196
201
|
|
197
202
|
it "should raise an exception if you traverse through an array with a hash" do
|
203
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
198
204
|
expect(root).to receive(:reset_cache).at_least(:once).with("array")
|
205
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("array", "five")
|
199
206
|
vivid.write("array", "five", "six", "seven")
|
200
207
|
expect(vivid).to eql({ "one" => { "two" => { "three" => "four" } }, "array" => { "five" => { "six" => "seven" } }, "nil" => nil })
|
201
208
|
end
|
202
209
|
|
203
210
|
it "should raise an exception if you overwrite a string with a hash" do
|
204
|
-
expect(root).to receive(:reset_cache).at_least(:once).with("one")
|
211
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "two")
|
212
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "two", "three")
|
205
213
|
vivid.write("one", "two", "three", "four", "five")
|
206
214
|
expect(vivid).to eql({ "one" => { "two" => { "three" => { "four" => "five" } } }, "array" => [ 0, 1, 2 ], "nil" => nil })
|
207
215
|
end
|
208
216
|
|
209
217
|
it "should raise an exception if you traverse through a string with a hash" do
|
210
|
-
expect(root).to receive(:reset_cache).at_least(:once).with("one")
|
218
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "two")
|
219
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "two", "three")
|
220
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "two", "three", "four")
|
211
221
|
vivid.write("one", "two", "three", "four", "five", "six")
|
212
222
|
expect(vivid).to eql({ "one" => { "two" => { "three" => { "four" => { "five" => "six" } } } }, "array" => [ 0, 1, 2 ], "nil" => nil })
|
213
223
|
end
|
214
224
|
|
215
225
|
it "should raise an exception if you overwrite a nil with a hash" do
|
226
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
216
227
|
expect(root).to receive(:reset_cache).at_least(:once).with("nil")
|
217
228
|
vivid.write("nil", "one", "two")
|
218
229
|
expect(vivid).to eql({ "one" => { "two" => { "three" => "four" } }, "array" => [ 0, 1, 2 ], "nil" => { "one" => "two" } })
|
219
230
|
end
|
220
231
|
|
221
232
|
it "should raise an exception if you traverse through a nil with a hash" do
|
233
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
222
234
|
expect(root).to receive(:reset_cache).at_least(:once).with("nil")
|
235
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("nil", "one")
|
223
236
|
vivid.write("nil", "one", "two", "three")
|
224
237
|
expect(vivid).to eql({ "one" => { "two" => { "three" => "four" } }, "array" => [ 0, 1, 2 ], "nil" => { "one" => { "two" => "three" } } })
|
225
238
|
end
|
@@ -240,6 +253,10 @@ describe Chef::Node::VividMash do
|
|
240
253
|
|
241
254
|
it "should deeply autovivify" do
|
242
255
|
expect(root).to receive(:reset_cache).at_least(:once).with("one")
|
256
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five")
|
257
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five", "six")
|
258
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five", "six", "seven")
|
259
|
+
expect(root).to receive(:reset_cache).at_least(:once).with("one", "five", "six", "seven", "eight")
|
243
260
|
vivid.write!("one", "five", "six", "seven", "eight", "nine", "ten")
|
244
261
|
expect(vivid["one"]["five"]["six"]["seven"]["eight"]["nine"]).to eql("ten")
|
245
262
|
end
|
@@ -295,7 +312,7 @@ describe Chef::Node::VividMash do
|
|
295
312
|
end
|
296
313
|
|
297
314
|
it "should unlink hashes" do
|
298
|
-
expect(root).to receive(:reset_cache).at_least(:once).with(
|
315
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
299
316
|
expect( vivid.unlink("one") ).to eql({ "two" => { "three" => "four" } })
|
300
317
|
expect(vivid).to eql({ "array" => [ 0, 1, 2 ], "nil" => nil })
|
301
318
|
end
|
@@ -307,7 +324,7 @@ describe Chef::Node::VividMash do
|
|
307
324
|
end
|
308
325
|
|
309
326
|
it "should unlink nil" do
|
310
|
-
expect(root).to receive(:reset_cache).at_least(:once).with(
|
327
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
311
328
|
expect(vivid.unlink("nil")).to eql(nil)
|
312
329
|
expect(vivid).to eql({ "one" => { "two" => { "three" => "four" } }, "array" => [ 0, 1, 2 ] })
|
313
330
|
end
|
@@ -327,7 +344,7 @@ describe Chef::Node::VividMash do
|
|
327
344
|
end
|
328
345
|
|
329
346
|
it "should unlink! hashes" do
|
330
|
-
expect(root).to receive(:reset_cache).at_least(:once).with(
|
347
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
331
348
|
expect( vivid.unlink!("one") ).to eql({ "two" => { "three" => "four" } })
|
332
349
|
expect(vivid).to eql({ "array" => [ 0, 1, 2 ], "nil" => nil })
|
333
350
|
end
|
@@ -339,7 +356,7 @@ describe Chef::Node::VividMash do
|
|
339
356
|
end
|
340
357
|
|
341
358
|
it "should unlink! nil" do
|
342
|
-
expect(root).to receive(:reset_cache).at_least(:once).with(
|
359
|
+
expect(root).to receive(:reset_cache).at_least(:once).with(no_args)
|
343
360
|
expect(vivid.unlink!("nil")).to eql(nil)
|
344
361
|
expect(vivid).to eql({ "one" => { "two" => { "three" => "four" } }, "array" => [ 0, 1, 2 ] })
|
345
362
|
end
|
data/spec/unit/node_map_spec.rb
CHANGED
@@ -101,6 +101,40 @@ describe Chef::NodeMap do
|
|
101
101
|
end
|
102
102
|
end
|
103
103
|
|
104
|
+
describe "platform version checks" do
|
105
|
+
before do
|
106
|
+
node_map.set(:thing, :foo, platform_family: "rhel", platform_version: ">= 7")
|
107
|
+
end
|
108
|
+
|
109
|
+
it "handles non-x.y.z platform versions without throwing an exception" do
|
110
|
+
allow(node).to receive(:[]).with(:platform_family).and_return("rhel")
|
111
|
+
allow(node).to receive(:[]).with(:platform_version).and_return("7.19.2.2F")
|
112
|
+
expect(node_map.get(node, :thing)).to eql(:foo)
|
113
|
+
end
|
114
|
+
|
115
|
+
it "handles non-x.y.z platform versions without throwing an exception when the match fails" do
|
116
|
+
allow(node).to receive(:[]).with(:platform_family).and_return("rhel")
|
117
|
+
allow(node).to receive(:[]).with(:platform_version).and_return("4.19.2.2F")
|
118
|
+
expect(node_map.get(node, :thing)).to eql(nil)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
describe "ordering classes" do
|
123
|
+
class Foo; end
|
124
|
+
class Bar; end
|
125
|
+
it "orders them alphabetically when they're set in the reverse order" do
|
126
|
+
node_map.set(:thing, Foo)
|
127
|
+
node_map.set(:thing, Bar)
|
128
|
+
expect(node_map.get(node, :thing)).to eql(Bar)
|
129
|
+
end
|
130
|
+
|
131
|
+
it "orders them alphabetically when they're set in alphabetic order" do
|
132
|
+
node_map.set(:thing, Bar)
|
133
|
+
node_map.set(:thing, Foo)
|
134
|
+
expect(node_map.get(node, :thing)).to eql(Bar)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
104
138
|
describe "with a block doing platform_version checks" do
|
105
139
|
before do
|
106
140
|
node_map.set(:thing, :foo, platform_family: "rhel") do |node|
|
data/spec/unit/property_spec.rb
CHANGED
@@ -93,7 +93,7 @@ describe "Chef::Resource.property" do
|
|
93
93
|
expect(resource.bare_property).to eq 20
|
94
94
|
end
|
95
95
|
it "can be set with =" do
|
96
|
-
expect(resource.bare_property 10).to eq 10
|
96
|
+
expect(resource.bare_property = 10).to eq 10
|
97
97
|
expect(resource.bare_property).to eq 10
|
98
98
|
end
|
99
99
|
it "can be set to nil with =" do
|
@@ -1037,20 +1037,20 @@ describe "Chef::Resource.property" do
|
|
1037
1037
|
|
1038
1038
|
context "default ordering deprecation warnings" do
|
1039
1039
|
it "emits an error for property :x, default: 10, #{name}: true" do
|
1040
|
-
expect { resource_class.property :x, :default => 10, name.to_sym => true }.to raise_error
|
1041
|
-
/
|
1040
|
+
expect { resource_class.property :x, :default => 10, name.to_sym => true }.to raise_error ArgumentError,
|
1041
|
+
/A property cannot be both a name_property\/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)/
|
1042
1042
|
end
|
1043
1043
|
it "emits an error for property :x, default: nil, #{name}: true" do
|
1044
|
-
expect { resource_class.property :x, :default => nil, name.to_sym => true }.to raise_error
|
1045
|
-
/
|
1044
|
+
expect { resource_class.property :x, :default => nil, name.to_sym => true }.to raise_error ArgumentError,
|
1045
|
+
/A property cannot be both a name_property\/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)/
|
1046
1046
|
end
|
1047
1047
|
it "emits an error for property :x, #{name}: true, default: 10" do
|
1048
|
-
expect { resource_class.property :x, name.to_sym => true, :default => 10 }.to raise_error
|
1049
|
-
/
|
1048
|
+
expect { resource_class.property :x, name.to_sym => true, :default => 10 }.to raise_error ArgumentError,
|
1049
|
+
/A property cannot be both a name_property\/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)/
|
1050
1050
|
end
|
1051
1051
|
it "emits an error for property :x, #{name}: true, default: nil" do
|
1052
|
-
expect { resource_class.property :x, name.to_sym => true, :default => nil }.to raise_error
|
1053
|
-
/
|
1052
|
+
expect { resource_class.property :x, name.to_sym => true, :default => nil }.to raise_error ArgumentError,
|
1053
|
+
/A property cannot be both a name_property\/name_attribute and have a default value. Use one or the other on property x of resource chef_resource_property_spec_(\d+)/
|
1054
1054
|
end
|
1055
1055
|
end
|
1056
1056
|
end
|
@@ -1058,13 +1058,13 @@ describe "Chef::Resource.property" do
|
|
1058
1058
|
|
1059
1059
|
it "raises an error if both name_property and name_attribute are specified" do
|
1060
1060
|
expect { resource_class.property :x, :name_property => false, :name_attribute => 1 }.to raise_error ArgumentError,
|
1061
|
-
/
|
1061
|
+
/name_attribute and name_property are functionally identical and both cannot be specified on a property at once. Use just one on property x of resource chef_resource_property_spec_(\d+)./
|
1062
1062
|
expect { resource_class.property :x, :name_property => false, :name_attribute => nil }.to raise_error ArgumentError,
|
1063
|
-
/
|
1063
|
+
/name_attribute and name_property are functionally identical and both cannot be specified on a property at once. Use just one on property x of resource chef_resource_property_spec_(\d+)./
|
1064
1064
|
expect { resource_class.property :x, :name_property => false, :name_attribute => false }.to raise_error ArgumentError,
|
1065
|
-
/
|
1065
|
+
/name_attribute and name_property are functionally identical and both cannot be specified on a property at once. Use just one on property x of resource chef_resource_property_spec_(\d+)./
|
1066
1066
|
expect { resource_class.property :x, :name_property => true, :name_attribute => true }.to raise_error ArgumentError,
|
1067
|
-
/
|
1067
|
+
/name_attribute and name_property are functionally identical and both cannot be specified on a property at once. Use just one on property x of resource chef_resource_property_spec_(\d+)./
|
1068
1068
|
end
|
1069
1069
|
|
1070
1070
|
context "property_type" do
|
@@ -117,11 +117,16 @@ describe Chef::Provider::Group::Dscl do
|
|
117
117
|
before do
|
118
118
|
@node = Chef::Node.new
|
119
119
|
@provider = Chef::Provider::Group::Dscl.new(@node, @new_resource)
|
120
|
-
allow(@provider).to receive(:safe_dscl).and_return(
|
120
|
+
allow(@provider).to receive(:safe_dscl).and_return(<<-eos
|
121
|
+
someprogram somethingElse:gid = (
|
122
|
+
500
|
123
|
+
)
|
124
|
+
eos
|
125
|
+
)
|
121
126
|
end
|
122
127
|
|
123
|
-
it "should run safe_dscl with
|
124
|
-
expect(@provider).to receive(:safe_dscl).with(*"
|
128
|
+
it "should run safe_dscl with search /Groups gid" do
|
129
|
+
expect(@provider).to receive(:safe_dscl).with(*"search /Groups PrimaryGroupID 500".split(" "))
|
125
130
|
@provider.gid_used?(500)
|
126
131
|
end
|
127
132
|
|
@@ -130,7 +135,11 @@ describe Chef::Provider::Group::Dscl do
|
|
130
135
|
end
|
131
136
|
|
132
137
|
it "should return false for an unused gid number" do
|
133
|
-
expect(@provider.gid_used?(
|
138
|
+
expect(@provider.gid_used?(0)).to be_falsey
|
139
|
+
expect(@provider.gid_used?(50)).to be_falsey
|
140
|
+
expect(@provider.gid_used?(5000)).to be_falsey
|
141
|
+
expect(@provider.gid_used?(1500)).to be_falsey
|
142
|
+
expect(@provider.gid_used?(18)).to be_falsey
|
134
143
|
end
|
135
144
|
|
136
145
|
it "should return false if not given any valid gid number" do
|
@@ -171,7 +180,7 @@ describe Chef::Provider::Group::Dscl do
|
|
171
180
|
describe "with a valid gid number which is not already in use" do
|
172
181
|
it "should run safe_dscl with create /Groups/group PrimaryGroupID gid" do
|
173
182
|
allow(@provider).to receive(:get_free_gid).and_return(50)
|
174
|
-
expect(@provider).to receive(:safe_dscl).with(*"
|
183
|
+
expect(@provider).to receive(:safe_dscl).with(*"search /Groups PrimaryGroupID 50".split(" ")).and_return("")
|
175
184
|
expect(@provider).to receive(:safe_dscl).with("create", "/Groups/aj", "PrimaryGroupID", 50).and_return(true)
|
176
185
|
@provider.set_gid
|
177
186
|
end
|
@@ -38,12 +38,19 @@ describe Chef::Provider::Ifconfig do
|
|
38
38
|
status = double("Status", exitstatus: 0)
|
39
39
|
@provider.instance_variable_set("@status", status)
|
40
40
|
@provider.current_resource = @current_resource
|
41
|
-
|
42
41
|
end
|
42
|
+
|
43
43
|
describe Chef::Provider::Ifconfig, "load_current_resource" do
|
44
|
+
let(:net_tools_version) { StringIO.new <<-EOS }
|
45
|
+
net-tools 1.60
|
46
|
+
ifconfig 1.42 (2001-04-13)
|
47
|
+
EOS
|
48
|
+
|
44
49
|
before do
|
45
|
-
|
46
|
-
allow(@provider).to receive(:shell_out).and_return(
|
50
|
+
ifconfig = double(stdout: "", exitstatus: 1)
|
51
|
+
allow(@provider).to receive(:shell_out).and_return(ifconfig)
|
52
|
+
ifconfig_version = double(stdout: "", stderr: net_tools_version, exitstatus: 4)
|
53
|
+
allow(@provider).to receive(:shell_out).with("ifconfig --version").and_return(ifconfig_version)
|
47
54
|
@provider.load_current_resource
|
48
55
|
end
|
49
56
|
it "should track state of ifconfig failure" do
|
@@ -157,9 +157,9 @@ describe Chef::Provider::RemoteFile::HTTP do
|
|
157
157
|
let(:expected_http_opts) { {} }
|
158
158
|
let(:expected_http_args) { [uri, expected_http_opts] }
|
159
159
|
|
160
|
-
let(:tempfile_path) {
|
160
|
+
let(:tempfile_path) { tempfile.path }
|
161
161
|
|
162
|
-
let(:tempfile) {
|
162
|
+
let(:tempfile) { Tempfile.open("muhtempfile") }
|
163
163
|
|
164
164
|
let(:last_response) { {} }
|
165
165
|
|
@@ -171,7 +171,7 @@ describe Chef::Provider::RemoteFile::HTTP do
|
|
171
171
|
|
172
172
|
let(:rest) do
|
173
173
|
rest = double(Chef::HTTP::Simple)
|
174
|
-
|
174
|
+
allow_any_instance_of(Chef::FileContentManagement::Tempfile).to receive(:tempfile).and_return(tempfile)
|
175
175
|
allow(rest).to receive(:last_response).and_return(last_response)
|
176
176
|
rest
|
177
177
|
end
|
@@ -189,17 +189,35 @@ describe Chef::Provider::RemoteFile::HTTP do
|
|
189
189
|
|
190
190
|
it "should return a nil tempfile for a 304 HTTPNotModifed" do
|
191
191
|
# Streaming request returns nil for 304 errors
|
192
|
-
|
192
|
+
expect(rest).to receive(:streaming_request).with(uri, {}, tempfile).and_return(nil)
|
193
193
|
expect(fetcher.fetch).to be_nil
|
194
194
|
end
|
195
195
|
|
196
196
|
end
|
197
197
|
|
198
|
-
|
198
|
+
context "with progress reports" do
|
199
|
+
let(:fetched_content_checksum) { "e2a8938cc31754f6c067b35aab1d0d4864272e9bf8504536ef3e79ebf8432305" }
|
200
|
+
|
201
|
+
before do
|
202
|
+
expect(cache_control_data).to receive(:save)
|
203
|
+
expect(Chef::Digester).to receive(:checksum_for_file).with(tempfile_path).and_return(fetched_content_checksum)
|
204
|
+
Chef::Config[:show_download_progress] = true
|
205
|
+
end
|
206
|
+
|
207
|
+
it "should yield its progress" do
|
208
|
+
expect(rest).to receive(:streaming_request_with_progress).with(uri, {}, tempfile).and_yield(50, 100).and_yield(70, 100).and_return(tempfile)
|
209
|
+
expect(event_dispatcher).to receive(:formatter?).and_return(true)
|
210
|
+
expect(event_dispatcher).to receive(:resource_update_progress).with(new_resource, 50, 100, 10).ordered
|
211
|
+
expect(event_dispatcher).to receive(:resource_update_progress).with(new_resource, 70, 100, 10).ordered
|
212
|
+
fetcher.fetch
|
213
|
+
end
|
214
|
+
end
|
199
215
|
|
216
|
+
describe "and the request returns new content" do
|
200
217
|
let(:fetched_content_checksum) { "e2a8938cc31754f6c067b35aab1d0d4864272e9bf8504536ef3e79ebf8432305" }
|
201
218
|
|
202
219
|
before do
|
220
|
+
expect(rest).to receive(:streaming_request).with(uri, {}, tempfile).and_return(tempfile)
|
203
221
|
expect(cache_control_data).to receive(:save)
|
204
222
|
expect(Chef::Digester).to receive(:checksum_for_file).with(tempfile_path).and_return(fetched_content_checksum)
|
205
223
|
end
|
@@ -212,20 +230,6 @@ describe Chef::Provider::RemoteFile::HTTP do
|
|
212
230
|
expect(cache_control_data.checksum).to eq(fetched_content_checksum)
|
213
231
|
end
|
214
232
|
|
215
|
-
context "with progress reports" do
|
216
|
-
before do
|
217
|
-
Chef::Config[:show_download_progress] = true
|
218
|
-
end
|
219
|
-
|
220
|
-
it "should yield its progress" do
|
221
|
-
allow(rest).to receive(:streaming_request_with_progress).and_yield(50, 100).and_yield(70, 100).and_return(tempfile)
|
222
|
-
expect(event_dispatcher).to receive(:formatter?).and_return(true)
|
223
|
-
expect(event_dispatcher).to receive(:resource_update_progress).with(new_resource, 50, 100, 10).ordered
|
224
|
-
expect(event_dispatcher).to receive(:resource_update_progress).with(new_resource, 70, 100, 10).ordered
|
225
|
-
fetcher.fetch
|
226
|
-
end
|
227
|
-
end
|
228
|
-
|
229
233
|
context "and the response does not contain an etag" do
|
230
234
|
let(:last_response) { { "etag" => nil } }
|
231
235
|
it "does not include an etag in the result" do
|