mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
d29e8768ca
Signed-off-by: Steven Danna <steve@chef.io>
59 lines
1.8 KiB
Ruby
59 lines
1.8 KiB
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
require 'functional/helper'
|
|
|
|
describe 'inspec exec' do
|
|
include FunctionalHelper
|
|
|
|
it 'can execute the profile with the mini json formatter' do
|
|
out = inspec('exec ' + example_profile + ' --format json-min --no-create-lockfile')
|
|
out.stderr.must_equal ''
|
|
out.exit_status.must_equal 0
|
|
JSON.load(out.stdout).must_be_kind_of Hash
|
|
end
|
|
|
|
it 'can execute a simple file with the mini json formatter' do
|
|
out = inspec('exec ' + example_control + ' --format json-min --no-create-lockfile')
|
|
out.stderr.must_equal ''
|
|
out.exit_status.must_equal 0
|
|
JSON.load(out.stdout).must_be_kind_of Hash
|
|
end
|
|
|
|
describe 'execute a profile with mini json formatting' do
|
|
let(:json) { JSON.load(inspec('exec ' + example_profile + ' --format json-min --no-create-lockfile').stdout) }
|
|
let(:controls) { json['controls'] }
|
|
let(:ex1) { controls.find{|x| x['id'] == 'tmp-1.0'} }
|
|
let(:ex2) { controls.find{|x| x['id'] =~ /generated/} }
|
|
let(:ex3) { controls.find{|x| x['id'] == 'gordon-1.0'} }
|
|
|
|
it 'must have 5 examples' do
|
|
json['controls'].length.must_equal 5
|
|
end
|
|
|
|
it 'has an id' do
|
|
controls.find { |ex| !ex.key? 'id' }.must_be :nil?
|
|
end
|
|
|
|
it 'has a profile_id' do
|
|
controls.find { |ex| !ex.key? 'profile_id' }.must_be :nil?
|
|
end
|
|
|
|
it 'has a code_desc' do
|
|
ex1['code_desc'].must_equal 'File /tmp should be directory'
|
|
controls.find { |ex| !ex.key? 'code_desc' }.must_be :nil?
|
|
end
|
|
|
|
it 'has a status' do
|
|
ex1['status'].must_equal 'passed'
|
|
ex3['status'].must_equal 'skipped'
|
|
end
|
|
|
|
it 'has a skip_message' do
|
|
ex1['skip_message'].must_be :nil?
|
|
ex3['skip_message'].must_equal "Can't find file \"/tmp/gordon/config.yaml\""
|
|
end
|
|
end
|
|
|
|
end
|