5510c58d696cdc94b251c836002b12d2ab091d34
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / prefix_spec.rb
1 require 'spec_helper'
2
3 describe 'prefix' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
6   it {
7     pending("Current implementation ignores parameters after the second.")
8     is_expected.to run.with_params([], 'a', '').and_raise_error(Puppet::ParseError, /wrong number of arguments/i)
9   }
10   it { is_expected.to run.with_params('', '').and_raise_error(Puppet::ParseError, /expected first argument to be an Array or a Hash/) }
11   it { is_expected.to run.with_params([], 2).and_raise_error(Puppet::ParseError, /expected second argument to be a String/) }
12   it { is_expected.to run.with_params([]).and_return([]) }
13   it { is_expected.to run.with_params(['one', 2]).and_return(['one', '2']) }
14   it { is_expected.to run.with_params(['ớņệ', 2]).and_return(['ớņệ', '2']) }
15   it { is_expected.to run.with_params([], '').and_return([]) }
16   it { is_expected.to run.with_params([''], '').and_return(['']) }
17   it { is_expected.to run.with_params(['one'], 'pre').and_return(['preone']) }
18   it { is_expected.to run.with_params(['one', 'two', 'three'], 'pre').and_return(['preone', 'pretwo', 'prethree']) }
19   it { is_expected.to run.with_params({}).and_return({}) }
20   it { is_expected.to run.with_params({ 'key1' => 'value1', 2 => 3}).and_return({ 'key1' => 'value1', '2' => 3 }) }
21   it { is_expected.to run.with_params({}, '').and_return({}) }
22   it { is_expected.to run.with_params({ 'key' => 'value' }, '').and_return({ 'key' => 'value' }) }
23   it { is_expected.to run.with_params({ 'key' => 'value' }, 'pre').and_return({ 'prekey' => 'value' }) }
24   it {
25     is_expected.to run \
26       .with_params({ 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3' }, 'pre') \
27       .and_return({ 'prekey1' => 'value1', 'prekey2' => 'value2', 'prekey3' => 'value3' })
28   }
29 end