Skip to content

Commit

Permalink
Add a facter fact for dist-upgrade
Browse files Browse the repository at this point in the history
This commit adds a facter fact for dist-upgrade, along with
associated facter facts.
  • Loading branch information
Will Meek committed Nov 7, 2017
1 parent b24d45d commit a1ba556
Show file tree
Hide file tree
Showing 6 changed files with 287 additions and 8 deletions.
65 changes: 57 additions & 8 deletions lib/facter/apt_updates.rb
Original file line number Diff line number Diff line change
@@ -1,32 +1,45 @@
apt_package_updates = nil
Facter.add('apt_has_updates') do
confine osfamily: 'Debian'
apt_dist_updates = nil

def get_updates(upgrade_option)
apt_updates = nil
if File.executable?('/usr/bin/apt-get')
apt_get_result = Facter::Util::Resolution.exec('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1')
apt_get_result = Facter::Util::Resolution.exec("/usr/bin/apt-get -s -o Debug::NoLocking=true #{upgrade_option} 2>&1")
unless apt_get_result.nil?
apt_package_updates = [[], []]
apt_updates = [[], []]
apt_get_result.each_line do |line|
next unless line =~ %r{^Inst\s}
package = line.gsub(%r{^Inst\s([^\s]+)\s.*}, '\1').strip
apt_package_updates[0].push(package)
apt_updates[0].push(package)
security_matches = [
%r{ Debian-Security:},
%r{ Ubuntu[^\s]+-security[, ]},
%r{ gNewSense[^\s]+-security[, ]},
]
re = Regexp.union(security_matches)
if line.match(re)
apt_package_updates[1].push(package)
apt_updates[1].push(package)
end
end
end
end

setcode do
if !apt_package_updates.nil? && apt_package_updates.length == 2
apt_package_updates != [[], []]
if !apt_updates.nil? && apt_updates.length == 2
apt_updates != [[], []]
end
end
apt_updates
end

Facter.add('apt_has_updates') do
confine osfamily: 'Debian'
apt_package_updates = get_updates('upgrade')
end

Facter.add('apt_has_dist_updates') do
confine osfamily: 'Debian'
apt_dist_updates = get_updates('dist-upgrade')
end

Facter.add('apt_package_updates') do
Expand All @@ -40,6 +53,17 @@
end
end

Facter.add('apt_package_dist_updates') do
confine apt_has_dist_updates: true
setcode do
if Facter.version < '2.0.0'
apt_dist_updates[0].join(',')
else
apt_dist_updates[0]
end
end
end

Facter.add('apt_package_security_updates') do
confine apt_has_updates: true
setcode do
Expand All @@ -51,16 +75,41 @@
end
end

Facter.add('apt_package_security_dist_updates') do
confine apt_has_dist_updates: true
setcode do
if Facter.version < '2.0.0'
apt_dist_updates[1].join(',')
else
apt_dist_updates[1]
end
end
end

Facter.add('apt_updates') do
confine apt_has_updates: true
setcode do
Integer(apt_package_updates[0].length)
end
end

Facter.add('apt_dist_updates') do
confine apt_has_dist_updates: true
setcode do
Integer(apt_dist_updates[0].length)
end
end

Facter.add('apt_security_updates') do
confine apt_has_updates: true
setcode do
Integer(apt_package_updates[1].length)
end
end

Facter.add('apt_security_dist_updates') do
confine apt_has_dist_updates: true
setcode do
Integer(apt_dist_updates[1].length)
end
end
42 changes: 42 additions & 0 deletions spec/unit/facter/apt_dist_has_updates_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
require 'spec_helper'

describe 'apt_has_dist_updates fact' do
subject { Facter.fact(:apt_has_dist_updates).value }

after(:each) { Facter.clear }

describe 'on non-Debian distro' do
before(:each) do
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'RedHat'
end
it { is_expected.to be_nil }
end

describe 'on Debian based distro missing apt-get' do
before(:each) do
Facter.fact(:osfamily).expects(:value).at_least(1).returns 'Debian'
File.stubs(:executable?) # Stub all other calls
File.expects(:executable?).with('/usr/bin/apt-get').returns false
end
it { is_expected.to be_nil }
end

