source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/functions/validate_ipv4_address_spec.rb@ 30903

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

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

  • Property svn:executable set to *
File size: 3.0 KB
Line 
1require 'spec_helper'
2
3describe 'validate_ipv4_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('1.2.3.4')
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('1.2.3.4')
24 end
25 end
26
27 describe 'valid inputs' do
28 it { is_expected.to run.with_params('0.0.0.0') }
29 it { is_expected.to run.with_params('8.8.8.8') }
30 it { is_expected.to run.with_params('127.0.0.1') }
31 it { is_expected.to run.with_params('10.10.10.10') }
32 it { is_expected.to run.with_params('194.232.104.150') }
33 it { is_expected.to run.with_params('244.24.24.24') }
34 it { is_expected.to run.with_params('255.255.255.255') }
35 it { is_expected.to run.with_params('1.2.3.4', '5.6.7.8') }
36 context 'with netmasks' do
37 it { is_expected.to run.with_params('8.8.8.8/0') }
38 it { is_expected.to run.with_params('8.8.8.8/16') }
39 it { is_expected.to run.with_params('8.8.8.8/32') }
40 it { is_expected.to run.with_params('8.8.8.8/255.255.0.0') }
41 end
42 end
43
44 describe 'invalid inputs' do
45 it { is_expected.to run.with_params({}).and_raise_error(Puppet::ParseError, /is not a string/) }
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(true).and_raise_error(Puppet::ParseError, /is not a string/) }
48 it { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError, /is not a valid IPv4/) }
49 it { is_expected.to run.with_params('0.0.0').and_raise_error(Puppet::ParseError, /is not a valid IPv4/) }
50 it { is_expected.to run.with_params('0.0.0.256').and_raise_error(Puppet::ParseError, /is not a valid IPv4/) }
51 it { is_expected.to run.with_params('0.0.0.0.0').and_raise_error(Puppet::ParseError, /is not a valid IPv4/) }
52 it { is_expected.to run.with_params('affe::beef').and_raise_error(Puppet::ParseError, /is not a valid IPv4/) }
53 it { is_expected.to run.with_params('1.2.3.4', {}).and_raise_error(Puppet::ParseError, /is not a string/) }
54 it { is_expected.to run.with_params('1.2.3.4', 1).and_raise_error(Puppet::ParseError, /is not a string/) }
55 it { is_expected.to run.with_params('1.2.3.4', true).and_raise_error(Puppet::ParseError, /is not a string/) }
56 it { is_expected.to run.with_params('1.2.3.4', 'one').and_raise_error(Puppet::ParseError, /is not a valid IPv4/) }
57 end
58end
Note: See TracBrowser for help on using the repository browser.