inspec/examples/profile/controls/example.rb

36 lines
900 B
Ruby
Raw Normal View History

# copyright: 2016, Chef Software, Inc.
2015-12-14 13:23:41 +00:00
title 'Example Config Checks'
2015-12-14 13:23:41 +00:00
# To pass the test, create the following file
# ```bash
# mkdir -p /tmp/example
# cat <<EOF > /tmp/example/config.yaml
# version: '1.0'
# EOF
# ```
control 'example-1.0' do
impact 'critical'
title 'Verify the version number of Example'
desc 'An optional description...'
tag 'example'
ref 'Example Requirements 1.0', uri: 'http://...'
2016-03-17 22:07:42 +00:00
# Test using the custom example_config InSpec resource
# Find the resource content here: ../libraries/
describe example_config do
it { should exist }
its('version') { should eq('1.0') }
its('file_size') { should <= 20 }
its('comma_count') { should eq 0 }
2015-12-14 13:23:41 +00:00
end
# Test the version again to showcase variables
g = example_config
g_path = g.file_path
g_version = g.version
describe file(g_path) do
its('content') { should match g_version }
end
end