summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy J. Miller <jm@chef.io>2018-05-15 15:15:17 -0400
committerJeremy J. Miller <jm@chef.io>2018-05-15 18:31:57 -0400
commit7acbb49f913e7064e8736b0e56eff8ecf5acf10a (patch)
tree1bb228333671c4bdf2044e6d5bdfd217676157b5
parentc0609e449135fae43d436136a4f0fd3889a9b8f1 (diff)
downloadchef-7acbb49f913e7064e8736b0e56eff8ecf5acf10a.tar.gz
object validation for DataHandlerBase#normalize_hash
Signed-off-by: Jeremy J. Miller <jm@chef.io>
-rw-r--r--lib/chef/chef_fs/data_handler/data_handler_base.rb10
-rw-r--r--spec/unit/chef_fs/data_handler/data_handler_base_spec.rb58
2 files changed, 65 insertions, 3 deletions
diff --git a/lib/chef/chef_fs/data_handler/data_handler_base.rb b/lib/chef/chef_fs/data_handler/data_handler_base.rb
index 4b4696ce5e..9fdc5579f2 100644
--- a/lib/chef/chef_fs/data_handler/data_handler_base.rb
+++ b/lib/chef/chef_fs/data_handler/data_handler_base.rb
@@ -64,10 +64,14 @@ class Chef
# Make a normalized result in the specified order for diffing
result = {}
defaults.each_pair do |key, default|
- result[key] = object.has_key?(key) ? object[key] : default
+ result[key] = object.is_a?(Hash) && object.key?(key) ? object[key] : default
end
- object.each_pair do |key, value|
- result[key] = value if !result.has_key?(key)
+ if object.is_a?(Hash)
+ object.each_pair do |key, value|
+ result[key] = value unless result.key?(key)
+ end
+ else
+ Chef::Log.warn "Encountered invalid object during normalization. Using these defaults #{defaults}"
end
result
end
diff --git a/spec/unit/chef_fs/data_handler/data_handler_base_spec.rb b/spec/unit/chef_fs/data_handler/data_handler_base_spec.rb
new file mode 100644
index 0000000000..2df468aca5
--- /dev/null
+++ b/spec/unit/chef_fs/data_handler/data_handler_base_spec.rb
@@ -0,0 +1,58 @@
+#
+# Author:: Jeremy Miller (<jm@chef.io>)
+# Copyright:: Copyright 2014-2018, Chef Software Inc.
+# License:: Apache License, Version 2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+require "spec_helper"
+require "lib/chef/chef_fs/data_handler/data_handler_base"
+
+describe Chef::ChefFS::DataHandler::DataHandlerBase do
+ describe "#normalize_hash" do
+ let(:some_item) do
+ { "name" => "grizzly",
+ "gender" => "female",
+ "age" => 3
+ }
+ end
+
+ let(:item_defaults) do
+ { "family" => "ursidae",
+ "hibernate" => true,
+ "avg_lifespan_years" => 22,
+ }
+ end
+
+ let(:normalized) do
+ { "name" => "grizzly",
+ "gender" => "female",
+ "family" => "ursidae",
+ "hibernate" => true,
+ "avg_lifespan_years" => 22,
+ "age" => 3
+ }
+ end
+
+ let(:handler) { described_class.new }
+
+ it "normalizes the Hash, filling in defaults" do
+ expect(handler.normalize_hash(some_item, item_defaults)).to eq(normalized)
+ end
+
+ it "handles being passed a nil value instead of Hash" do
+ expect(handler.normalize_hash(nil, item_defaults)).to eq(item_defaults)
+ end
+ end
+end