1e542169842c50354326d9eeb058a5e80681c81b
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_security_updates_spec.rb
1 require 'spec_helper'
2
3 describe 'apt_security_updates fact' do
4   subject { Facter.fact(:apt_security_updates).value }
5   after(:each) { Facter.clear }
6
7   describe 'when apt has no updates' do
8     before { 
9       Facter.fact(:apt_has_updates).stubs(:value).returns false
10     }
11     it { is_expected.to be nil }
12   end
13
14   describe 'when apt has security updates' do
15     before { 
16       Facter.fact(:osfamily).stubs(:value).returns 'Debian'
17       File.stubs(:executable?) # Stub all other calls
18       Facter::Util::Resolution.stubs(:exec) # Catch all other calls
19       File.expects(:executable?).with('/usr/bin/apt-get').returns true
20       Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns apt_get_upgrade_output
21     }
22
23     describe 'on Debian' do
24       let(:apt_get_upgrade_output) do
25         "Inst tzdata [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
26         "Conf tzdata (2015g-0+deb8u1 Debian:stable-updates [all])\n"+
27         "Inst unhide.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"+
28         "Conf unhide.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"
29       end
30
31       it { is_expected.to eq(1) }
32     end
33
34     describe 'on Ubuntu' do
35       let(:apt_get_upgrade_output) do
36         "Inst tzdata [2016f-0ubuntu0.16.04] (2016j-0ubuntu0.16.04 Ubuntu:16.04/xenial-security, Ubuntu:16.04/xenial-updates [all])\n"+
37         "Conf tzdata (2016j-0ubuntu0.16.04 Ubuntu:16.04/xenial-security, Ubuntu:16.04/xenial-updates [all])\n"+
38         "Inst curl [7.47.0-1ubuntu2] (7.47.0-1ubuntu2.2 Ubuntu:16.04/xenial-security [amd64]) []\n"+
39         "Conf curl (7.47.0-1ubuntu2.2 Ubuntu:16.04/xenial-security [amd64])\n"+
40         "Inst procps [2:3.3.10-4ubuntu2] (2:3.3.10-4ubuntu2.3 Ubuntu:16.04/xenial-updates [amd64])\n"+
41         "Conf procps (2:3.3.10-4ubuntu2.3 Ubuntu:16.04/xenial-updates [amd64])\n"
42       end
43
44       it { is_expected.to eq(2) }
45     end
46   end
47
48 end