Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / size_spec.rb
1 require 'spec_helper'
2
3 describe 'size', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
6   it {
7     pending('Current implementation ignores parameters after the first.')
8     is_expected.to run.with_params([], 'extra').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i)
9   }
10   it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, %r{Unknown type given}) }
11   it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, %r{Unknown type given}) }
12   it { is_expected.to run.with_params('1').and_raise_error(Puppet::ParseError, %r{Requires either string, array or hash to work}) }
13   it { is_expected.to run.with_params('1.0').and_raise_error(Puppet::ParseError, %r{Requires either string, array or hash to work}) }
14   it { is_expected.to run.with_params([]).and_return(0) }
15   it { is_expected.to run.with_params(['a']).and_return(1) }
16   it { is_expected.to run.with_params(['one', 'two', 'three']).and_return(3) }
17   it { is_expected.to run.with_params(['one', 'two', 'three', 'four']).and_return(4) }
18
19   it { is_expected.to run.with_params({}).and_return(0) }
20   it { is_expected.to run.with_params('1' => '2').and_return(1) }
21   it { is_expected.to run.with_params('1' => '2', '4' => '4').and_return(2) }
22   it { is_expected.to run.with_params('€' => '@', '竹' => 'ǿňè').and_return(2) }
23
24   it { is_expected.to run.with_params('').and_return(0) }
25   it { is_expected.to run.with_params('a').and_return(1) }
26   it { is_expected.to run.with_params('abc').and_return(3) }
27   it { is_expected.to run.with_params('abcd').and_return(4) }
28   it { is_expected.to run.with_params('万').and_return(1) }
29   it { is_expected.to run.with_params('āβćđ').and_return(4) }
30
31   context 'when using a class extending String', :unless => Puppet::Util::Package.versioncmp(Puppet.version, '5.5.7') == 0 do
32     it 'calls its size method' do
33       value = AlsoString.new('asdfghjkl')
34       expect(value).to receive(:size).and_return('foo')
35       expect(subject).to run.with_params(value).and_return('foo')
36     end
37   end
38 end