inspec/lib/resources/gem.rb
Keith Walters 215ef38ee9 Fix installed? check for gem resource
The gem resource used to determine if a gem is installed based on the exit
status of the `gem` command, however that command will return zero
if the package was found or not. This patch checks to ensure that the
`gem list` command actually includes the gem name or is empty to
determine if the gem is in fact installed.

If the gem command returns something other than a `0` exit code, then
it'll skip the resource.

Signed-off-by: Keith Walters <keith.walters@cattywamp.us>
2017-05-22 15:34:01 -05:00

71 lines
1.8 KiB
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
# author: Joe Nuspl
module Inspec::Resources
class GemPackage < Inspec.resource(1)
name 'gem'
desc 'Use the gem InSpec audit resource to test if a global gem package is installed.'
example "
describe gem('rubocop') do
it { should be_installed }
its('version') { should eq '0.33.0' }
end
"
attr_reader :gem_binary
def initialize(package_name, gem_binary = nil)
@package_name = package_name
@gem_binary = case gem_binary
when nil
'gem'
when :chef
if inspec.os.windows?
'c:\opscode\chef\embedded\bin\gem.bat'
else
'/opt/chef/embedded/bin/gem'
end
when :chef_server
'/opt/opscode/embedded/bin/gem'
else
gem_binary
end
skip_resource 'Unable to retrieve gem information' if info.empty?
end
def info
return @info if defined?(@info)
cmd = inspec.command("#{@gem_binary} list --local -a -q \^#{@package_name}\$")
return {} unless cmd.exit_status.zero?
# extract package name and version
# parses data like winrm (1.3.4, 1.3.3)
params = /^\s*([^\(]*?)\s*\((.*?)\)\s*$/.match(cmd.stdout.chomp)
@info = {
installed: !params.nil?,
type: 'gem',
}
return @info unless @info[:installed]
versions = params[2].split(',')
@info[:name] = params[1]
@info[:version] = versions[0]
@info
end
def installed?
info[:installed] == true
end
def version
info[:version]
end
def to_s
"gem package #{@package_name}"
end
end
end