Merge pull request #419 from cyberious/master

Loosen the restrictions of upcase and allow for recursion of the objects...
This commit is contained in:
Morgan Haskel 2015-03-02 11:09:33 -08:00
commit 6d07a6a809
3 changed files with 25 additions and 6 deletions

View file

@ -475,7 +475,7 @@ Takes a single string value as an argument. *Type*: rvalue
You can also use this with arrays. For example, `unique(["a","a","b","b","c","c"])` returns ["a","b","c"]. *Type*: rvalue
* `upcase`: Converts a string or an array of strings to uppercase. For example, `upcase("abcd")` returns 'ABCD'. *Type*: rvalue
* `upcase`: Converts an object, array or hash of objects that respond to upcase to uppercase. For example, `upcase("abcd")` returns 'ABCD'. *Type*: rvalue
* `uriescape`: Urlencodes a string or array of strings. Requires either a single string or an array as an input. *Type*: rvalue

View file

@ -17,22 +17,22 @@ Will return:
) do |arguments|
raise(Puppet::ParseError, "upcase(): Wrong number of arguments " +
"given (#{arguments.size} for 1)") if arguments.size < 1
"given (#{arguments.size} for 1)") if arguments.size != 1
value = arguments[0]
unless value.is_a?(Array) || value.is_a?(String) || value.is_a?(Hash)
unless value.is_a?(Array) || value.is_a?(Hash) || value.respond_to?(:upcase)
raise(Puppet::ParseError, 'upcase(): Requires an ' +
'array, string or hash to work with')
'array, hash or object that responds to upcase in order to work')
end
if value.is_a?(Array)
# Numbers in Puppet are often string-encoded which is troublesome ...
result = value.collect { |i| i.is_a?(String) ? i.upcase : i }
result = value.collect { |i| function_upcase([i]) }
elsif value.is_a?(Hash)
result = {}
value.each_pair do |k, v|
result.merge!({k.upcase => v.collect! { |p| p.upcase }})
result[function_upcase([k])] = function_upcase([v])
end
else
result = value.upcase

View file

@ -36,4 +36,23 @@ describe "the upcase function" do
scope.function_upcase([{'test' => %w(this that and other thing)}])
).to eq({'TEST' => %w(THIS THAT AND OTHER THING)})
end
if :test.respond_to?(:upcase)
it 'should accept hashes of symbols' do
expect(
scope.function_upcase([{:test => [:this, :that, :other]}])
).to eq({:TEST => [:THIS, :THAT, :OTHER]})
end
it 'should return upcase symbol' do
expect(
scope.function_upcase([:test])
).to eq(:TEST)
end
it 'should return mixed objects in upcease' do
expect(
scope.function_upcase([[:test, 'woot']])
).to eq([:TEST, 'WOOT'])
end
end
end