chef 17.9.18-universal-mingw32 → 17.9.52-universal-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -3
  3. data/README.md +1 -1
  4. data/lib/chef/application/exit_code.rb +7 -21
  5. data/lib/chef/chef_fs/file_system/chef_server/cookbook_file.rb +1 -1
  6. data/lib/chef/chef_fs/file_system/repository/base_file.rb +1 -1
  7. data/lib/chef/chef_fs/file_system/repository/file_system_entry.rb +1 -1
  8. data/lib/chef/compliance/default_attributes.rb +1 -1
  9. data/lib/chef/compliance/input_collection.rb +1 -1
  10. data/lib/chef/compliance/reporter/compliance_enforcer.rb +1 -1
  11. data/lib/chef/compliance/runner.rb +2 -2
  12. data/lib/chef/compliance/waiver_collection.rb +1 -1
  13. data/lib/chef/cookbook/syntax_check.rb +1 -1
  14. data/lib/chef/cookbook_uploader.rb +1 -1
  15. data/lib/chef/cookbook_version.rb +1 -1
  16. data/lib/chef/provider/ifconfig.rb +1 -1
  17. data/lib/chef/provider/package.rb +1 -1
  18. data/lib/chef/provider/user/mac.rb +3 -3
  19. data/lib/chef/resource/archive_file.rb +6 -6
  20. data/lib/chef/resource/habitat/habitat_sup.rb +1 -1
  21. data/lib/chef/resource/habitat/habitat_sup_windows.rb +1 -1
  22. data/lib/chef/resource/homebrew_tap.rb +1 -1
  23. data/lib/chef/resource/inspec_waiver_file_entry.rb +1 -1
  24. data/lib/chef/resource/launchd.rb +2 -2
  25. data/lib/chef/resource/lwrp_base.rb +1 -1
  26. data/lib/chef/resource/remote_file.rb +1 -1
  27. data/lib/chef/resource.rb +3 -2
  28. data/lib/chef/resource_reporter.rb +1 -1
  29. data/lib/chef/run_lock.rb +1 -1
  30. data/lib/chef/secret_fetcher/azure_key_vault.rb +2 -2
  31. data/lib/chef/util/dsc/configuration_generator.rb +1 -1
  32. data/lib/chef/version.rb +1 -1
  33. data/spec/functional/resource/archive_file_spec.rb +3 -2
  34. data/spec/functional/resource/cookbook_file_spec.rb +1 -1
  35. data/spec/functional/resource/dsc_script_spec.rb +2 -2
  36. data/spec/functional/resource/template_spec.rb +1 -1
  37. data/spec/integration/client/client_spec.rb +1 -1
  38. data/spec/spec_helper.rb +3 -5
  39. data/spec/support/platform_helpers.rb +1 -1
  40. data/spec/support/ruby_installer.rb +1 -1
  41. data/spec/support/shared/functional/file_resource.rb +2 -2
  42. data/spec/support/shared/functional/http.rb +9 -9
  43. data/spec/support/shared/unit/provider/useradd_based_user_provider.rb +1 -1
  44. data/spec/unit/compliance/reporter/compliance_enforcer_spec.rb +3 -3
  45. data/spec/unit/dsl/registry_helper_spec.rb +6 -6
  46. data/spec/unit/guard_interpreter/resource_guard_interpreter_spec.rb +1 -1
  47. data/spec/unit/lwrp_spec.rb +2 -2
  48. data/spec/unit/provider/dsc_script_spec.rb +8 -8
  49. data/spec/unit/provider/group/usermod_spec.rb +2 -2
  50. data/spec/unit/provider/ifconfig/aix_spec.rb +14 -14
  51. data/spec/unit/provider/ifconfig/debian_spec.rb +1 -1
  52. data/spec/unit/provider/ifconfig/redhat_spec.rb +1 -1
  53. data/spec/unit/provider/ifconfig_spec.rb +3 -3
  54. data/spec/unit/provider/remote_file/cache_control_data_spec.rb +3 -3
  55. data/spec/unit/provider/service/gentoo_service_spec.rb +2 -2
  56. data/spec/unit/provider/service/upstart_service_spec.rb +3 -3
  57. data/spec/unit/provider/user/solaris_spec.rb +1 -1
  58. data/spec/unit/resource/archive_file_spec.rb +1 -2
  59. data/spec/unit/resource/conditional_spec.rb +4 -4
  60. data/spec/unit/resource_spec.rb +14 -6
  61. metadata +6 -6
@@ -30,7 +30,7 @@ module ChefHTTPShared
30
30
  end
31
31
 
