inspec/test/unit/resources/command_test.rb
Ryan Davis 07dc5e3192 First pass at cleaning deprecations for old minitest/spec-style tests.
3 files left to go, and they're behaving oddly so I'm leaving them out
in this pass. Looks like 21 deprecations left.

Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-10-03 13:45:19 -07:00

54 lines
1.9 KiB
Ruby

require "helper"
require "inspec/resource"
require "inspec/resources/command"
require "inspec/resources/os"
describe Inspec::Resources::Cmd do
let(:x) { rand.to_s }
def resource(command, options = {} )
load_resource("command", command, options)
end
it "prints as a bash command" do
_(resource(x).to_s).must_equal "Command: `#{x}`"
end
it "runs a valid mocked command" do
_(resource("env").result).wont_be_nil
_(resource("env").stdout).must_equal "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n"
_(resource("env").stderr).must_equal ""
_(resource("env").exit_status).must_equal 0
end
it "exist? returns false on nil os name" do
Inspec::Resources::OSResource.any_instance.stubs(:name).returns(nil)
_(resource("test").exist?).must_equal false
end
it "exist? returns false on mock os name" do
Inspec::Resources::OSResource.any_instance.stubs(:name).returns("mock")
_(resource("test").exist?).must_equal false
end
it "raises when called with nil as a command" do
_(proc { resource(nil).result }).must_raise StandardError
end
it "fails the resource if `redact_regex` is not a regular expression" do
result = resource("env", redact_regex: "string")
_(result.resource_failed?).must_equal true
_(result.resource_exception_message).must_match(/must be a regular expression/)
end
it "redacts output if `redact_regex` is passed with caputure groups" do
cmd = "command_with_password -p supersecret -d no_redact"
expected_to_s = "Command: `command_with_password -p REDACTED -d no_redact`"
_(resource(cmd, redact_regex: /(-p ).*( -d)/).to_s).must_equal(expected_to_s)
end
it "redacts output if `redact_regex` is passed without a caputure group" do
cmd = "command_with_password -p supersecret -d no_redact"
expected_to_s = "Command: `command_with_password REDACTED no_redact`"
_(resource(cmd, redact_regex: /-p .* -d/).to_s).must_equal(expected_to_s)
end
end