Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / shell_join_spec.rb
1 require 'spec_helper'
2
3 describe 'shell_join' do
4   it { is_expected.not_to eq(nil) }
5
6   describe 'signature validation' do
7     it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
8     it { is_expected.to run.with_params(['foo'], ['bar']).and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
9     it { is_expected.to run.with_params('foo').and_raise_error(Puppet::ParseError, /is not an Array/i) }
10   end
11
12   describe 'shell argument joining' do
13     it { is_expected.to run.with_params(['foo']).and_return('foo') }
14     it { is_expected.to run.with_params(['foo', 'bar']).and_return('foo bar') }
15     it { is_expected.to run.with_params(['foo', 'bar baz']).and_return('foo bar\ baz') }
16     it { is_expected.to run.with_params(['~`!@#$', '%^&*()_+-=', '[]\{}|;\':"', ',./<>?'])
17                             .and_return('\~\`\!@\#\$ \%\^\&\*\(\)_\+-\= \[\]\\\\\{\}\|\;\\\':\" ,./\<\>\?') }
18
19   context 'should run with UTF8 and double byte characters' do
20       it { is_expected.to run.with_params(['μťƒ', '8',  'ŧĕχť']).and_return('\\μ\\ť\\ƒ 8 \\ŧ\\ĕ\\χ\\ť') }
21       it { is_expected.to run.with_params(['スペー', 'スを含むテ', ' キスト']).and_return('\\ス\\ペ\\ー \\ス\\を\\含\\む\\テ \\ \\キ\\ス\\ト') }
22     end
23   end
24
25   describe 'stringification' do
26     it { is_expected.to run.with_params([10, false, 'foo']).and_return('10 false foo') }
27   end
28 end