mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
24f1fb18b6
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
require "helper"
|
|
require "inspec/resource"
|
|
require "inspec/resources/chocolatey_package"
|
|
|
|
describe "Inspec::Resources::ChocoPkg" do
|
|
it "can parse output from `choco` when package is installed" do
|
|
pkg = { name: "git", installed: false, version: nil, type: "chocolatey" }
|
|
resource = MockLoader.new(:windows).load_resource("chocolatey_package", "git")
|
|
_(resource.resource_id).must_equal "git"
|
|
_(resource.installed?).must_equal pkg[:installed]
|
|
_(resource.version).must_be_nil
|
|
_(resource.info).must_equal pkg
|
|
end
|
|
|
|
it "can parse output from `choco` when package not installed" do
|
|
pkg = { name: "nssm", installed: true, version: "2.24.101", type: "chocolatey" }
|
|
resource = MockLoader.new(:windows).load_resource("chocolatey_package", "nssm")
|
|
_(resource.installed?).must_equal pkg[:installed]
|
|
_(resource.version).must_equal pkg[:version]
|
|
_(resource.info).must_equal pkg
|
|
end
|
|
|
|
it "gets the resource_id for the current resource" do
|
|
resource = MockLoader.new(:windows).load_resource("chocolatey_package", "nssm")
|
|
_(resource.resource_id).must_equal "nssm"
|
|
end
|
|
end
|