2018-02-08 09:06:58 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'helper'
|
|
|
|
|
|
|
|
describe Inspec::Reporters::Json do
|
|
|
|
let(:path) { File.expand_path(File.dirname(__FILE__)) }
|
|
|
|
let(:report) do
|
|
|
|
data = JSON.parse(File.read(path + '/../mock/reporters/run_data.json'), symbolize_names: true)
|
|
|
|
Inspec::Reporters::Json.new({ run_data: data })
|
|
|
|
end
|
|
|
|
let(:profile) { report.run_data[:profiles].first }
|
|
|
|
let(:control) { profile[:controls].first }
|
|
|
|
|
|
|
|
describe '#render' do
|
|
|
|
it 'confirm render output' do
|
2018-02-09 17:30:07 +00:00
|
|
|
output = File.read(path + '/../mock/reporters/json_output')
|
2018-02-08 09:06:58 +00:00
|
|
|
report.render
|
2018-02-09 17:30:07 +00:00
|
|
|
report.rendered_output.must_equal output
|
2018-02-08 09:06:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-09 14:14:40 +00:00
|
|
|
describe '#report' do
|
|
|
|
it 'confirm report output' do
|
|
|
|
output = File.read(path + '/../mock/reporters/json_output')
|
|
|
|
output = JSON.parse(output, symbolize_names: true)
|
|
|
|
report.report.must_equal output
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-08 09:06:58 +00:00
|
|
|
describe '#platform' do
|
|
|
|
it 'confirm platform output' do
|
|
|
|
hash = { name: 'mac_os_x', release: '17.2.0' }
|
|
|
|
report.send(:platform).must_equal hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-10 17:53:37 +00:00
|
|
|
describe 'report output includes depends' do
|
|
|
|
it 'sets the depends key' do
|
|
|
|
depends = {
|
|
|
|
depends: {
|
|
|
|
'path' => '../child',
|
|
|
|
'name' => 'child',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data = JSON.parse(File.read(path + '/../mock/reporters/run_data.json'), symbolize_names: true)
|
|
|
|
data[:profiles].first[:depends] = depends
|
|
|
|
json_report = Inspec::Reporters::Json.new({ run_data: data })
|
|
|
|
|
|
|
|
json_report.report[:profiles].first[:depends].must_equal depends
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-08 09:06:58 +00:00
|
|
|
describe '#profile_results' do
|
|
|
|
it 'confirm profile_results output' do
|
|
|
|
hash = {
|
|
|
|
status: 'passed',
|
|
|
|
code_desc: 'File /tmp should be directory',
|
|
|
|
run_time: 0.002058,
|
|
|
|
start_time: '2018-01-05 11:43:04 -0500',
|
|
|
|
}
|
|
|
|
result = report.send(:profile_results, control)
|
|
|
|
result.first.must_equal hash
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'confirm profile_result with optional' do
|
|
|
|
control[:results].first[:resource] = 'File'
|
|
|
|
control[:results].first[:skip_message] = 'skipping'
|
|
|
|
hash = {
|
|
|
|
status: 'passed',
|
|
|
|
code_desc: 'File /tmp should be directory',
|
|
|
|
run_time: 0.002058,
|
|
|
|
start_time: '2018-01-05 11:43:04 -0500',
|
|
|
|
resource: 'File',
|
|
|
|
skip_message: 'skipping',
|
|
|
|
}
|
|
|
|
result = report.send(:profile_results, control)
|
|
|
|
result.first.must_equal hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#profile_controls' do
|
|
|
|
it 'confirm profile_results output' do
|
|
|
|
hash = {
|
|
|
|
id: '(generated from example.rb:7 871cd54043069c5c4f6e382fd5627830)',
|
|
|
|
title: nil,
|
|
|
|
desc: nil,
|
2018-09-26 17:28:58 +00:00
|
|
|
descriptions: [],
|
2018-02-08 09:06:58 +00:00
|
|
|
impact: 0.5,
|
|
|
|
refs: [],
|
|
|
|
tags: {},
|
|
|
|
code: '',
|
|
|
|
source_location: {
|
|
|
|
line: 89,
|
|
|
|
ref: '/Users/jquick/Chef/inspec/lib/inspec/control_eval_context.rb',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
control = report.send(:profile_controls, profile).first
|
|
|
|
control.delete(:results)
|
|
|
|
control.must_equal hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#profile_groups' do
|
|
|
|
it 'confirm profile_groups output' do
|
|
|
|
hash = {
|
|
|
|
id: 'controls/example.rb',
|
|
|
|
controls: [
|
|
|
|
'(generated from example.rb:7 871cd54043069c5c4f6e382fd5627830)',
|
|
|
|
'tmp-1.0',
|
|
|
|
'(generated from example.rb:21 2ff474c5357e7070f4c3efa932032dcb)',
|
|
|
|
],
|
|
|
|
title: 'sample section',
|
|
|
|
}
|
|
|
|
group = report.send(:profile_groups, profile)
|
|
|
|
group.first.must_equal hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#profiles' do
|
|
|
|
it 'confirm profile_groups output' do
|
|
|
|
hash = {
|
|
|
|
name: 'long_commands',
|
|
|
|
version: '0.1.0',
|
|
|
|
sha256: '4f816f8cf18f165f05f1cf20936aaad06a15287de3f578891197647ca05c7df4',
|
|
|
|
title: 'InSpec Profile',
|
|
|
|
maintainer: 'The Authors',
|
|
|
|
summary: 'An InSpec Compliance Profile',
|
|
|
|
license: 'Apache-2.0',
|
|
|
|
copyright: 'The Authors',
|
|
|
|
copyright_email: 'you@example.com',
|
|
|
|
supports: [
|
|
|
|
{ 'os-family': 'bds' },
|
|
|
|
{
|
|
|
|
'os-name': 'mac_os_x',
|
|
|
|
release: '17.*',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
attributes: [],
|
|
|
|
}
|
|
|
|
profile = report.send(:profiles).first
|
|
|
|
profile.delete(:groups)
|
|
|
|
profile.delete(:controls)
|
|
|
|
profile.must_equal hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|