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