describe 'on Debian based distro' do
before(:each) do
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/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns 'test'
File.expects(:executable?).with('/usr/bin/apt-get').returns true
apt_output = <<-EOT
Inst extremetuxracer [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])
Conf extremetuxracer (2015g-0+deb8u1 Debian:stable-updates [all])
Inst planet.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])
Conf planet.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])
EOT
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true dist-upgrade 2>&1').returns apt_output
end
it { is_expected.to be true }
end
end
64 changes: 64 additions & 0 deletions spec/unit/facter/apt_dist_package_security_updates_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
require 'spec_helper'

describe 'apt_package_security_dist_updates fact' do
subject { Facter.fact(:apt_package_security_dist_updates).value }

after(:each) { Facter.clear }

describe 'when apt has no updates' do
before(:each) do
Facter.fact(:apt_has_dist_updates).stubs(:value).returns false
end
it { is_expected.to be nil }
end

describe 'when apt has updates' do
before(:each) do
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
File.stubs(:executable?) # Stub all other calls
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
File.expects(:executable?).with('/usr/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns 'test'
File.expects(:executable?).with('/usr/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true dist-upgrade 2>&1').returns apt_get_upgrade_output
end

describe 'on Debian' do
let(:apt_get_upgrade_output) do
"Inst extremetuxracer [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n" \
"Conf extremetuxracer (2015g-0+deb8u1 Debian:stable-updates [all])\n" \
"Inst planet.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n" \
"Conf planet.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n" \
"Inst vim [7.52.1-5] (7.52.1-5+deb9u2 Debian-Security:9/stable [amd64]) []\n" \
"Conf vim (7.52.1-5+deb9u2 Debian-Security:9/stable [amd64])\n" \
end

it {
if Facter.version < '2.0.0'
is_expected.to eq('vim')
else
is_expected.to eq(['vim'])
end
}
end

describe 'on Ubuntu' do
let(:apt_get_upgrade_output) do
"Inst extremetuxracer [2016f-0ubuntu0.16.04] (2016j-0ubuntu0.16.04 Ubuntu:16.04/xenial-security, Ubuntu:16.04/xenial-updates [all])\n" \
"Conf extremetuxracer (2016j-0ubuntu0.16.04 Ubuntu:16.04/xenial-security, Ubuntu:16.04/xenial-updates [all])\n" \
"Inst vim [7.47.0-1ubuntu2] (7.47.0-1ubuntu2.2 Ubuntu:16.04/xenial-security [amd64]) []\n" \
"Conf vim (7.47.0-1ubuntu2.2 Ubuntu:16.04/xenial-security [amd64])\n" \
"Inst onioncircuits [2:3.3.10-4ubuntu2] (2:3.3.10-4ubuntu2.3 Ubuntu:16.04/xenial-updates [amd64])\n" \
"Conf onioncircuits (2:3.3.10-4ubuntu2.3 Ubuntu:16.04/xenial-updates [amd64])\n"
end

it {
if Facter.version < '2.0.0'
is_expected.to eq('extremetuxracer,vim')
else
is_expected.to eq(%w[extremetuxracer vim])
end
}
end
end
end
39 changes: 39 additions & 0 deletions spec/unit/facter/apt_dist_package_updates_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
require 'spec_helper'

describe 'apt_package_dist_updates fact' do
subject { Facter.fact(:apt_package_dist_updates).value }

after(:each) { Facter.clear }

describe 'when apt has no updates' do
before(:each) do
Facter.fact(:apt_has_dist_updates).stubs(:value).returns false
end
it { is_expected.to be nil }
end

describe 'when apt has updates' do
before(:each) do
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
File.stubs(:executable?) # Stub all other calls
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
File.expects(:executable?).with('/usr/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns 'test'
File.expects(:executable?).with('/usr/bin/apt-get').returns true
apt_output = <<-EOT
Inst extremetuxracer [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])
Conf extremetuxracer (2015g-0+deb8u1 Debian:stable-updates [all])
Inst planet.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])
Conf planet.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])
EOT
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true dist-upgrade 2>&1').returns apt_output
end
it {
if Facter.version < '2.0.0'
is_expected.to eq('extremetuxracer,planet.rb')
else
is_expected.to eq(['extremetuxracer', 'planet.rb'])
end
}
end
end
52 changes: 52 additions & 0 deletions spec/unit/facter/apt_dist_security_updates_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
require 'spec_helper'

