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