]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/spec/acceptance/uriescape_spec.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / uriescape_spec.rb
1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
3
4 describe 'uriescape function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5   describe 'success' do
6     it 'uriescape strings' do
7       pp = <<-EOS
8       $a = ":/?#[]@!$&'()*+,;= \\\"{}"
9       $o = uriescape($a)
10       notice(inline_template('uriescape is <%= @o.inspect %>'))
11       EOS
12
13       apply_manifest(pp, :catch_failures => true) do |r|
14         expect(r.stdout).to match(/uriescape is ":\/\?%23\[\]@!\$&'\(\)\*\+,;=%20%22%7B%7D"/)
15       end
16     end
17     it 'does nothing if a string is already safe'
18   end
19   describe 'failure' do
20     it 'handles no arguments'
21     it 'handles non strings or arrays'
22   end
23 end