32
32
  def binread(file)
33
- content = File.open(file, "rb", &:read)
33
+ content = File.binread(file)
34
34
  content.force_encoding(Encoding::BINARY) if "".respond_to?(:force_encoding)
35
35
  content
36
36
  end
@@ -51,19 +51,19 @@ module ChefHTTPShared
51
51
  # just a normal file
52
52
  # (expected_content should be uncompressed)
53
53
  @api.get("/nyan_cat.png", 200) do
54
- File.open(nyan_uncompressed_filename, "rb", &:read)
54
+ File.binread(nyan_uncompressed_filename)
55
55
  end
56
56
 
57
57
  # this ends in .gz, we do not uncompress it and drop it on the filesystem as a .gz file (the internet often lies)
58
58
  # (expected_content should be compressed)
59
59
  @api.get("/nyan_cat.png.gz", 200, nil, { "Content-Type" => "application/gzip", "Content-Encoding" => "gzip" } ) do
60
- File.open(nyan_compressed_filename, "rb", &:read)
60
+ File.binread(nyan_compressed_filename)
61
61
  end
62
62
 
63
63
  # this is an uncompressed file that was compressed by some mod_gzip-ish webserver thingy, so we will expand it
64
64
  # (expected_content should be uncompressed)
65
65
  @api.get("/nyan_cat_compressed.png", 200, nil, { "Content-Type" => "application/gzip", "Content-Encoding" => "gzip" } ) do
66
- File.open(nyan_compressed_filename, "rb", &:read)
66
+ File.binread(nyan_compressed_filename)
67
67
  end
68
68
 
69
69
  #
@@ -75,7 +75,7 @@ module ChefHTTPShared
75
75
  {
76
76
  "Content-Length" => nyan_uncompressed_size.to_s,
77
77
  }) do
78
- File.open(nyan_uncompressed_filename, "rb", &:read)
78
+ File.binread(nyan_uncompressed_filename)
79
79
  end
80
80
 
81
81
  # (expected_content should be uncompressed)
@@ -85,7 +85,7 @@ module ChefHTTPShared
85
85
  "Content-Type" => "application/gzip",
86
86
  "Content-Encoding" => "gzip",
87
87
  }) do
88
- File.open(nyan_compressed_filename, "rb", &:read)
88
+ File.binread(nyan_compressed_filename)
89
89
  end
90
90
 
91
91
  #
@@ -97,7 +97,7 @@ module ChefHTTPShared
97
97
  {
98
98
  "Content-Length" => (nyan_uncompressed_size + 1).to_s,
99
99
  }) do
100
- File.open(nyan_uncompressed_filename, "rb", &:read)
100
+ File.binread(nyan_uncompressed_filename)
101
101
  end
102
102
 
103
103
  # (expected_content should be uncompressed)
@@ -107,7 +107,7 @@ module ChefHTTPShared
107
107
  "Content-Type" => "application/gzip",
108
108
  "Content-Encoding" => "gzip",
109
109
  }) do
110
- File.open(nyan_compressed_filename, "rb", &:read)
110
+ File.binread(nyan_compressed_filename)
111
111
  end
112
112
 
113
113
  #
@@ -120,7 +120,7 @@ module ChefHTTPShared
120
120
  "Content-Length" => (nyan_uncompressed_size + 1).to_s,
121
121
  "Transfer-Encoding" => "anything",
122
122
  }) do
123
- File.open(nyan_uncompressed_filename, "rb", &:read)
123
+ File.binread(nyan_uncompressed_filename)
124
124
  end
125
125
 
126
126
  #
@@ -169,7 +169,7 @@ shared_examples_for "a useradd-based user provider" do |supported_useradd_option
169
169
  before do
170
170
  provider.new_resource.system true
171
171
  # there is no public API to set attribute's value to nil
172
- provider.new_resource.instance_variable_set("@home", nil)
172
+ provider.new_resource.instance_variable_set(:@home, nil)
173
173
  end
174
174
 
175
175
  it "should not include -m or -d in the command options" do
@@ -1,8 +1,8 @@
1
1
  require "spec_helper"
2
2
  require "chef/compliance/reporter/compliance_enforcer"
3
3
 
4
- describe Chef::Compliance::Reporter::AuditEnforcer do
5
- let(:reporter) { Chef::Compliance::Reporter::AuditEnforcer.new }
4
+ describe Chef::Compliance::Reporter::ComplianceEnforcer do
5
+ let(:reporter) { Chef::Compliance::Reporter::ComplianceEnforcer.new }
6
6
 
7
7
  it "does not raise error for a successful InSpec report" do
