summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJoe Julian <me@joejulian.name>2012-11-06 16:17:57 -0800
committerJeff McCune <jeff@puppetlabs.com>2012-11-07 09:36:54 -0800
commit2fc85d25d2cb1f46dcd7010f13c98213cc22bb4b (patch)
tree58ca3bb825aed18dcbc50f90f15f5b57481490cd /spec
parent6f0c1e248ce1d5ab934b37c6633459ff521eca77 (diff)
downloadpuppet-stdlib-2fc85d25d2cb1f46dcd7010f13c98213cc22bb4b.tar.gz
puppet-stdlib-2fc85d25d2cb1f46dcd7010f13c98213cc22bb4b.tar.bz2
Add function, uriescape, to URI.escape strings. Redmine #17459
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/puppet/parser/functions/uriescape_spec.rb24
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