2015-10-26 21:51:21 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
|
|
|
|
|
|
|
require 'helper'
|
|
|
|
|
|
|
|
describe Inspec::Profile do
|
|
|
|
before {
|
|
|
|
# mock up the profile runner
|
|
|
|
# TODO: try to take the real profile runner here;
|
|
|
|
# currently it's stopped at test runner conflicts
|
|
|
|
class Inspec::Profile::Runner
|
|
|
|
def initialize(opts) end
|
|
|
|
def add_tests(tests) end
|
|
|
|
def rules
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2015-12-22 14:18:09 +00:00
|
|
|
let(:logger) { Minitest::Mock.new }
|
|
|
|
let(:home) { File.dirname(__FILE__) }
|
|
|
|
|
|
|
|
def load_profile(name, opts = {})
|
|
|
|
Inspec::Profile.from_path("#{home}/mock/profiles/#{name}", opts)
|
|
|
|
end
|
|
|
|
|
2015-10-26 21:51:21 +00:00
|
|
|
describe 'with empty profile' do
|
|
|
|
let(:profile) { load_profile('empty') }
|
|
|
|
|
|
|
|
it 'has no metadata' do
|
|
|
|
profile.params[:name].must_be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has no rules' do
|
|
|
|
profile.params[:rules].must_equal({})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with normal metadata in profile' do
|
|
|
|
let(:profile) { load_profile('metadata') }
|
|
|
|
|
|
|
|
it 'has metadata' do
|
|
|
|
profile.params[:name].must_equal 'metadata profile'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has no rules' do
|
|
|
|
profile.params[:rules].must_equal({})
|
|
|
|
end
|
|
|
|
end
|
2015-12-22 14:18:09 +00:00
|
|
|
|
|
|
|
describe 'when checking' do
|
|
|
|
describe 'an empty profile' do
|
|
|
|
let(:profile) { load_profile('empty', {logger: logger}) }
|
|
|
|
|
|
|
|
it 'prints loads of warnings' do
|
|
|
|
logger.expect :info, nil, ["Checking profile in #{home}/mock/profiles/empty"]
|
|
|
|
logger.expect :error, nil, ['Missing profile name in metadata.rb']
|
|
|
|
logger.expect :error, nil, ['Missing profile version in metadata.rb']
|
|
|
|
logger.expect :warn, nil, ['Missing profile title in metadata.rb']
|
|
|
|
logger.expect :warn, nil, ['Missing profile summary in metadata.rb']
|
|
|
|
logger.expect :warn, nil, ['Missing profile maintainer in metadata.rb']
|
|
|
|
logger.expect :warn, nil, ['Missing profile copyright in metadata.rb']
|
|
|
|
logger.expect :warn, nil, ['No controls or tests were defined.']
|
|
|
|
|
|
|
|
profile.check
|
|
|
|
logger.verify
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'a complete metadata profile' do
|
|
|
|
let(:profile) { load_profile('complete-meta', {logger: logger}) }
|
|
|
|
|
|
|
|
it 'prints ok messages' do
|
|
|
|
logger.expect :info, nil, ["Checking profile in #{home}/mock/profiles/complete-meta"]
|
|
|
|
logger.expect :info, nil, ['Metadata OK.']
|
|
|
|
logger.expect :warn, nil, ['No controls or tests were defined.']
|
|
|
|
|
|
|
|
profile.check
|
|
|
|
logger.verify
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-10-26 21:51:21 +00:00
|
|
|
end
|