8
8
  report = {
@@ -44,6 +44,6 @@ describe Chef::Compliance::Reporter::AuditEnforcer do
44
44
 
45
45
  expect {
46
46
  reporter.send_report(report)
47
- }.to raise_error(Chef::Compliance::Reporter::AuditEnforcer::ControlFailure, "Audit c2 has failed. Aborting chef-client run.")
47
+ }.to raise_error(Chef::Compliance::Reporter::ComplianceEnforcer::ControlFailure, "Audit c2 has failed. Aborting chef-client run.")
48
48
  end
49
49
  end
@@ -31,22 +31,22 @@ describe Chef::Resource::RegistryKey do
31
31
 
32
32
  context "tests registry dsl" do
33
33
  it "resource can access registry_helper method registry_key_exists" do
34
- expect(@resource.respond_to?("registry_key_exists?")).to eq(true)
34
+ expect(@resource.respond_to?(:registry_key_exists?)).to eq(true)
35
35
  end
36
36
  it "resource can access registry_helper method registry_get_values" do
37
- expect(@resource.respond_to?("registry_get_values")).to eq(true)
37
+ expect(@resource.respond_to?(:registry_get_values)).to eq(true)
38
38
  end
39
39
  it "resource can access registry_helper method registry_has_subkey" do
40
- expect(@resource.respond_to?("registry_has_subkeys?")).to eq(true)
40
+ expect(@resource.respond_to?(:registry_has_subkeys?)).to eq(true)
41
41
  end
42
42
  it "resource can access registry_helper method registry_get_subkeys" do
43
- expect(@resource.respond_to?("registry_get_subkeys")).to eq(true)
43
+ expect(@resource.respond_to?(:registry_get_subkeys)).to eq(true)
44
44
  end
45
45
  it "resource can access registry_helper method registry_value_exists" do
46
- expect(@resource.respond_to?("registry_value_exists?")).to eq(true)
46
+ expect(@resource.respond_to?(:registry_value_exists?)).to eq(true)
47
47
  end
48
48
  it "resource can access registry_helper method data_value_exists" do
49
- expect(@resource.respond_to?("registry_data_exists?")).to eq(true)
49
+ expect(@resource.respond_to?(:registry_data_exists?)).to eq(true)
50
50
  end
51
51
  end
52
52
  end
@@ -94,7 +94,7 @@ describe Chef::GuardInterpreter::ResourceGuardInterpreter do
94
94
 
95
95
  describe "script command opts switch" do
96
96
  let(:guard_interpreter) { Chef::GuardInterpreter::ResourceGuardInterpreter.new(parent_resource, "exit 0", {}) }
97
- let(:resource) { guard_interpreter.instance_variable_get("@resource") }
97
+ let(:resource) { guard_interpreter.instance_variable_get(:@resource) }
98
98
 
99
99
  context "resource is a Script" do
100
100
  context "and guard_interpreter is a :script" do
@@ -54,7 +54,7 @@ describe "LWRP" do
54
54
  end
55
55
 
56
56
  it "should not skip loading a resource when there's a top level symbol of the same name" do
57
- Object.const_set("LwrpFoo", Class.new)
57
+ Object.const_set(:LwrpFoo, Class.new)
58
58
  file = File.expand_path( "lwrp/resources/foo.rb", CHEF_SPEC_DATA)
59
59
  expect(Chef::Log).not_to receive(:info).with(/Skipping/)
60
60
  expect(Chef::Log).not_to receive(:trace).with(/anymore/)
@@ -63,7 +63,7 @@ describe "LWRP" do
63
63
  end
64
64
 
65
65
  it "should not skip loading a provider when there's a top level symbol of the same name" do
66
- Object.const_set("LwrpBuckPasser", Class.new)
66
+ Object.const_set(:LwrpBuckPasser, Class.new)
67
67
  file = File.expand_path( "lwrp/providers/buck_passer.rb", CHEF_SPEC_DATA)
68
68
  expect(Chef::Log).not_to receive(:info).with(/Skipping/)
69
69
  expect(Chef::Log).not_to receive(:trace).with(/anymore/)
@@ -39,21 +39,21 @@ describe Chef::Provider::DscScript do
39
39
  it "describes the resource as converged if there were 0 DSC resources" do
40
40
  allow(provider).to receive(:run_configuration).with(:test).and_return([])
41
41
  provider.load_current_resource
42
- expect(provider.instance_variable_get("@resource_converged")).to be_truthy
42
+ expect(provider.instance_variable_get(:@resource_converged)).to be_truthy
43
43
  end
