e7fee16589
The /usr/lib/update-notifier/apt-check script returns its output to STDERR but a recent change to the script redirects STDERR to /dev/null. This will cause the array to always be empty. Combined with that problem, while we were checking for the result being nil, we never checked for an invalid array. As a result, the apt_has_updates was always true and the apt_updates and apt_security_updates facts were trying to read from an empty array and failing.
56 lines
2.2 KiB
Ruby
56 lines
2.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'apt_has_updates fact' do
|
|
subject { Facter.fact(:apt_has_updates).value }
|
|
after(:each) { Facter.clear }
|
|
|
|
describe 'on non-Debian distro' do
|
|
before {
|
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'RedHat'
|
|
}
|
|
it { should be_nil }
|
|
end
|
|
|
|
describe 'on Debian based distro missing update-notifier-common' do
|
|
before {
|
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
|
File.stubs(:executable?) # Stub all other calls
|
|
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns false
|
|
}
|
|
it { should be_nil }
|
|
end
|
|
|
|
describe 'on Debian based distro with broken packages' do
|
|
before {
|
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
|
File.stubs(:executable?) # Stub all other calls
|
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
|
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "E: Error: BrokenCount > 0"
|
|
}
|
|
it { should be_nil }
|
|
end
|
|
|
|
describe 'on Debian based distro with unknown error with semicolons' do
|
|
before {
|
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
|
File.stubs(:executable?) # Stub all other calls
|
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
|
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "E: Unknown Error: 'This error contains something that could be parsed like 4;3' (10)"
|
|
}
|
|
it { should be_nil }
|
|
end
|
|
|
|
describe 'on Debian based distro' do
|
|
before {
|
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
|
File.stubs(:executable?) # Stub all other calls
|
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
|
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "4;3"
|
|
}
|
|
it { should be true }
|
|
end
|
|
end
|
|
|