summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/uriescape_spec.rb
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
commitfd52b8d88a943aef529adfc06cf709ac35509dc5 (patch)
treeb4dcffe82364a1cd8643afd9782737fec235660f /spec/unit/puppet/parser/functions/uriescape_spec.rb
parent65d9b10876420176715b4a9a5ac3e9cedf881c1d (diff)
downloadpuppet-stdlib-fd52b8d88a943aef529adfc06cf709ac35509dc5.tar.gz
puppet-stdlib-fd52b8d88a943aef529adfc06cf709ac35509dc5.tar.bz2
Add function, uriescape, to URI.escape strings. Redmine #17459
Diffstat (limited to 'spec/unit/puppet/parser/functions/uriescape_spec.rb')
-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