source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/functions/is_ip_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: 2.2 KB
Line 
1require 'spec_helper'
2
3describe 'is_ip_address' do
4 it { is_expected.not_to eq(nil) }
5 it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
6 it { is_expected.to run.with_params([], []).and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
7 it { is_expected.to run.with_params('1.2.3.4').and_return(true) }
8 it { is_expected.to run.with_params('1.2.3.255').and_return(true) }
9 it { is_expected.to run.with_params('1.2.3.256').and_return(false) }
10 it { is_expected.to run.with_params('1.2.3').and_return(false) }
11 it { is_expected.to run.with_params('1.2.3.4.5').and_return(false) }
12 it { is_expected.to run.with_params('fe00::1').and_return(true) }
13 it { is_expected.to run.with_params('fe80:0000:cd12:d123:e2f8:47ff:fe09:dd74').and_return(true) }
14 it { is_expected.to run.with_params('FE80:0000:CD12:D123:E2F8:47FF:FE09:DD74').and_return(true) }
15 it { is_expected.to run.with_params('fe80:0000:cd12:d123:e2f8:47ff:fe09:zzzz').and_return(false) }
16 it { is_expected.to run.with_params('fe80:0000:cd12:d123:e2f8:47ff:fe09').and_return(false) }
17 it { is_expected.to run.with_params('fe80:0000:cd12:d123:e2f8:47ff:fe09:dd74:dd74').and_return(false) }
18 it { is_expected.to run.with_params('').and_return(false) }
19 it { is_expected.to run.with_params('one').and_return(false) }
20 it { is_expected.to run.with_params(1).and_return(false) }
21 it { is_expected.to run.with_params({}).and_return(false) }
22 it { is_expected.to run.with_params([]).and_return(false) }
23
24 context 'Checking for deprecation warning', if: Puppet.version.to_f < 4.0 do
25 # Checking for deprecation warning, which should only be provoked when the env variable for it is set.
26 it 'should display a single deprecation' do
27 ENV['STDLIB_LOG_DEPRECATIONS'] = "true"
28 scope.expects(:warning).with(includes('This method is deprecated'))
29 is_expected.to run.with_params('1.2.3.4').and_return(true)
30 end
31 it 'should display no warning for deprecation' do
32 ENV['STDLIB_LOG_DEPRECATIONS'] = "false"
33 scope.expects(:warning).with(includes('This method is deprecated')).never
34 is_expected.to run.with_params('1.2.3.4').and_return(true)
35 end
36 after(:all) do
37 ENV.delete('STDLIB_LOG_DEPRECATIONS')
38 end
39 end
40end
Note: See TracBrowser for help on using the repository browser.