mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
3cce8ba705
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
142 lines
5.4 KiB
Ruby
142 lines
5.4 KiB
Ruby
# encoding: utf-8
|
|
# copyright: 2017, Chef Software Inc.
|
|
|
|
require 'helper'
|
|
|
|
describe Inspec::Runner do
|
|
describe '#load_inputs' do
|
|
let(:runner) { Inspec::Runner.new({ command_runner: :generic }) }
|
|
|
|
before do
|
|
Inspec::Runner.any_instance.stubs(:validate_inputs_file_readability!)
|
|
end
|
|
|
|
describe 'confirm reporter defaults to cli' do
|
|
it 'defaults to cli when format and reporter not set' do
|
|
opts = { command_runner: :generic, backend_cache: true }
|
|
runner = Inspec::Runner.new(opts)
|
|
config = runner.instance_variable_get(:"@conf")
|
|
expected = { 'cli' => { 'stdout' => true } }
|
|
config['reporter'].must_equal expected
|
|
end
|
|
|
|
it 'does not default when format is set' do
|
|
opts = { command_runner: :generic, backend_cache: true, 'reporter' => ['json'] }
|
|
runner = Inspec::Runner.new(opts)
|
|
config = runner.instance_variable_get(:"@conf")
|
|
expected = { 'json' => { 'stdout' => true } }
|
|
config['reporter'].must_equal expected
|
|
end
|
|
|
|
it 'delets format if set to a rspec format' do
|
|
opts = { command_runner: :generic, backend_cache: true, 'reporter' => ['progress'] }
|
|
runner = Inspec::Runner.new(opts)
|
|
config = runner.instance_variable_get(:"@conf")
|
|
config['reporter'].must_equal Hash.new
|
|
end
|
|
end
|
|
|
|
describe 'testing runner.run exit codes' do
|
|
it 'returns proper exit code when no profile is added' do
|
|
proc { runner.run.must_equal 0 }
|
|
end
|
|
end
|
|
|
|
describe 'when backend caching is enabled' do
|
|
it 'returns a backend with caching' do
|
|
opts = { command_runner: :generic, backend_cache: true }
|
|
runner = Inspec::Runner.new(opts)
|
|
backend = runner.instance_variable_get(:@backend)
|
|
backend.backend.cache_enabled?(:command).must_equal true
|
|
end
|
|
end
|
|
|
|
describe 'when backend caching is disabled' do
|
|
it 'returns a backend without caching' do
|
|
opts = { command_runner: :generic, backend_cache: false }
|
|
runner = Inspec::Runner.new(opts)
|
|
backend = runner.instance_variable_get(:@backend)
|
|
backend.backend.cache_enabled?(:command).must_equal false
|
|
end
|
|
|
|
it 'returns a backend without caching as default' do
|
|
backend = runner.instance_variable_get(:@backend)
|
|
backend.backend.cache_enabled?(:command).must_equal false
|
|
end
|
|
end
|
|
|
|
describe 'when no input files are specified' do
|
|
it 'returns an empty hash' do
|
|
options = {}
|
|
runner.load_inputs(options).must_equal({})
|
|
end
|
|
end
|
|
|
|
describe 'when an input file is provided and does not resolve' do
|
|
it 'raises an exception' do
|
|
options = { input_file: ['nope.jpg'] }
|
|
Inspec::SecretsBackend.expects(:resolve).with('nope.jpg').returns(nil)
|
|
proc { runner.load_inputs(options) }.must_raise Inspec::Exceptions::SecretsBackendNotFound
|
|
end
|
|
end
|
|
|
|
describe 'when an input file is provided and has no inputs' do
|
|
it 'returns an empty hash' do
|
|
secrets = mock
|
|
secrets.stubs(:inputs).returns(nil)
|
|
options = { input_file: ['empty.yaml'] }
|
|
Inspec::SecretsBackend.expects(:resolve).with('empty.yaml').returns(secrets)
|
|
runner.load_inputs(options).must_equal({})
|
|
end
|
|
end
|
|
|
|
describe 'when an input file is provided and has inputs' do
|
|
it 'returns a hash containing the inputs' do
|
|
options = { input_file: ['file1.yaml'] }
|
|
inputs = { foo: 'bar' }
|
|
secrets = mock
|
|
secrets.stubs(:inputs).returns(inputs)
|
|
Inspec::SecretsBackend.expects(:resolve).with('file1.yaml').returns(secrets)
|
|
runner.load_inputs(options).must_equal(inputs)
|
|
end
|
|
end
|
|
|
|
describe 'when multiple input files are provided and one fails' do
|
|
it 'raises an exception' do
|
|
options = { input_file: ['file1.yaml', 'file2.yaml'] }
|
|
secrets = mock
|
|
secrets.stubs(:inputs).returns(nil)
|
|
Inspec::SecretsBackend.expects(:resolve).with('file1.yaml').returns(secrets)
|
|
Inspec::SecretsBackend.expects(:resolve).with('file2.yaml').returns(nil)
|
|
proc { runner.load_inputs(options) }.must_raise Inspec::Exceptions::SecretsBackendNotFound
|
|
end
|
|
end
|
|
|
|
describe 'when multiple input files are provided and one has no inputs' do
|
|
it 'returns a hash containing the inputs from the valid files' do
|
|
options = { input_file: ['file1.yaml', 'file2.yaml'] }
|
|
inputs = { foo: 'bar' }
|
|
secrets1 = mock
|
|
secrets1.stubs(:inputs).returns(nil)
|
|
secrets2 = mock
|
|
secrets2.stubs(:inputs).returns(inputs)
|
|
Inspec::SecretsBackend.expects(:resolve).with('file1.yaml').returns(secrets1)
|
|
Inspec::SecretsBackend.expects(:resolve).with('file2.yaml').returns(secrets2)
|
|
runner.load_inputs(options).must_equal(inputs)
|
|
end
|
|
end
|
|
|
|
describe 'when multiple input files are provided and all have inputs' do
|
|
it 'returns a hash containing all the inputs' do
|
|
options = { input_file: ['file1.yaml', 'file2.yaml'] }
|
|
secrets1 = mock
|
|
secrets1.stubs(:inputs).returns({ key1: 'value1' })
|
|
secrets2 = mock
|
|
secrets2.stubs(:inputs).returns({ key2: 'value2' })
|
|
Inspec::SecretsBackend.expects(:resolve).with('file1.yaml').returns(secrets1)
|
|
Inspec::SecretsBackend.expects(:resolve).with('file2.yaml').returns(secrets2)
|
|
runner.load_inputs(options).must_equal({ key1: 'value1', key2: 'value2' })
|
|
end
|
|
end
|
|
end
|
|
end
|