-
Notifications
You must be signed in to change notification settings - Fork 580
(MODULES-3568) Move dig to dig44 and deprecate dig #618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# | ||
# dig44.rb | ||
# | ||
|
||
module Puppet::Parser::Functions | ||
newfunction(:dig44, :type => :rvalue, :doc => <<-EOS | ||
DEPRECATED: This function has been replaced in puppet 4.5.0. | ||
|
||
Looks up into a complex structure of arrays and hashes and returns nil | ||
or the default value if nothing was found. | ||
|
||
Path is an array of keys to be looked up in data argument. The function | ||
will go down the structure and try to extract the required value. | ||
|
||
$data = { | ||
'a' => { | ||
'b' => [ | ||
'b1', | ||
'b2', | ||
'b3' ]}} | ||
|
||
$value = dig44($data, ['a', 'b', '2'], 'not_found') | ||
=> $value = 'b3' | ||
|
||
a -> first hash key | ||
b -> second hash key | ||
2 -> array index starting with 0 | ||
|
||
not_found -> (optional) will be returned if there is no value or the path | ||
did not match. Defaults to nil. | ||
|
||
In addition to the required "path" argument, "dig44" accepts default | ||
argument. It will be returned if no value was found or a path component is | ||
missing. And the fourth argument can set a variable path separator. | ||
EOS | ||
) do |arguments| | ||
# Two arguments are required | ||
raise(Puppet::ParseError, "dig44(): Wrong number of arguments " + | ||
"given (#{arguments.size} for at least 2)") if arguments.size < 2 | ||
|
||
data, path, default = *arguments | ||
|
||
if !(data.is_a?(Hash) || data.is_a?(Array)) | ||
raise(Puppet::ParseError, "dig44(): first argument must be a hash or an array, " << | ||
"given #{data.class.name}") | ||
end | ||
|
||
unless path.is_a? Array | ||
raise(Puppet::ParseError, "dig44(): second argument must be an array, " << | ||
"given #{path.class.name}") | ||
end | ||
|
||
value = path.reduce(data) { |h, k| (h.is_a?(Hash) || h.is_a?(Array)) ? h[k] : break } | ||
value.nil? ? default : value | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
require 'spec_helper' | ||
|
||
describe 'dig44' do | ||
it "should exist" do | ||
expect(Puppet::Parser::Functions.function("dig44")).to eq("function_dig44") | ||
end | ||
|
||
it "should raise a ParseError if there are less than 2 arguments" do | ||
expect { scope.function_dig44([]) }.to raise_error(Puppet::ParseError) | ||
end | ||
|
||
it "should raise a ParseError if the first argument isn't a hash or array" do | ||
expect { scope.function_dig44(['bad', []]) }.to raise_error(Puppet::ParseError) | ||
end | ||
|
||
it "should raise a ParseError if the second argument isn't an array" do | ||
expect { scope.function_dig44([{}, 'bad']) }.to raise_error(Puppet::ParseError) | ||
end | ||
|
||
it "should return an empty hash when given empty parameters" do | ||
result = scope.function_dig44([{}, []]) | ||
expect(result).to(eq({})) | ||
end | ||
|
||
it "should return value when given simple hash" do | ||
result = scope.function_dig44([{"a" => "b"}, ["a"]]) | ||
expect(result).to(eq("b")) | ||
end | ||
|
||
it "should find hash values two levels deep" do | ||
result = scope.function_dig44([{"a" => {"b" => "c"}}, ["a", "b"]]) | ||
expect(result).to(eq("c")) | ||
end | ||
|
||
it "should return default value if nothing was found" do | ||
result = scope.function_dig44([{}, ["a", "b"], "d"]) | ||
expect(result).to(eq("d")) | ||
end | ||
|
||
it "should work on booleans as well as strings" do | ||
result = scope.function_dig44([{"a" => false}, ["a"]]) | ||
expect(result).to(eq(false)) | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
require 'spec_helper' | ||
|
||
describe 'dig' do | ||
it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError) } | ||
it { is_expected.to run.with_params('bad', []).and_raise_error(Puppet::ParseError) } | ||
it { is_expected.to run.with_params({}, 'bad').and_raise_error(Puppet::ParseError) } | ||
|
||
it { is_expected.to run.with_params({}, []).and_return({}) } | ||
it { is_expected.to run.with_params({"a" => "b"}, ["a"]).and_return("b") } | ||
it { is_expected.to run.with_params({"a" => {"b" => "c"}}, ["a", "b"]).and_return("c") } | ||
it { is_expected.to run.with_params({}, ["a", "b"], "d").and_return("d") } | ||
it { is_expected.to run.with_params({"a" => false}, ["a"]).and_return(false) } | ||
it "should exist" do | ||
expect(Puppet::Parser::Functions.function("dig")).to eq("function_dig") | ||
end | ||
|
||
it "should give a deprecation warning when called" do | ||
scope.expects(:warning).with("dig() DEPRECATED: This function has been replaced in Puppet 4.5.0, please use dig44() for backwards compatibility or use the new version.") | ||
scope.function_dig([{}, []]) | ||
end | ||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please keep the entry for the old dig() around and replace its description with the deprecation warning to reduce possible confusion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, added that back in.