(IAC-1143) Adding temporary workaround for facter failures.
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_dist_has_updates_spec.rb
1 require 'spec_helper'
2
3 describe 'apt_has_dist_updates fact' do
4   subject { Facter.fact(:apt_has_dist_updates).value }
5
6   after(:each) { Facter.clear }
7
8   describe 'on non-Debian distro' do
9     before(:each) do
10       # Adding temporary workaround for this ticket https://tickets.puppetlabs.com/browse/IAC-1143
11       Facter.clear
12       allow(Facter.fact(:osfamily)).to receive(:value).once.and_return('Redhat')
13     end
14     it { is_expected.to be_nil }
15   end
16
17   describe 'on Debian based distro missing apt-get' do
18     before(:each) do
19       allow(Facter.fact(:osfamily)).to receive(:value).once.and_return('Debian')
20       allow(File).to receive(:executable?) # Stub all other calls
21       allow(File).to receive(:executable?).with('/usr/bin/apt-get').and_return(false)
22     end
23     it { is_expected.to be_nil }
24   end
25
26   describe 'on Debian based distro' do
27     before(:each) do
28       allow(Facter.fact(:osfamily)).to receive(:value).once.and_return('Debian')
29       allow(File).to receive(:executable?) # Stub all other calls
30       allow(Facter::Util::Resolution).to receive(:exec) # Catch all other calls
31       allow(File).to receive(:executable?).with('/usr/bin/apt-get').and_return(true)
32       allow(Facter::Util::Resolution).to receive(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').and_return('test')
33       apt_output = "Inst extremetuxracer [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n" \
34                    "Conf extremetuxracer (2015g-0+deb8u1 Debian:stable-updates [all])\n" \
35                    "Inst planet.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n" \
36                    "Conf planet.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n"
37       allow(Facter::Util::Resolution).to receive(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true dist-upgrade 2>&1').and_return(apt_output)
38     end
39     it { is_expected.to be true }
40   end
41 end