2016-03-25 00:31:19 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# author: Dominik Richter
|
|
|
|
# author: Christoph Hartmann
|
|
|
|
|
|
|
|
require 'functional/helper'
|
|
|
|
|
|
|
|
describe 'example inheritance profile' do
|
|
|
|
include FunctionalHelper
|
|
|
|
let(:path) { File.join(examples_path, 'inheritance') }
|
|
|
|
|
|
|
|
it 'check succeeds with --profiles-path' do
|
|
|
|
out = inspec('check ' + path + ' --profiles-path ' + examples_path)
|
|
|
|
out.stderr.must_equal ''
|
|
|
|
out.stdout.must_match /Valid.*true/
|
|
|
|
out.exit_status.must_equal 0
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:34:27 +00:00
|
|
|
it 'check succeeds without --profiles-path using inspec.yml' do
|
|
|
|
out = inspec('check ' + path)
|
|
|
|
out.stderr.must_equal ''
|
|
|
|
out.stdout.must_match /Valid.*true/
|
|
|
|
out.exit_status.must_equal 0
|
|
|
|
end
|
|
|
|
|
2016-03-25 00:31:19 +00:00
|
|
|
it 'archive is successful with --profiles-path' do
|
|
|
|
out = inspec('archive ' + path + ' --output ' + dst.path + ' --profiles-path ' + examples_path)
|
|
|
|
out.stderr.must_equal ''
|
|
|
|
out.stdout.must_include 'Generate archive '+dst.path
|
|
|
|
out.stdout.must_include 'Finished archive generation.'
|
|
|
|
out.exit_status.must_equal 0
|
|
|
|
File.exist?(dst.path).must_equal true
|
|
|
|
end
|
|
|
|
|
2016-08-11 15:34:27 +00:00
|
|
|
it 'archive is successful without --profiles-path using inspec.yml' do
|
|
|
|
out = inspec('archive ' + path + ' --output ' + dst.path)
|
|
|
|
out.stderr.must_equal ''
|
|
|
|
out.stdout.must_include 'Generate archive '+dst.path
|
|
|
|
out.stdout.must_include 'Finished archive generation.'
|
|
|
|
out.exit_status.must_equal 0
|
|
|
|
File.exist?(dst.path).must_equal true
|
|
|
|
end
|
|
|
|
|
2016-03-25 00:31:19 +00:00
|
|
|
it 'read the profile json with --profiles-path' do
|
|
|
|
out = inspec('json ' + path + ' --profiles-path '+examples_path)
|
|
|
|
out.stderr.must_equal ''
|
|
|
|
out.exit_status.must_equal 0
|
|
|
|
s = out.stdout
|
|
|
|
hm = JSON.load(s)
|
|
|
|
hm['name'].must_equal 'inheritance'
|
2016-04-20 04:50:18 +00:00
|
|
|
hm['controls'].length.must_equal 3
|
2016-03-25 00:31:19 +00:00
|
|
|
end
|
2016-08-11 15:34:27 +00:00
|
|
|
|
|
|
|
it 'read the profile json without --profiles-path using inspec.yml' do
|
|
|
|
out = inspec('json ' + path)
|
|
|
|
out.stderr.must_equal ''
|
|
|
|
out.exit_status.must_equal 0
|
|
|
|
s = out.stdout
|
|
|
|
hm = JSON.load(s)
|
|
|
|
hm['name'].must_equal 'inheritance'
|
|
|
|
hm['controls'].length.must_equal 3
|
|
|
|
end
|
2016-03-25 00:31:19 +00:00
|
|
|
end
|