summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-08-28 17:28:06 -0700
committerGitHub <noreply@github.com>2017-08-28 17:28:06 -0700
commit1d983362796f2163c12931fa9f34b22fa8d81fd9 (patch)
treed7d650af978e031b99e01ab4c5e0622e46f15780
parent4ba94438788706ceae12706c539d5cda101fb89b (diff)
parent1e9093ef3f185c9709cd9a71bf701d4b2ed673ef (diff)
downloadchef-1d983362796f2163c12931fa9f34b22fa8d81fd9.tar.gz
Merge pull request #6357 from chef/lcg/backport-6355
backport 6355 to Chef-12
-rw-r--r--lib/chef/node/immutable_collections.rb2
-rw-r--r--spec/unit/node/immutable_collections_spec.rb16
2 files changed, 13 insertions, 5 deletions
diff --git a/lib/chef/node/immutable_collections.rb b/lib/chef/node/immutable_collections.rb
index dad712e078..3b7d47b687 100644
--- a/lib/chef/node/immutable_collections.rb
+++ b/lib/chef/node/immutable_collections.rb
@@ -110,7 +110,7 @@ class Chef
include Immutablize
include CommonAPI
- alias :internal_set :[]=
+ alias :internal_set :regular_writer
private :internal_set
def initialize(mash_data = {})
diff --git a/spec/unit/node/immutable_collections_spec.rb b/spec/unit/node/immutable_collections_spec.rb
index 81dd771df3..30c711d720 100644
--- a/spec/unit/node/immutable_collections_spec.rb
+++ b/spec/unit/node/immutable_collections_spec.rb
@@ -21,10 +21,10 @@ require "chef/node/immutable_collections"
describe Chef::Node::ImmutableMash do
before do
- @data_in = { :top => { :second_level => "some value" },
+ @data_in = { "top" => { "second_level" => "some value" },
"top_level_2" => %w{array of values},
- :top_level_3 => [{ :hash_array => 1, :hash_array_b => 2 }],
- :top_level_4 => { :level2 => { :key => "value" } },
+ "top_level_3" => [{ "hash_array" => 1, "hash_array_b" => 2 }],
+ "top_level_4" => { "level2" => { "key" => "value" } },
}
@immutable_mash = Chef::Node::ImmutableMash.new(@data_in)
end
@@ -54,6 +54,14 @@ describe Chef::Node::ImmutableMash do
expect(@immutable_mash[:top_level_4][:level2]).to be_a(Chef::Node::ImmutableMash)
end
+ # we only ever absorb VividMashes from other precedence levels, which already have
+ # been coerced to only have string keys, so we do not need to do that work twice (performance).
+ it "does not call convert_value like Mash/VividMash" do
+ @mash = Chef::Node::ImmutableMash.new({ test: "foo", "test2" => "bar" })
+ expect(@mash[:test]).to eql("foo")
+ expect(@mash["test2"]).to eql("bar")
+ end
+
describe "to_hash" do
before do
@copy = @immutable_mash.to_hash
@@ -117,7 +125,7 @@ describe Chef::Node::ImmutableArray do
before do
@immutable_array = Chef::Node::ImmutableArray.new(%w{foo bar baz} + Array(1..3) + [nil, true, false, [ "el", 0, nil ] ])
- immutable_mash = Chef::Node::ImmutableMash.new({ :m => "m" })
+ immutable_mash = Chef::Node::ImmutableMash.new({ "m" => "m" })
@immutable_nested_array = Chef::Node::ImmutableArray.new(["level1", @immutable_array, immutable_mash])
end