mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
4b9acb4800
* Bump Rubocop to 0.49.1 This change bumps Rubocop to 0.49.1. There have been a lot of changes since 0.39.0 and this PR is hopefully a nice compromise of turning off certain cops and updating our codebase to take advantage of new Ruby 2.3 methods and operators. Signed-off-by: Adam Leff <adam@leff.co> * Set end-of-line format to line-feed only, avoid Windows-related CRLF issues Signed-off-by: Adam Leff <adam@leff.co>
58 lines
1.4 KiB
Ruby
58 lines
1.4 KiB
Ruby
# encoding: utf-8
|
|
# copyright: 2015, Vulcano Security GmbH
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
module Inspec::Resources
|
|
class PowershellScript < Cmd
|
|
name 'powershell'
|
|
desc 'Use the powershell InSpec audit resource to test a Windows PowerShell script on the Microsoft Windows platform.'
|
|
example "
|
|
script = <<-EOH
|
|
# your powershell script
|
|
EOH
|
|
|
|
describe powershell(script) do
|
|
its('matcher') { should eq 'output' }
|
|
end
|
|
"
|
|
|
|
def initialize(script)
|
|
unless inspec.os.windows?
|
|
super('')
|
|
return skip_resource 'The `script` resource is not supported on your OS yet.'
|
|
end
|
|
# since WinRM 2.0 and the default use of powershell for local execution in
|
|
# train, we do not need to wrap the script here anymore
|
|
super(script)
|
|
end
|
|
|
|
# we cannot determine if a command exists, because that does not work for scripts
|
|
def exist?
|
|
nil
|
|
end
|
|
|
|
# Removes leading and trailing whitespace from stdout
|
|
def strip
|
|
result.stdout&.strip
|
|
end
|
|
|
|
def to_s
|
|
'Powershell'
|
|
end
|
|
end
|
|
|
|
# this is deprecated syntax and will be removed in future versions
|
|
class LegacyPowershellScript < PowershellScript
|
|
name 'script'
|
|
|
|
def initialize(script)
|
|
deprecated
|
|
super(script)
|
|
end
|
|
|
|
def deprecated
|
|
warn '[DEPRECATION] `script(script)` is deprecated. Please use `powershell(script)` instead.'
|
|
end
|
|
end
|
|
end
|