describe 'apt_security_updates fact' do
subject { Facter.fact(:apt_security_dist_updates).value }

after(:each) { Facter.clear }

describe 'when apt has no updates' do
before(:each) do
Facter.fact(:apt_has_dist_updates).stubs(:value).returns false
end
it { is_expected.to be nil }
end

describe 'when apt has security updates' do
before(:each) do
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
File.stubs(:executable?) # Stub all other calls
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
File.expects(:executable?).with('/usr/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns 'test'
File.expects(:executable?).with('/usr/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true dist-upgrade 2>&1').returns apt_get_upgrade_output
end

describe 'on Debian' do
let(:apt_get_upgrade_output) do
"Inst extremetuxracer [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])\n" \
"Conf extremetuxracer (2015g-0+deb8u1 Debian:stable-updates [all])\n" \
"Inst planet.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n" \
"Conf planet.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])\n" \
"Inst vim [7.52.1-5] (7.52.1-5+deb9u2 Debian-Security:9/stable [amd64]) []\n" \
"Conf vim (7.52.1-5+deb9u2 Debian-Security:9/stable [amd64])\n" \
end

it { is_expected.to eq(1) }
end

describe 'on Ubuntu' do
let(:apt_get_upgrade_output) do
"Inst extremetuxracer [2016f-0ubuntu0.16.04] (2016j-0ubuntu0.16.04 Ubuntu:16.04/xenial-security, Ubuntu:16.04/xenial-updates [all])\n" \
"Conf extremetuxracer (2016j-0ubuntu0.16.04 Ubuntu:16.04/xenial-security, Ubuntu:16.04/xenial-updates [all])\n" \
"Inst vim [7.47.0-1ubuntu2] (7.47.0-1ubuntu2.2 Ubuntu:16.04/xenial-security [amd64]) []\n" \
"Conf vim (7.47.0-1ubuntu2.2 Ubuntu:16.04/xenial-security [amd64])\n" \
"Inst onioncircuits [2:3.3.10-4ubuntu2] (2:3.3.10-4ubuntu2.3 Ubuntu:16.04/xenial-updates [amd64])\n" \
"Conf onioncircuits (2:3.3.10-4ubuntu2.3 Ubuntu:16.04/xenial-updates [amd64])\n"
end

it { is_expected.to eq(2) }
end
end
end
33 changes: 33 additions & 0 deletions spec/unit/facter/apt_dist_updates_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
require 'spec_helper'

describe 'apt_updates fact' do
subject { Facter.fact(:apt_dist_updates).value }

after(:each) { Facter.clear }

describe 'when apt has no updates' do
before(:each) do
Facter.fact(:apt_has_dist_updates).stubs(:value).returns false
end
it { is_expected.to be nil }
end

describe 'when apt has updates' do
before(:each) do
Facter.fact(:osfamily).stubs(:value).returns 'Debian'
File.stubs(:executable?) # Stub all other calls
Facter::Util::Resolution.stubs(:exec) # Catch all other calls
File.expects(:executable?).with('/usr/bin/apt-get').returns true
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade 2>&1').returns 'test'
File.expects(:executable?).with('/usr/bin/apt-get').returns true
apt_output = <<-EOT
Inst extremetuxracer [2015f-0+deb8u1] (2015g-0+deb8u1 Debian:stable-updates [all])
Conf extremetuxracer (2015g-0+deb8u1 Debian:stable-updates [all])
Inst planet.rb [13-1.1] (22-2~bpo8+1 Debian Backports:jessie-backports [all])
Conf planet.rb (22-2~bpo8+1 Debian Backports:jessie-backports [all])
EOT
Facter::Util::Resolution.expects(:exec).with('/usr/bin/apt-get -s -o Debug::NoLocking=true dist-upgrade 2>&1').returns apt_output
end
it { is_expected.to eq(2) }
end
end

0 comments on commit a1ba556

Please sign in to comment.