Class: OneGetPackage

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/oneget.rb

Overview

This resource talks with OneGet (github.com/OneGet/oneget) Its part of Windows Management Framework 5.0 and part of Windows 10

Usage: describe oneget(‘zoomit’) do

it { should be_installed }

end

Instance Method Summary collapse

Constructor Details

#initialize(package_name) ⇒ OneGetPackage

Returns a new instance of OneGetPackage.



21
22
23
24
25
26
# File 'lib/resources/oneget.rb', line 21

def initialize(package_name)
  @package_name = package_name

  # verify that this resource is only supported on Windows
  return skip_resource 'The `oneget` resource is not supported on your OS.' if inspec.os[:family] != 'windows'
end

Instance Method Details

#infoObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/resources/oneget.rb', line 28

def info
  return @info if defined?(@info)

  @info = {}
  @info[:type] = 'oneget'
  @info[:installed] = false

  cmd = inspec.command("Get-Package -Name '#{@package_name}' | ConvertTo-Json")
  # cannot rely on exit code for now, successful command returns exit code 1
  # return nil if cmd.exit_status != 0
  # try to parse json

  begin
    pkgs = JSON.parse(cmd.stdout)
    @info[:installed] = true

    # sometimes we get multiple values
    if pkgs.is_a?(Array)
      # select the first entry
      pkgs = pkgs.first
    end
  rescue JSON::ParserError => _e
    return @info
  end

  @info[:name] = pkgs['Name'] if pkgs.key?('Name')
  @info[:version] = pkgs['Version'] if pkgs.key?('Version')
  @info
end

#installed?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/resources/oneget.rb', line 58

def installed?
  info[:installed] == true
end

#to_sObject



66
67
68
# File 'lib/resources/oneget.rb', line 66

def to_s
  "OneGet Package #{@package_name}"
end

#versionObject



62
63
64
# File 'lib/resources/oneget.rb', line 62

def version
  info[:version]
end