Cleanup via rubocop of ruby code
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_package_updates_spec.rb
1 require 'spec_helper'
2
3 describe 'apt_package_updates fact' do
4   subject { Facter.fact(:apt_package_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       apt_output = <<-EOT
22 Inst tzdata [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])
23 Conf tzdata (2015g-0+deb8u1 Debian:stable-updates [all])
24 Inst unhide.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])
25 Conf unhide.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])
26 EOT
27       Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns apt_output
28     end
29     it {
30       if Facter.version < '2.0.0'
31         is_expected.to eq('tzdata,unhide.rb')
32       else
33         is_expected.to eq(['tzdata', 'unhide.rb'])
34       end
35     }
36   end
37 end