2016-09-22 12:43:57 +00:00
---
title: About the command Resource
2018-02-16 00:28:15 +00:00
platform: os
2016-09-22 12:43:57 +00:00
---
# command
2019-04-26 18:24:29 +00:00
Use the `command` Chef InSpec audit resource to test an arbitrary command that is run on the system.
2016-09-22 12:43:57 +00:00
2017-10-03 21:35:10 +00:00
<br>
2018-08-09 12:34:49 +00:00
## Availability
### Installation
2019-04-26 18:24:29 +00:00
This resource is distributed along with Chef InSpec itself. You can use it automatically.
2018-08-09 12:34:49 +00:00
### Version
This resource first became available in v1.0.0 of InSpec.
2016-09-27 19:03:23 +00:00
## Syntax
2016-09-22 12:43:57 +00:00
2018-02-01 22:42:27 +00:00
A `command` resource block declares a command to be run, one (or more) expected values, and the location to which that output is sent:
2016-09-22 12:43:57 +00:00
describe command('command') do
it { should exist }
2018-02-01 22:42:27 +00:00
its('property') { should eq 'value' }
2016-09-22 12:43:57 +00:00
end
where
* `'command'` must specify a command to be run
2018-02-01 22:42:27 +00:00
* `'property'` is one of `exit_status`, `stderr`, or `stdout`
2016-09-22 12:43:57 +00:00
* `'output'` tests the output of the command run on the system versus the output value stated in the test
2017-10-03 21:35:10 +00:00
<br>
2016-09-22 12:43:57 +00:00
2018-02-01 22:42:27 +00:00
## Property Examples
2016-09-22 12:43:57 +00:00
2019-04-26 18:24:29 +00:00
The following examples show how to use this Chef InSpec audit resource.
2016-09-22 12:43:57 +00:00
2018-02-01 22:42:27 +00:00
### exit_status
2016-09-22 12:43:57 +00:00
2018-02-01 22:42:27 +00:00
The `exit_status` property tests the exit status for the command:
its('exit_status') { should eq 123 }
### stderr
The `stderr` property tests results of the command as returned in standard error (stderr):
its('stderr') { should eq 'error' }
### stdout
The `stdout` property tests results of the command as returned in standard output (stdout). The following example shows matching output using a regular expression:
describe command('echo 1') do
its('stdout') { should match (/[0-9]/) }
2016-09-22 12:43:57 +00:00
end
2016-09-27 19:03:23 +00:00
### Test standard output (stdout)
2016-09-22 12:43:57 +00:00
describe command('echo hello') do
2017-01-16 03:30:57 +00:00
its('stdout') { should eq "hello\n" }
2016-09-22 12:43:57 +00:00
its('stderr') { should eq '' }
its('exit_status') { should eq 0 }
end
2016-09-27 19:03:23 +00:00
### Test standard error (stderr)
2016-09-22 12:43:57 +00:00
describe command('>&2 echo error') do
its('stdout') { should eq '' }
2017-01-16 03:30:57 +00:00
its('stderr') { should eq "error\n" }
2016-09-22 12:43:57 +00:00
its('exit_status') { should eq 0 }
end
2016-09-27 19:03:23 +00:00
### Test an exit status code
2016-09-22 12:43:57 +00:00
describe command('exit 123') do
its('stdout') { should eq '' }
its('stderr') { should eq '' }
its('exit_status') { should eq 123 }
end
2016-09-27 19:03:23 +00:00
### Test if the command shell exists
2016-09-22 12:43:57 +00:00
describe command('/bin/sh').exist? do
it { should eq true }
end
2016-09-27 19:03:23 +00:00
### Test for a command that should not exist
2016-09-22 12:43:57 +00:00
describe command('this is not existing').exist? do
it { should eq false }
end
2018-02-01 22:42:27 +00:00
### Test for PostgreSQL database running a RC, development, or beta release
describe command('psql -V') do
its('stdout') { should eq '/RC/' }
its('stdout') { should_not eq '/DEVEL/' }
its('stdout') { should_not eq '/BETA/' }
end
2016-09-27 19:03:23 +00:00
### Verify NTP
2016-09-22 12:43:57 +00:00
The following example shows how to use the `file` audit resource to verify if the `ntp.conf` and `leap-seconds` files are present, and then the `command` resource to verify if NTP is installed and running:
describe file('/etc/ntp.conf') do
it { should be_file }
end
describe file('/etc/ntp.leapseconds') do
it { should be_file }
end
describe command('pgrep ntp') do
its('exit_status') { should eq 0 }
end
2016-09-27 19:03:23 +00:00
### Verify WiX
2016-09-22 12:43:57 +00:00
2018-03-20 12:43:30 +00:00
Wix includes several tools -- such as `candle` (preprocesses and compiles source files into object files), `light` (links and binds object files to an installer database), and `heat` (harvests files from various input formats). The following example uses a whitespace array and the `file` audit resource to verify if these three tools are present:
2016-09-22 12:43:57 +00:00
%w(
candle.exe
heat.exe
light.exe
).each do |utility|
2016-09-27 19:03:23 +00:00
describe file("C:/wix/##{utility}") do
2016-09-22 12:43:57 +00:00
it { should be_file }
end
end
2017-10-03 21:35:10 +00:00
2018-07-16 12:20:57 +00:00
### Redacting Sensitive Commands
2019-04-26 18:24:29 +00:00
By default the command that is ran is shown in the Chef InSpec output. This can be problematic if the command contains sensitive arguments such as a password. These sensitive parts can be redacted by passing in `redact_regex` and a regular expression to redact. Optionally, you can use 2 capture groups to fine tune what is redacted.
2018-07-16 12:20:57 +00:00
The following examples show how to use `redact_regex`:
# Example without capture groups
describe command('myapp -p secretpassword -d no_redact', redact_regex: /-p .* -d/) do
its('exit_status') { should cmp 0 }
end
# Result (no capture groups used)
Command: `myapp REDACTED no_redact`
✔ exit_status should cmp == 0
# Example with capture groups
# Each set of parenthesis is a capture group.
# Anything in the two capture groups will not be 'REDACTED'
describe command('myapp -p secretpassword -d no_redact', redact_regex: /(-p ).*( -d)/) do
its('exit_status') { should cmp 0 }
end
# Result (capture groups used)
Command: `myapp -p REDACTED -d no_redact`
✔ exit_status should cmp == 0
> For more info/help on regular expressions, we recommend [RegExr](https://regexr.com/)
2017-10-03 21:35:10 +00:00
<br>
## Matchers
2018-02-16 03:07:18 +00:00
For a full list of available matchers, please visit our [matchers page](https://www.inspec.io/docs/reference/matchers/).
2017-10-03 21:35:10 +00:00
### exist
The `exist` matcher tests if a command may be run on the system:
it { should exist }