2016-09-22 12:43:57 +00:00
|
|
|
---
|
|
|
|
title: About the powershell Resource
|
|
|
|
---
|
|
|
|
|
|
|
|
# powershell
|
|
|
|
|
|
|
|
Use the `powershell` InSpec audit resource to test a Powershell script on the Windows platform.
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
## Syntax
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
A `powershell` resource block declares a Powershell script to be tested, and then compares the output of that command to the matcher in the test:
|
|
|
|
|
|
|
|
script = <<-EOH
|
|
|
|
# a PowerShell script
|
|
|
|
EOH
|
|
|
|
|
2016-11-20 01:37:24 +00:00
|
|
|
describe powershell(script) do
|
2016-09-22 12:43:57 +00:00
|
|
|
its('matcher') { should eq 'output' }
|
|
|
|
end
|
|
|
|
|
|
|
|
where
|
|
|
|
|
|
|
|
* `'script'` must specify a Powershell script to be run
|
|
|
|
* `'matcher'` is one of `exit_status`, `stderr`, or `stdout`
|
|
|
|
* `'output'` tests the output of the command run on the system versus the output value stated in the test
|
|
|
|
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
## Matchers
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
This InSpec audit resource has the following matchers:
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### be
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
<%= partial "/shared/matcher_be" %>
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### cmp
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
<%= partial "/shared/matcher_cmp" %>
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### eq
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
<%= partial "/shared/matcher_eq" %>
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### exit_status
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
The `exit_status` matcher tests the exit status for the command:
|
|
|
|
|
|
|
|
its('exit_status') { should eq 123 }
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### include
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
<%= partial "/shared/matcher_include" %>
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### match
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
<%= partial "/shared/matcher_match" %>
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### stderr
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
The `stderr` matcher tests results of the command as returned in standard error (stderr):
|
|
|
|
|
|
|
|
its('stderr') { should eq 'error' }
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### stdout
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
The `stdout` matcher tests results of the command as returned in standard output (stdout):
|
|
|
|
|
|
|
|
its('stdout') { should eq '/^1$/' }
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
## Examples
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
The following examples show how to use this InSpec audit resource.
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### Get all groups of Administrator user
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
script = <<-EOH
|
|
|
|
# find user
|
|
|
|
$user = Get-WmiObject Win32_UserAccount -filter "Name = 'Administrator'"
|
|
|
|
# get related groups
|
|
|
|
$groups = $user.GetRelated('Win32_Group') | Select-Object -Property Caption, Domain, Name, LocalAccount, SID, SIDType, Status
|
|
|
|
$groups | ConvertTo-Json
|
|
|
|
EOH
|
|
|
|
|
|
|
|
describe powershell(script) do
|
|
|
|
its('stdout') { should_not eq '' }
|
|
|
|
end
|
|
|
|
|
2016-09-27 19:03:23 +00:00
|
|
|
### Write-Output 'hello'
|
2016-09-22 12:43:57 +00:00
|
|
|
|
|
|
|
The following Powershell script:
|
|
|
|
|
|
|
|
script = <<-EOH
|
|
|
|
Write-Output 'hello'
|
|
|
|
EOH
|
|
|
|
|
|
|
|
can be tested in the following ways.
|
|
|
|
|
|
|
|
For a newline:
|
|
|
|
|
|
|
|
describe powershell(script) do
|
|
|
|
its('stdout') { should eq "hello\r\n" }
|
|
|
|
its('stderr') { should eq '' }
|
|
|
|
end
|
|
|
|
|
|
|
|
Removing whitespace `\r\n` from `stdout`:
|
|
|
|
|
|
|
|
describe powershell(script) do
|
|
|
|
its('strip') { should eq "hello" }
|
|
|
|
end
|
|
|
|
|
|
|
|
No newline:
|
|
|
|
|
|
|
|
describe powershell("'hello' | Write-Host -NoNewLine") do
|
|
|
|
its('stdout') { should eq 'hello' }
|
|
|
|
its('stderr') { should eq '' }
|
|
|
|
end
|