Add missing new files from commit 131e09855e06
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / length_spec.rb
1 require 'spec_helper'
2
3 describe 'length', :if => Puppet::Util::Package.versioncmp(Puppet.version, '5.5.0') < 0 do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params.and_raise_error(ArgumentError, %r{'length' expects 1 argument, got none}) }
6   it { is_expected.to run.with_params([], 'extra').and_raise_error(ArgumentError, %r{'length' expects 1 argument, got 2}) }
7   it { is_expected.to run.with_params(1).and_raise_error(ArgumentError, %r{expects a value of type String, Array, or Hash, got Integer}) }
8   it { is_expected.to run.with_params(true).and_raise_error(ArgumentError, %r{expects a value of type String, Array, or Hash, got Boolean}) }
9   it { is_expected.to run.with_params('1').and_return(1) }
10   it { is_expected.to run.with_params('1.0').and_return(3) }
11   it { is_expected.to run.with_params([]).and_return(0) }
12   it { is_expected.to run.with_params(['a']).and_return(1) }
13   it { is_expected.to run.with_params(['one', 'two', 'three']).and_return(3) }
14   it { is_expected.to run.with_params(['one', 'two', 'three', 'four']).and_return(4) }
15
16   it { is_expected.to run.with_params({}).and_return(0) }
17   it { is_expected.to run.with_params('1' => '2').and_return(1) }
18   it { is_expected.to run.with_params('1' => '2', '4' => '4').and_return(2) }
19   it { is_expected.to run.with_params('€' => '@', '竹' => 'ǿňè').and_return(2) }
20
21   it { is_expected.to run.with_params('').and_return(0) }
22   it { is_expected.to run.with_params('a').and_return(1) }
23   it { is_expected.to run.with_params('abc').and_return(3) }
24   it { is_expected.to run.with_params('abcd').and_return(4) }
25   it { is_expected.to run.with_params('万').and_return(1) }
26   it { is_expected.to run.with_params('āβćđ').and_return(4) }
27
28   context 'when using a class extending String' do
29     it { is_expected.to run.with_params(AlsoString.new('asdfghjkl')).and_return(9) }
30   end
31 end