Fix apt_has_updates fact not parsing apt-check output correctly
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.
This commit is contained in:
parent
6d60659e70
commit
e7fee16589
5 changed files with 39 additions and 12 deletions
|
@ -2,18 +2,23 @@ apt_package_updates = nil
|
||||||
Facter.add("apt_has_updates") do
|
Facter.add("apt_has_updates") do
|
||||||
confine :osfamily => 'Debian'
|
confine :osfamily => 'Debian'
|
||||||
if File.executable?("/usr/lib/update-notifier/apt-check")
|
if File.executable?("/usr/lib/update-notifier/apt-check")
|
||||||
apt_package_updates = Facter::Util::Resolution.exec('/usr/lib/update-notifier/apt-check 2>/dev/null').split(';')
|
apt_check_result = Facter::Util::Resolution.exec('/usr/lib/update-notifier/apt-check 2>&1')
|
||||||
|
if not apt_check_result.nil? and apt_check_result =~ /^\d+;\d+$/
|
||||||
|
apt_package_updates = apt_check_result.split(';')
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
setcode do
|
setcode do
|
||||||
apt_package_updates != ['0', '0'] unless apt_package_updates.nil?
|
if not apt_package_updates.nil? and apt_package_updates.length == 2
|
||||||
|
apt_package_updates != ['0', '0']
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Facter.add("apt_package_updates") do
|
Facter.add("apt_package_updates") do
|
||||||
confine :apt_has_updates => true
|
confine :apt_has_updates => true
|
||||||
setcode do
|
setcode do
|
||||||
packages = Facter::Util::Resolution.exec('/usr/lib/update-notifier/apt-check -p 2>/dev/null').split("\n")
|
packages = Facter::Util::Resolution.exec('/usr/lib/update-notifier/apt-check -p 2>&1').split("\n")
|
||||||
if Facter.version < '2.0.0'
|
if Facter.version < '2.0.0'
|
||||||
packages.join(',')
|
packages.join(',')
|
||||||
else
|
else
|
||||||
|
|
|
@ -6,27 +6,49 @@ describe 'apt_has_updates fact' do
|
||||||
|
|
||||||
describe 'on non-Debian distro' do
|
describe 'on non-Debian distro' do
|
||||||
before {
|
before {
|
||||||
Facter.fact(:osfamily).expects(:value).returns 'RedHat'
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'RedHat'
|
||||||
}
|
}
|
||||||
it { should be_nil }
|
it { should be_nil }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'on Debian based distro missing update-notifier-common' do
|
describe 'on Debian based distro missing update-notifier-common' do
|
||||||
before {
|
before {
|
||||||
Facter.fact(:osfamily).expects(:value).returns 'Debian'
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns false
|
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns false
|
||||||
}
|
}
|
||||||
it { should be_nil }
|
it { should be_nil }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'on Debian based distro' do
|
describe 'on Debian based distro with broken packages' do
|
||||||
before {
|
before {
|
||||||
Facter.fact(:osfamily).expects(:value).returns 'Debian'
|
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
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>/dev/null').returns "4;3"
|
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 }
|
it { should be true }
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,8 +17,8 @@ describe 'apt_package_updates fact' do
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
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>/dev/null').returns "1;2"
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "1;2"
|
||||||
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check -p 2>/dev/null').returns "puppet-common\nlinux-generic\nlinux-image-generic"
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check -p 2>&1').returns "puppet-common\nlinux-generic\nlinux-image-generic"
|
||||||
}
|
}
|
||||||
it {
|
it {
|
||||||
if Facter.version < '2.0.0'
|
if Facter.version < '2.0.0'
|
||||||
|
|
|
@ -17,7 +17,7 @@ describe 'apt_security_updates fact' do
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
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>/dev/null').returns "14;7"
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "14;7"
|
||||||
}
|
}
|
||||||
it { should == 7 }
|
it { should == 7 }
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,7 +17,7 @@ describe 'apt_updates fact' do
|
||||||
File.stubs(:executable?) # Stub all other calls
|
File.stubs(:executable?) # Stub all other calls
|
||||||
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
|
||||||
File.expects(:executable?).with('/usr/lib/update-notifier/apt-check').returns true
|
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>/dev/null').returns "14;7"
|
Facter::Util::Resolution.expects(:exec).with('/usr/lib/update-notifier/apt-check 2>&1').returns "14;7"
|
||||||
}
|
}
|
||||||
it { should == 14 }
|
it { should == 14 }
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue