inspec/lib/resources/script.rb

42 lines
1 KiB
Ruby
Raw Normal View History

# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
# author: Christoph Hartmann
# author: Dominik Richter
# license: All rights reserved
class Script < Cmd
name 'script'
2015-11-27 13:02:38 +00:00
desc 'Use the script InSpec audit resource to test a Windows PowerShell script on the Microsoft Windows platform.'
example "
script = <<-EOH
# you powershell script
EOH
describe script(script) do
its('matcher') { should eq 'output' }
end
"
2015-10-07 11:13:37 +00:00
def initialize(script)
2016-02-09 10:04:50 +00:00
unless inspec.os.windows?
return skip_resource 'The `script` resource is not supported on your OS yet.'
end
2016-02-09 10:04:50 +00:00
# encodes a script as base64 to run as powershell encodedCommand
# this comes with performance issues: @see https://gist.github.com/fnichol/7b20596b950e65fb96f9
require 'winrm'
script = WinRM::PowershellScript.new(script)
cmd = "powershell -encodedCommand #{script.encoded}"
2015-11-17 21:10:36 +00:00
super(cmd)
end
2015-10-07 11:15:04 +00:00
# we cannot determine if a command exists, because that does not work for scripts
def exist?
nil
end
def to_s
'Script'
end
end