source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/stdlib/spec/functions/validate_ipv6_address_spec.rb@ 30960

Last change on this file since 30960 was 30960, checked in by davidb, 7 years ago

Switch to using Puppet to provision machine. Strongly based on files developed for spark-hdfs cluster

  • Property svn:executable set to *
File size: 2.7 KB
Line 
1require 'spec_helper'
2
3describe '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 end
33
34 describe 'invalid inputs' do
35 it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, /is not a string/) }
36 it { is_expected.to run.with_params(true).and_raise_error(Puppet::ParseError, /is not a string/) }
37 it { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
38 it { is_expected.to run.with_params('0.0.0').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
39 it { is_expected.to run.with_params('0.0.0.256').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
40 it { is_expected.to run.with_params('0.0.0.0.0').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
41 it { is_expected.to run.with_params('affe:beef').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
42 it { is_expected.to run.with_params('::1', {}).and_raise_error(Puppet::ParseError, /is not a string/) }
43 it { is_expected.to run.with_params('::1', true).and_raise_error(Puppet::ParseError, /is not a string/) }
44 it { is_expected.to run.with_params('::1', 'one').and_raise_error(Puppet::ParseError, /is not a valid IPv6/) }
45 context 'unless running on ruby 1.8.7', :if => RUBY_VERSION != '1.8.7' do
46 it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, /is not a string/) }
47 it { is_expected.to run.with_params('::1', 1).and_raise_error(Puppet::ParseError, /is not a string/) }
48 end
49 end
50end
Note: See TracBrowser for help on using the repository browser.