summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2014-10-08 11:03:34 -0700
committerJay Mundrawala <jdmundrawala@gmail.com>2014-10-08 11:03:34 -0700
commit997b0e0cf1a99e13e8ce5e0f859deb4a225792a4 (patch)
treee06aff2685cd5da39053e6f1576269111c3066d6
parent19adfd52154a227717ecb2823750dae4bc34a57c (diff)
downloadchef-jdmundrawala/issue-2169.tar.gz
Try to apply dsc configuration even if what-if failsjdmundrawala/issue-2169
-rw-r--r--lib/chef/util/dsc/local_configuration_manager.rb6
-rw-r--r--spec/unit/util/dsc/local_configuration_manager_spec.rb8
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/chef/util/dsc/local_configuration_manager.rb b/lib/chef/util/dsc/local_configuration_manager.rb
index 4a56b6a397..7395dd5bbf 100644
--- a/lib/chef/util/dsc/local_configuration_manager.rb
+++ b/lib/chef/util/dsc/local_configuration_manager.rb
@@ -29,7 +29,7 @@ class Chef::Util::DSC
def test_configuration(configuration_document)
status = run_configuration_cmdlet(configuration_document)
- handle_what_if_exception!(status.stderr) unless status.succeeded?
+ log_what_if_exception(status.stderr) unless status.succeeded?
configuration_update_required?(status.return_value)
end
@@ -78,14 +78,14 @@ $ProgressPreference = 'SilentlyContinue';start-dscconfiguration -path #{@configu
EOH
end
- def handle_what_if_exception!(what_if_exception_output)
+ def log_what_if_exception(what_if_exception_output)
if what_if_exception_output.gsub(/\s+/, ' ') =~ /A parameter cannot be found that matches parameter name 'Whatif'/i
# LCM returns an error if any of the resources do not support the opptional What-If
Chef::Log::warn("Received error while testing configuration due to resource not supporting 'WhatIf'")
elsif output_has_dsc_module_failure?(what_if_exception_output)
Chef::Log::warn("Received error while testing configuration due to a module for an imported resource possibly not being fully installed:\n#{what_if_exception_output.gsub(/\s+/, ' ')}")
else
- raise Chef::Exceptions::PowershellCmdletException, "Powershell Cmdlet failed: #{what_if_exception_output.gsub(/\s+/, ' ')}"
+ Chef::Log::warn("Received error while testing configuration:\n#{what_if_exception_output.gsub(/\s+/, ' ')}")
end
end
diff --git a/spec/unit/util/dsc/local_configuration_manager_spec.rb b/spec/unit/util/dsc/local_configuration_manager_spec.rb
index fb6664bd40..c9a63bf816 100644
--- a/spec/unit/util/dsc/local_configuration_manager_spec.rb
+++ b/spec/unit/util/dsc/local_configuration_manager_spec.rb
@@ -105,15 +105,15 @@ EOH
end
end
- context 'that fails due to an PowerShell cmdlet error that cannot be handled' do
+ context 'that fails due to an unknown PowerShell cmdlet error' do
let(:lcm_standard_output) { 'some output' }
let(:lcm_standard_error) { 'Abort, Retry, Fail?' }
let(:lcm_cmdlet_success) { false }
- it 'should raise a Chef::Exceptions::PowershellCmdletException' do
- expect(Chef::Log).not_to receive(:warn)
+ it 'should log a warning' do
+ expect(Chef::Log).to receive(:warn)
expect(lcm).to receive(:output_has_dsc_module_failure?).and_call_original
- expect {lcm.test_configuration('config')}.to raise_error(Chef::Exceptions::PowershellCmdletException)
+ expect {lcm.test_configuration('config')}.not_to raise_error
end
end
end