Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / has_interface_with_spec.rb
1 require 'spec_helper'
2
3 describe 'has_interface_with' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
6   it { is_expected.to run.with_params('one', 'two', 'three').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
7
8   # We need to mock out the Facts so we can specify how we expect this function
9   # to behave on different platforms.
10   context 'when on Mac OS X Systems' do
11     let(:facts) { { :interfaces => 'lo0,gif0,stf0,en1,p2p0,fw0,en0,vmnet1,vmnet8,utun0' } }
12
13     it { is_expected.to run.with_params('lo0').and_return(true) }
14     it { is_expected.to run.with_params('lo').and_return(false) }
15   end
16
17   context 'when on Linux Systems' do
18     let(:facts) do
19       {
20         :interfaces => 'eth0,lo',
21         :ipaddress => '10.0.0.1',
22         :ipaddress_lo => '127.0.0.1',
23         :ipaddress_eth0 => '10.0.0.1',
24         :muppet => 'kermit',
25         :muppet_lo => 'mspiggy',
26         :muppet_eth0 => 'kermit',
27       }
28     end
29
30     it { is_expected.to run.with_params('lo').and_return(true) }
31     it { is_expected.to run.with_params('lo0').and_return(false) }
32     it { is_expected.to run.with_params('ipaddress', '127.0.0.1').and_return(true) }
33     it { is_expected.to run.with_params('ipaddress', '10.0.0.1').and_return(true) }
34     it { is_expected.to run.with_params('ipaddress', '8.8.8.8').and_return(false) }
35     it { is_expected.to run.with_params('muppet', 'kermit').and_return(true) }
36     it { is_expected.to run.with_params('muppet', 'mspiggy').and_return(true) }
37     it { is_expected.to run.with_params('muppet', 'bigbird').and_return(false) }
38   end
39 end