inspec/test/unit/profile_context_test.rb

141 lines
3.6 KiB
Ruby
Raw Normal View History

2015-10-17 21:28:54 +00:00
# encoding: utf-8
# author: Dominik Richter
# author: Christoph Hartmann
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/profile_context'
2015-10-17 21:28:54 +00:00
2015-10-26 03:04:18 +00:00
describe Inspec::ProfileContext do
2015-10-17 21:28:54 +00:00
let(:backend) { MockLoader.new.backend }
2015-10-26 03:04:18 +00:00
let(:profile) { Inspec::ProfileContext.new(nil, backend) }
2015-10-17 21:28:54 +00:00
it 'must be able to load empty content' do
profile.load('', 'dummy', 1).must_be_nil
end
describe 'its default DSL' do
def load(call)
proc { profile.load(call) }
end
it 'must provide os resource' do
load('print os[:family]').must_output 'ubuntu'
end
it 'must profide file resource' do
load('print file("").type').must_output 'unknown'
end
it 'must profide command resource' do
load('print command("").stdout').must_output ''
end
2015-10-17 23:09:47 +00:00
it 'provides the describe keyword in the global DSL' do
2015-10-17 21:28:54 +00:00
load('describe true do; it { should_eq true }; end')
.must_output ''
profile.rules.keys.must_equal ['unknown:1']
2015-10-26 03:04:18 +00:00
profile.rules.values[0].must_be_kind_of Inspec::Rule
2015-10-17 21:28:54 +00:00
end
2015-10-17 23:09:47 +00:00
it 'does not provide the expect keyword in the global DLS' do
load('expect(true).to_eq true').must_raise NoMethodError
end
it 'provides the rule keyword in the global DSL' do
profile.load('rule 1')
profile.rules.keys.must_equal [1]
2015-10-26 03:04:18 +00:00
profile.rules.values[0].must_be_kind_of Inspec::Rule
2015-10-17 23:09:47 +00:00
end
end
describe 'rule DSL' do
let(:rule_id) { rand.to_s }
it 'doesnt add any checks if none are provided' do
profile.load("rule #{rule_id.inspect}")
rule = profile.rules[rule_id]
rule.instance_variable_get(:@checks).must_equal([])
end
describe 'adds a check via describe' do
let(:cmd) {<<-EOF
rule #{rule_id.inspect} do
describe os[:family] { it { must_equal 'ubuntu' } }
end
EOF
}
let(:check) {
profile.load(cmd)
rule = profile.rules[rule_id]
rule.instance_variable_get(:@checks)[0]
}
it 'registers the check with describe' do
check[0].must_equal 'describe'
end
it 'registers the check with the describe argument' do
check[1].must_equal %w{ubuntu}
end
it 'registers the check with the provided proc' do
check[2].must_be_kind_of Proc
end
end
describe 'adds a check via expect' do
let(:cmd) {<<-EOF
rule #{rule_id.inspect} do
expect(os[:family]).to eq('ubuntu')
end
EOF
}
let(:check) {
profile.load(cmd)
rule = profile.rules[rule_id]
rule.instance_variable_get(:@checks)[0]
}
it 'registers the check with describe' do
check[0].must_equal 'expect'
end
it 'registers the check with the describe argument' do
check[1].must_equal %w{ubuntu}
end
it 'registers the check with the provided proc' do
2015-10-26 03:04:18 +00:00
check[2].must_be_kind_of Inspec::ExpectationTarget
end
end
describe 'adds a check via describe + expect' do
let(:cmd) {<<-EOF
rule #{rule_id.inspect} do
describe 'the actual test' do
expect(os[:family]).to eq('ubuntu')
end
end
EOF
}
let(:check) {
profile.load(cmd)
rule = profile.rules[rule_id]
rule.instance_variable_get(:@checks)[0]
}
it 'registers the check with describe' do
check[0].must_equal 'describe'
end
it 'registers the check with the describe argument' do
check[1].must_equal ['the actual test']
end
it 'registers the check with the provided proc' do
check[2].must_be_kind_of Proc
end
end
2015-10-17 21:28:54 +00:00
end
end