44
44
 
45
45
  it "describes the resource as not converged if there is 1 DSC resources that is converged" do
46
46
  dsc_resource_info = Chef::Util::DSC::ResourceInfo.new("resource", false, ["nothing will change something"])
47
47
  allow(provider).to receive(:run_configuration).with(:test).and_return([dsc_resource_info])
48
48
  provider.load_current_resource
49
- expect(provider.instance_variable_get("@resource_converged")).to be_truthy
49
+ expect(provider.instance_variable_get(:@resource_converged)).to be_truthy
50
50
  end
51
51
 
52
52
  it "describes the resource as not converged if there is 1 DSC resources that is not converged" do
53
53
  dsc_resource_info = Chef::Util::DSC::ResourceInfo.new("resource", true, ["will change something"])
54
54
  allow(provider).to receive(:run_configuration).with(:test).and_return([dsc_resource_info])
55
55
  provider.load_current_resource
56
- expect(provider.instance_variable_get("@resource_converged")).to be_falsey
56
+ expect(provider.instance_variable_get(:@resource_converged)).to be_falsey
57
57
  end
58
58
 
59
59
  it "describes the resource as not converged if there are any DSC resources that are not converged" do
@@ -62,7 +62,7 @@ describe Chef::Provider::DscScript do
62
62
 
63
63
  allow(provider).to receive(:run_configuration).with(:test).and_return([dsc_resource_info1, dsc_resource_info2])
64
64
  provider.load_current_resource
65
- expect(provider.instance_variable_get("@resource_converged")).to be_falsey
65
+ expect(provider.instance_variable_get(:@resource_converged)).to be_falsey
66
66
  end
67
67
 
68
68
  it "describes the resource as converged if all DSC resources that are converged" do
@@ -71,7 +71,7 @@ describe Chef::Provider::DscScript do
71
71
 
72
72
  allow(provider).to receive(:run_configuration).with(:test).and_return([dsc_resource_info1, dsc_resource_info2])
73
73
  provider.load_current_resource
74
- expect(provider.instance_variable_get("@resource_converged")).to be_truthy
74
+ expect(provider.instance_variable_get(:@resource_converged)).to be_truthy
75
75
  end
76
76
  end
77
77
 
@@ -126,19 +126,19 @@ describe Chef::Provider::DscScript do
126
126
  describe "#generate_description" do
127
127
  it "removes the resource name from the beginning of any log line from the LCM" do
128
128
  dsc_resource_info = Chef::Util::DSC::ResourceInfo.new("resourcename", true, ["resourcename doing something", "lastline"])
129
- provider.instance_variable_set("@dsc_resources_info", [dsc_resource_info])
129
+ provider.instance_variable_set(:@dsc_resources_info, [dsc_resource_info])
130
130
  expect(provider.send(:generate_description)[1]).to match(/converge DSC resource resourcename by doing something/)
131
131
  end
132
132
 
133
133
  it "ignores the last line" do
134
134
  dsc_resource_info = Chef::Util::DSC::ResourceInfo.new("resourcename", true, ["resourcename doing something", "lastline"])
135
- provider.instance_variable_set("@dsc_resources_info", [dsc_resource_info])
135
+ provider.instance_variable_set(:@dsc_resources_info, [dsc_resource_info])
136
136
  expect(provider.send(:generate_description)[1]).not_to match(/lastline/)
137
137
  end
138
138
 
139
139
  it "reports a dsc resource has not been changed if the LCM reported no change was required" do
140
140
  dsc_resource_info = Chef::Util::DSC::ResourceInfo.new("resourcename", false, ["resourcename does nothing", "lastline"])
141
- provider.instance_variable_set("@dsc_resources_info", [dsc_resource_info])
141
+ provider.instance_variable_set(:@dsc_resources_info, [dsc_resource_info])
142
142
  expect(provider.send(:generate_description)[1]).to match(/converge DSC resource resourcename by doing nothing/)
143
143
  end
144
144
  end
@@ -61,7 +61,7 @@ describe Chef::Provider::Group::Usermod do
61
61
  @provider.action = :modify
62
62
  @provider.define_resource_requirements
63
63
  @provider.load_current_resource
64
- @provider.instance_variable_set("@group_exists", true)
64
+ @provider.instance_variable_set(:@group_exists, true)
65
65
  expect { @provider.run_action(@provider.process_resource_requirements) }.to raise_error(Chef::Exceptions::Group, "setting group members directly is not supported by #{@provider}, must set append true in group")
66
66
  end
67
67
 
