Skip to content

Commit a535c4d

Browse files
committed
Drop work on also handling debian package.
- just report nil if command fails Signed-off-by: Robert Waffen <[email protected]>
1 parent 17ff4e2 commit a535c4d

File tree

2 files changed

+7
-77
lines changed

2 files changed

+7
-77
lines changed

lib/facter/puppetdb_version.rb

+4-20
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,9 @@
22
confine { Facter::Util::Resolution.which('puppetdb') }
33

44
setcode do
5-
command = 'puppetdb --version'
6-
splitter = ':'
7-
postion = 'last'
8-
9-
if Facter.value(:os)['family'] == 'Debian'
10-
package_maintainer = Facter::Core::Execution.execute('apt-cache show puppetdb | grep "Maintainer:" | head -1')
11-
12-
unless package_maintainer.include? 'Puppet Labs'
13-
command = 'dpkg-query --showformat=\'${Version}\' --show puppetdb'
14-
splitter = '-'
15-
postion = 'first'
16-
end
17-
end
18-
19-
begin
20-
output = Facter::Core::Execution.execute(command)
21-
output.split(splitter).send(postion).strip
22-
rescue Facter::Core::Execution::ExecutionFailure
23-
nil
24-
end
5+
output = Facter::Core::Execution.execute('puppetdb --version')
6+
output.split(':').last.strip
7+
rescue Facter::Core::Execution::ExecutionFailure
8+
nil
259
end
2610
end

spec/unit/facter/puppetdb_version_spec.rb

+3-57
Original file line numberDiff line numberDiff line change
@@ -6,65 +6,11 @@
66
end
77

88
context 'when puppetdb is available' do
9-
before do
9+
before(:each) do
1010
allow(Facter::Util::Resolution).to receive(:which).with('puppetdb').and_return('/usr/bin/puppetdb')
1111
end
1212

13-
context 'on a Debian-based system' do
14-
before do
15-
allow(Facter).to receive(:value).with(:os).and_return({ 'family' => 'Debian' })
16-
end
17-
18-
context 'when Puppet Labs is the maintainer' do
19-
before do
20-
allow(Facter::Core::Execution).to receive(:execute)
21-
.with('apt-cache show puppetdb | grep "Maintainer:" | head -1')
22-
.and_return('Maintainer: Puppet Labs')
23-
end
24-
25-
it 'returns the correct version from puppetdb --version' do
26-
expect(Facter::Core::Execution).to receive(:execute)
27-
.with('puppetdb --version')
28-
.and_return('puppetdb version: 7.19.0')
29-
30-
expect(Facter.fact(:puppetdb_version).value).to eq('7.19.0')
31-
end
32-
33-
it 'returns nil if the command execution fails' do
34-
allow(Facter::Core::Execution).to receive(:execute).with('puppetdb --version').and_raise(Facter::Core::Execution::ExecutionFailure)
35-
36-
expect(Facter.fact(:puppetdb_version).value).to be_nil
37-
end
38-
end
39-
40-
context 'when Puppet Labs is not the maintainer' do
41-
before do
42-
allow(Facter::Core::Execution).to receive(:execute)
43-
.with('apt-cache show puppetdb | grep "Maintainer:" | head -1')
44-
.and_return('Maintainer: Other Maintainer')
45-
end
46-
47-
it 'returns the correct version from dpkg-query' do
48-
expect(Facter::Core::Execution).to receive(:execute)
49-
.with("dpkg-query --showformat='${Version}' --show puppetdb")
50-
.and_return('7.9.0-1ubuntu1')
51-
52-
expect(Facter.fact(:puppetdb_version).value).to eq('7.9.0')
53-
end
54-
55-
it 'returns nil if the command execution fails' do
56-
allow(Facter::Core::Execution).to receive(:execute).with("dpkg-query --showformat='${Version}' --show puppetdb").and_raise(Facter::Core::Execution::ExecutionFailure)
57-
58-
expect(Facter.fact(:puppetdb_version).value).to be_nil
59-
end
60-
end
61-
end
62-
63-
context 'on a non-Debian-based system' do
64-
before do
65-
allow(Facter).to receive(:value).with(:os).and_return({ 'family' => 'RedHat' })
66-
end
67-
13+
context 'on a default system' do
6814
it 'returns the correct version from puppetdb --version' do
6915
expect(Facter::Core::Execution).to receive(:execute)
7016
.with('puppetdb --version')
@@ -82,7 +28,7 @@
8228
end
8329

8430
context 'when puppetdb is not available' do
85-
before do
31+
before(:each) do
8632
allow(Facter::Util::Resolution).to receive(:which).with('puppetdb').and_return(nil)
8733
end
8834

0 commit comments

Comments
 (0)