137db36c5452ead313159677f98a0ed2e8bf6758
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / validate_ipv6_address_spec.rb
1 require 'spec_helper'
2
3 describe 'validate_ipv6_address' do
4   
5   describe 'signature validation' do
6     it { is_expected.not_to eq(nil) }
7     it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
8   end
9
10   context 'Checking for deprecation warning', if: Puppet.version.to_f < 4.0 do
11     after(:all) do
12       ENV.delete('STDLIB_LOG_DEPRECATIONS')
13     end
14     # Checking for deprecation warning, which should only be provoked when the env variable for it is set.
15     it 'should display a single deprecation' do
16       ENV['STDLIB_LOG_DEPRECATIONS'] = "true"
17       scope.expects(:warning).with(includes('This method is deprecated'))
18       is_expected.to run.with_params('3ffe:0505:0002::')
19     end
20     it 'should display no warning for deprecation' do
21       ENV['STDLIB_LOG_DEPRECATIONS'] = "false"
22       scope.expects(:warning).with(includes('This method is deprecated')).never
23       is_expected.to run.with_params('3ffe:0505:0002::')
24     end
25   end 
26
27   describe 'valid inputs' do
28     it { is_expected.to run.with_params('3ffe:0505:0002::') }
29     it { is_expected.to run.with_params('3ffe:0505:0002::', '3ffe:0505:0002::2') }
30     it { is_expected.to run.with_params('::1/64') }
31     it { is_expected.to run.with_params('fe80::a00:27ff:fe94:44d6/64') }
32     it { is_expected.to run.with_params('fe80:0000:0000:0000:0204:61ff:fe9d:f156') }
33     it { is_expected.to run.with_params('fe80:0:0:0:204:61ff:fe9d:f156') }
34     it { is_expected.to run.with_params('fe80::204:61ff:fe9d:f156') }
35     it { is_expected.to run.with_params('fe80:0:0:0:0204:61ff:254.157.241.86') }
36     it { is_expected.to run.with_params('::1') }
37     it { is_expected.to run.with_params('fe80::') }
38     it { is_expected.to run.with_params('2001::') }
39   end
40
41   describe 'invalid inputs' do
42     it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, /is not a string/) }
43     it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, /is not a string/) }
44     it { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
45     it { is_expected.to run.with_params('0.0.0').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
46     it { is_expected.to run.with_params('0.0.0.256').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
47     it { is_expected.to run.with_params('0.0.0.0.0').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
48     it { is_expected.to run.with_params('::ffff:2.3.4').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
49     it { is_expected.to run.with_params('::ffff:257.1.2.3').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
50     it { is_expected.to run.with_params('::ffff:12345678901234567890.1.26').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
51     it { is_expected.to run.with_params('affe:beef').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
52     it { is_expected.to run.with_params('::1', {}).and_raise_error(Puppet::ParseError, /is not a string/) }
53     it { is_expected.to run.with_params('::1', true).and_raise_error(Puppet::ParseError, /is not a string/) }
54     it { is_expected.to run.with_params('::1', 'one').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
55     context 'unless running on ruby 1.8.7', :if => RUBY_VERSION != '1.8.7' do
56       it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, /is not a string/) }
57       it { is_expected.to run.with_params('::1', 1).and_raise_error(Puppet::ParseError, /is not a string/) }
58     end
59   end
60 end