@@ -69,7 +69,7 @@ describe Chef::Provider::Group::Usermod do
69
69
  @provider.action = :modify
70
70
  @provider.define_resource_requirements
71
71
  @provider.load_current_resource
72
- @provider.instance_variable_set("@group_exists", true)
72
+ @provider.instance_variable_set(:@group_exists, true)
73
73
  @new_resource.append(true)
74
74
  @new_resource.excluded_members(["someone"])
75
75
  expect { @provider.run_action(@provider.process_resource_requirements) }.to raise_error(Chef::Exceptions::Group, "excluded_members is not supported by #{@provider}")
@@ -68,8 +68,8 @@ describe Chef::Provider::Ifconfig::Aix do
68
68
  it "should add an interface if it does not exist" do
69
69
  @new_resource.device "en10"
70
70
  allow(@provider).to receive(:load_current_resource) do
71
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
72
- @provider.instance_variable_set("@current_resource", Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
71
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
72
+ @provider.instance_variable_set(:@current_resource, Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
73
73
  end
74
74
  command = "chdev -l #{@new_resource.device} -a netaddr=#{@new_resource.name}"
75
75
  expect(@provider).to receive(:shell_out_compacted!).with(*command.split(" "))
@@ -82,8 +82,8 @@ describe Chef::Provider::Ifconfig::Aix do
82
82
  @new_resource.device "en0"
83
83
  @new_resource.metric "1"
84
84
  allow(@provider).to receive(:load_current_resource) do
85
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
86
- @provider.instance_variable_set("@current_resource", Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
85
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
86
+ @provider.instance_variable_set(:@current_resource, Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
87
87
  end
88
88
 
89
89
  expect { @provider.run_action(:add) }.to raise_error(Chef::Exceptions::Ifconfig, "interface metric property cannot be set for :add action")
@@ -94,8 +94,8 @@ describe Chef::Provider::Ifconfig::Aix do
94
94
  it "should enable an interface if it does not exist" do
95
95
  @new_resource.device "en10"
96
96
  allow(@provider).to receive(:load_current_resource) do
97
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
98
- @provider.instance_variable_set("@current_resource", Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
97
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
98
+ @provider.instance_variable_set(:@current_resource, Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
99
99
  end
100
100
  command = "ifconfig #{@new_resource.device} #{@new_resource.name}"
101
101
  expect(@provider).to receive(:shell_out_compacted!).with(*command.split(" "))
@@ -110,8 +110,8 @@ describe Chef::Provider::Ifconfig::Aix do
110
110
  it "should not disable an interface if it does not exist" do
111
111
  @new_resource.device "en10"
112
112
  allow(@provider).to receive(:load_current_resource) do
113
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
114
- @provider.instance_variable_set("@current_resource", Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
113
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
114
+ @provider.instance_variable_set(:@current_resource, Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
115
115
  end
116
116
 
117
117
  expect(@provider).not_to receive(:shell_out_compacted!)
@@ -124,10 +124,10 @@ describe Chef::Provider::Ifconfig::Aix do
124
124
  before do
125
125
  @new_resource.device "en10"
126
126
  allow(@provider).to receive(:load_current_resource) do
127
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
127
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
128
128
  current_resource = Chef::Resource::Ifconfig.new("10.0.0.1", @run_context)
129
129
  current_resource.device @new_resource.device
130
- @provider.instance_variable_set("@current_resource", current_resource)
130
+ @provider.instance_variable_set(:@current_resource, current_resource)
131
131
  end
132
132
  end
133
133
 
@@ -147,8 +147,8 @@ describe Chef::Provider::Ifconfig::Aix do
147
147
  it "should not delete an interface if it does not exist" do
148
148
  @new_resource.device "en10"
149
149
  allow(@provider).to receive(:load_current_resource) do
150
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
151
- @provider.instance_variable_set("@current_resource", Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
150
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
151
+ @provider.instance_variable_set(:@current_resource, Chef::Resource::Ifconfig.new("10.0.0.1", @run_context))
152
152
  end
153
153
 
154
154
  expect(@provider).not_to receive(:shell_out_compacted!)
@@ -161,10 +161,10 @@ describe Chef::Provider::Ifconfig::Aix do
161
161
  before do
162
162
  @new_resource.device "en10"
163
163
  allow(@provider).to receive(:load_current_resource) do
164
- @provider.instance_variable_set("@status", double("Status", exitstatus: 0))
164
+ @provider.instance_variable_set(:@status, double("Status", exitstatus: 0))
165
165
  current_resource = Chef::Resource::Ifconfig.new("10.0.0.1", @run_context)
166
166
  current_resource.device @new_resource.device
167
- @provider.instance_variable_set("@current_resource", current_resource)
167
+ @provider.instance_variable_set(:@current_resource, current_resource)
168
168
  end
169
169
  end
170
170
 
@@ -42,7 +42,7 @@ describe Chef::Provider::Ifconfig::Debian do
42
42
  let(:provider) do
43
43
  status = double("Status", exitstatus: 0)
44
44
  provider = Chef::Provider::Ifconfig::Debian.new(new_resource, run_context)
45
- provider.instance_variable_set("@status", status)
45
+ provider.instance_variable_set(:@status, status)
46
46
  provider.current_resource = current_resource
47
47
  allow(provider).to receive(:load_current_resource)
48
48
  allow(provider).to receive(:shell_out!)
@@ -40,7 +40,7 @@ describe Chef::Provider::Ifconfig::Redhat do
40
40
  @current_resource = Chef::Resource::Ifconfig.new("10.0.0.1", @run_context)
41
41
 
42
42
  status = double("Status", exitstatus: 0)
43
- @provider.instance_variable_set("@status", status)
43
+ @provider.instance_variable_set(:@status, status)
44
44
  @provider.current_resource = @current_resource
45
45
 
46
46
  config_filename = "/etc/sysconfig/network-scripts/ifcfg-#{@new_resource.device}"
@@ -35,7 +35,7 @@ describe Chef::Provider::Ifconfig do
35
35
  @current_resource = Chef::Resource::Ifconfig.new("10.0.0.1", @run_context)
36
36
 
37
37
  status = double("Status", exitstatus: 0)
38
- @provider.instance_variable_set("@status", status)
38
+ @provider.instance_variable_set(:@status, status)
39
39
  @provider.current_resource = @current_resource
40
40
  end
41
41
 
@@ -58,7 +58,7 @@ describe Chef::Provider::Ifconfig do
58
58
  @provider.load_current_resource
59
59
  end
60
60
  it "should track state of ifconfig failure" do
61
- expect(@provider.instance_variable_get("@status").exitstatus).not_to eq(0)
61
+ expect(@provider.instance_variable_get(:@status).exitstatus).not_to eq(0)
62
62
  end
63
63
  it "should thrown an exception when ifconfig fails" do
64
64
  @provider.action = :add
@@ -79,7 +79,7 @@ describe Chef::Provider::Ifconfig do
79
79
  @provider.load_current_resource
80
80
  end
81
81
  it "should track state of ifconfig failure" do
82
- expect(@provider.instance_variable_get("@status").exitstatus).not_to eq(0)
82
+ expect(@provider.instance_variable_get(:@status).exitstatus).not_to eq(0)
83
83
  end
84
84
  it "should thrown an exception when ifconfig fails" do
85
85
  @provider.action = :add
@@ -219,11 +219,11 @@ describe Chef::Provider::RemoteFile::CacheControlData do
219
219
  let(:truncated_remote_uri) { URI.parse(long_remote_path[0...CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH]) }
220
220
  let(:truncated_file_cache_path) do
221
221
  cache_control_data_truncated = Chef::Provider::RemoteFile::CacheControlData.load_and_validate(truncated_remote_uri, current_file_checksum)
222
- cache_control_data_truncated.send("sanitized_cache_file_basename")[0...CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH]
222
+ cache_control_data_truncated.send(:sanitized_cache_file_basename)[0...CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH]
223
223
  end
224
224
 
225
225
  it "truncates the file cache path to 102 characters" do
226
- normalized_cache_path = cache_control_data.send("sanitized_cache_file_basename")
226
+ normalized_cache_path = cache_control_data.send(:sanitized_cache_file_basename)
227
227
 
228
228
  expect(Chef::FileCache).to receive(:store).with("remote_file/" + normalized_cache_path, cache_control_data.json_data)
229
229
 
@@ -233,7 +233,7 @@ describe Chef::Provider::RemoteFile::CacheControlData do
233
233
  end
234
234
 
235
235
  it "uses a file cache path that starts with the first #{CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH} characters of the URI" do
236
- normalized_cache_path = cache_control_data.send("sanitized_cache_file_basename")
236
+ normalized_cache_path = cache_control_data.send(:sanitized_cache_file_basename)
237
237
 
238
238
  expect(truncated_file_cache_path.length).to eq(CACHE_FILE_TRUNCATED_FRIENDLY_FILE_NAME_LENGTH)
239
239
  expect(normalized_cache_path.start_with?(truncated_file_cache_path)).to eq(true)
@@ -49,13 +49,13 @@ describe Chef::Provider::Service::Gentoo do
49
49
 
50
50
  it "should track when service file is not found in /etc/runlevels" do
51
51
  @provider.load_current_resource
52
- expect(@provider.instance_variable_get("@found_script")).to be_falsey
52
+ expect(@provider.instance_variable_get(:@found_script)).to be_falsey
53
53
  end
54
54
 
55
55
  it "should track when service file is found in /etc/runlevels/**/" do
56
56
  allow(Dir).to receive(:glob).with("/etc/runlevels/**/chef").and_return(["/etc/runlevels/default/chef"])
57
57
  @provider.load_current_resource
58
- expect(@provider.instance_variable_get("@found_script")).to be_truthy
58
+ expect(@provider.instance_variable_get(:@found_script)).to be_truthy
59
59
  end
60
60
 
61
61
  describe "when detecting the service enable state" do
@@ -160,7 +160,7 @@ describe Chef::Provider::Service::Upstart do
160
160
  it "should track state when the upstart configuration file fails to load" do
161
161
  expect(File).to receive(:exist?).and_return false
162
162
  @provider.load_current_resource
163
- expect(@provider.instance_variable_get("@config_file_found")).to eq(false)
163
+ expect(@provider.instance_variable_get(:@config_file_found)).to eq(false)
164
164
  end
165
165
 
166
166
  describe "when a status command has been specified" do
@@ -177,7 +177,7 @@ describe Chef::Provider::Service::Upstart do
177
177
  it "should track state when the user-provided status command fails" do
178
178
  allow(@provider).to receive(:shell_out!).and_raise(Errno::ENOENT)
179
179
  @provider.load_current_resource
180
- expect(@provider.instance_variable_get("@command_success")).to eq(false)
180
+ expect(@provider.instance_variable_get(:@command_success)).to eq(false)
181
181
  end
182
182
 
183
183
  it "should set running to false if it catches a Chef::Exceptions::Exec when using a status command" do
@@ -190,7 +190,7 @@ describe Chef::Provider::Service::Upstart do
190
190
  it "should track state when we fail to obtain service status via upstart_goal_state" do
191
191
  expect(@provider).to receive(:upstart_goal_state).and_raise Chef::Exceptions::Exec
192
192
  @provider.load_current_resource
193
- expect(@provider.instance_variable_get("@command_success")).to eq(false)
193
+ expect(@provider.instance_variable_get(:@command_success)).to eq(false)
194
194
  end
195
195
 
196
196
  it "should return the current resource" do
@@ -74,7 +74,7 @@ describe Chef::Provider::User::Solaris do
74
74
  allow(Tempfile).to receive(:new).with("shadow", "/etc").and_return(temp_file)
75
75
  new_resource.password "verysecurepassword"
76
76
  provider.manage_user
77
- expect(::File.open(password_file.path, "r").read).to match(/adam:verysecurepassword:/)
77
+ expect(::File.read(password_file.path)).to match(/adam:verysecurepassword:/)
78
78
  password_file.unlink
79
79
  end
80
80
  end
@@ -29,8 +29,7 @@ rescue LoadError
29
29
  end
30
30
  end
31
31
 
32
- # Exclude this test on platforms where ffi-libarchive loading is broken
33
- describe Chef::Resource::ArchiveFile, :libarchive_loading_broken do
32
+ describe Chef::Resource::ArchiveFile, :not_supported_on_aix do
34
33
  let(:node) { Chef::Node.new }
35
34
  let(:events) { Chef::EventDispatch::Dispatcher.new }
36
35
  let(:run_context) { Chef::RunContext.new(node, {}, events) }
@@ -59,7 +59,7 @@ describe Chef::Resource::Conditional do
59
59
 
60
60
  describe "after running a negative/false command given as a string" do
61
61
  before do
62
- @status.send("success?=", false)
62
+ @status.send(:"success?=", false)
63
63
  @conditional = Chef::Resource::Conditional.only_if(@parent_resource, "false")
64
64
  end
65
65
 
@@ -80,7 +80,7 @@ describe Chef::Resource::Conditional do
80
80
 
81
81
  describe "after running a negative/false command given as an array" do
82
82
  before do
83
- @status.send("success?=", false)
83
+ @status.send(:"success?=", false)
84
84
  @conditional = Chef::Resource::Conditional.only_if(@parent_resource, ["false"])
85
85
  end
86
86
 
@@ -162,7 +162,7 @@ describe Chef::Resource::Conditional do
162
162
 
163
163
  describe "after running a failed/false command given as a string" do
164
164
  before do
165
- @status.send("success?=", false)
165
+ @status.send(:"success?=", false)
166
166
  @conditional = Chef::Resource::Conditional.not_if(@parent_resource, "false")
167
167
  end
168
168
 
@@ -183,7 +183,7 @@ describe Chef::Resource::Conditional do
183
183
 
184
184
  describe "after running a failed/false command given as an array" do
185
185
  before do
186
- @status.send("success?=", false)
186
+ @status.send(:"success?=", false)
187
187
  @conditional = Chef::Resource::Conditional.not_if(@parent_resource, ["false"])
188
188
  end
189
189
 
@@ -300,27 +300,35 @@ describe Chef::Resource do
300
300
  end
301
301
 
302
302
  describe "subscribes" do
303
+ context "with syntax error in resources parameter" do
304
+ it "raises an exception immediately" do
305
+ expect do
306
+ resource.subscribes(:run, "typo[missing-closing-bracket")
307
+ end.to raise_error(Chef::Exceptions::InvalidResourceSpecification)
308
+ end
309
+ end
310
+
303
311
  it "should make resources appear in the actions hash of subscribed nodes" do
304
- run_context.resource_collection << Chef::Resource::ZenMaster.new("coffee")
312
+ run_context.resource_collection << Chef::Resource::ZenMaster.new("coffee", run_context)
305
313
  zr = run_context.resource_collection.find(zen_master: "coffee")
306
314
  resource.subscribes :reload, zr
307
315
  expect(zr.delayed_notifications.detect { |e| e.resource.name == "funk" && e.action == :reload }).not_to be_nil
308
316
  end
309
317
 
310
318
  it "should make resources appear in the actions hash of subscribed nodes" do
311
- run_context.resource_collection << Chef::Resource::ZenMaster.new("coffee")
319
+ run_context.resource_collection << Chef::Resource::ZenMaster.new("coffee", run_context)
312
320
  zr = run_context.resource_collection.find(zen_master: "coffee")
313
321
  resource.subscribes :reload, zr
314
322
  expect(zr.delayed_notifications.detect { |e| e.resource.name == resource.name && e.action == :reload }).not_to be_nil
315
323
 
316
- run_context.resource_collection << Chef::Resource::ZenMaster.new("bean")
324
+ run_context.resource_collection << Chef::Resource::ZenMaster.new("bean", run_context)
317
325
  zrb = run_context.resource_collection.find(zen_master: "bean")
318
326
  zrb.subscribes :reload, zr
319
327
  expect(zr.delayed_notifications.detect { |e| e.resource.name == resource.name && e.action == :reload }).not_to be_nil
320
328
  end
321
329
 
322
330
  it "should make subscribed resources be capable of acting immediately" do
323
- run_context.resource_collection << Chef::Resource::ZenMaster.new("coffee")
331
+ run_context.resource_collection << Chef::Resource::ZenMaster.new("coffee", run_context)
324
332
  zr = run_context.resource_collection.find(zen_master: "coffee")
325
333
  resource.subscribes :reload, zr, :immediately
326
334
  expect(zr.immediate_notifications.detect { |e| e.resource.name == resource.name && e.action == :reload }).not_to be_nil
@@ -955,7 +963,7 @@ describe Chef::Resource do
955
963
  node.name("bumblebee")
956
964
  node.automatic[:platform] = "autobots"
957
965
  node.automatic[:platform_version] = "6.1"
958
- Object.const_set("Soundwave", klz1)
966
+ Object.const_set(:Soundwave, klz1)
959
967
  klz1.provides :soundwave
960
968
  end
961
969
 
@@ -978,7 +986,7 @@ describe Chef::Resource do
978
986
  node.automatic[:platform] = "autobots"
979
987
  node.automatic[:platform_version] = "6.1"
980
988
  klz2.provides :dinobot, platform: ["autobots"]
981
- Object.const_set("Grimlock", klz2)
989
+ Object.const_set(:Grimlock, klz2)
982
990
  klz2.provides :grimlock
983
991
  end
984
992
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef
3
3
  version: !ruby/object:Gem::Version
4
- version: 17.9.18
4
+ version: 17.9.52
5
5
  platform: universal-mingw32
6
6
  authors:
7
7
  - Adam Jacob
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-23 00:00:00.000000000 Z
11
+ date: 2022-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef-config
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 17.9.18
19
+ version: 17.9.52
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 17.9.18
26
+ version: 17.9.52
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: chef-utils
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 17.9.18
33
+ version: 17.9.52
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 17.9.18
40
+ version: 17.9.52
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: train-core
43
43
  requirement: !ruby/object:Gem::Requirement