diff options
author | Joe Julian <me@joejulian.name> | 2012-11-06 16:17:57 -0800 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2012-11-07 09:36:54 -0800 |
commit | 70f4a0e9ed6925670ea3767eed0a3c4b3521c28d (patch) | |
tree | 375ac4d008efbe141c78a268758a7408022a2661 /spec/unit | |
parent | cc670fb3b1294a348e9afa03b75cbed8eb08ca36 (diff) | |
download | puppet-stdlib-70f4a0e9ed6925670ea3767eed0a3c4b3521c28d.tar.gz puppet-stdlib-70f4a0e9ed6925670ea3767eed0a3c4b3521c28d.tar.bz2 |
Add function, uriescape, to URI.escape strings. Redmine #17459
Diffstat (limited to 'spec/unit')
-rw-r--r-- | spec/unit/puppet/parser/functions/uriescape_spec.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/unit/puppet/parser/functions/uriescape_spec.rb b/spec/unit/puppet/parser/functions/uriescape_spec.rb new file mode 100644 index 0000000..371de46 --- /dev/null +++ b/spec/unit/puppet/parser/functions/uriescape_spec.rb @@ -0,0 +1,24 @@ +#! /usr/bin/env ruby -S rspec +require 'spec_helper' + +describe "the uriescape function" do + let(:scope) { PuppetlabsSpec::PuppetInternals.scope } + + it "should exist" do + Puppet::Parser::Functions.function("uriescape").should == "function_uriescape" + end + + it "should raise a ParseError if there is less than 1 arguments" do + lambda { scope.function_uriescape([]) }.should( raise_error(Puppet::ParseError)) + end + + it "should uriescape a string" do + result = scope.function_uriescape([":/?#[]@!$&'()*+,;= "]) + result.should(eq('%3A%2F%3F%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D%20')) + end + + it "should do nothing if a string is already safe" do + result = scope.function_uriescape(["ABCdef"]) + result.should(eq('ABCdef')) + end +end |