mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
785888a209
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
65 lines
2.1 KiB
Ruby
65 lines
2.1 KiB
Ruby
# encoding: utf-8
|
|
|
|
require 'functional/helper'
|
|
|
|
describe 'attributes' do
|
|
include FunctionalHelper
|
|
let(:inputs_profiles_path) { File.join(profile_path, 'inputs') }
|
|
[
|
|
'flat',
|
|
'nested',
|
|
].each do |input_file|
|
|
it "runs OK on #{input_file} attributes" do
|
|
cmd = 'exec '
|
|
cmd += File.join(inputs_profiles_path, 'basic')
|
|
cmd += ' --no-create-lockfile'
|
|
cmd += ' --attrs ' + File.join(inputs_profiles_path, 'basic', 'files', "#{input_file}.yaml")
|
|
cmd += ' --controls ' + input_file
|
|
out = inspec(cmd)
|
|
out.stderr.must_equal ''
|
|
out.exit_status.must_equal 0
|
|
end
|
|
end
|
|
|
|
describe 'run profile with yaml attributes' do
|
|
it "runs using yml attributes" do
|
|
cmd = 'exec '
|
|
cmd += File.join(inputs_profiles_path, 'global')
|
|
cmd += ' --no-create-lockfile'
|
|
cmd += ' --attrs ' + File.join(inputs_profiles_path, 'global', 'files', "inputs.yml")
|
|
out = inspec(cmd)
|
|
out.stderr.must_equal ''
|
|
out.stdout.must_include '21 successful'
|
|
out.exit_status.must_equal 0
|
|
end
|
|
|
|
it "does not error when attributes are empty" do
|
|
cmd = 'exec '
|
|
cmd += File.join(inputs_profiles_path, 'metadata-empty')
|
|
cmd += ' --no-create-lockfile'
|
|
out = inspec(cmd)
|
|
out.stdout.must_include 'WARN: Attributes must be defined as an Array. Skipping current definition.'
|
|
out.exit_status.must_equal 0
|
|
end
|
|
|
|
it "errors with invalid attribute types" do
|
|
cmd = 'exec '
|
|
cmd += File.join(inputs_profiles_path, 'metadata-invalid')
|
|
cmd += ' --no-create-lockfile'
|
|
out = inspec(cmd)
|
|
out.stderr.must_equal "Type 'Color' is not a valid attribute type.\n"
|
|
out.stdout.must_equal ''
|
|
out.exit_status.must_equal 1
|
|
end
|
|
|
|
it "errors with required attribute not defined" do
|
|
cmd = 'exec '
|
|
cmd += File.join(inputs_profiles_path, 'required')
|
|
cmd += ' --no-create-lockfile'
|
|
out = inspec(cmd)
|
|
out.stderr.must_equal "Attribute 'username' is required and does not have a value.\n"
|
|
out.stdout.must_equal ''
|
|
out.exit_status.must_equal 1
|
|
end
|
|
end
|
|
end
|