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