mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +00:00
f7d58ad92c
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
77 lines
No EOL
2.3 KiB
Ruby
77 lines
No EOL
2.3 KiB
Ruby
input_names = [
|
|
:one_level_array,
|
|
:two_level_array,
|
|
:one_level_hash,
|
|
:two_level_hash,
|
|
:hash_of_arrays,
|
|
:array_of_hashes,
|
|
]
|
|
inputs = {}
|
|
input_names.each do |input_name|
|
|
# Store as a symbol-fetched input
|
|
inputs[input_name] = attribute(input_name, value: "#{input_name}_sym_default")
|
|
# .. and store under a string name, as a string-fetched input!
|
|
inputs[input_name.to_s] = attribute(input_name.to_s, value: "#{input_name}_str_default")
|
|
end
|
|
|
|
# For now, these all use string keys, as that is normal InSpec behavior
|
|
# Also, for 'its' calls, see https://github.com/rspec/rspec-its#usage
|
|
control 'nested' do
|
|
|
|
describe 'one_level_array' do
|
|
subject { inputs['one_level_array'] }
|
|
it { should be_a_kind_of(Array) }
|
|
it { should respond_to(:[])}
|
|
its([0]) { should eq 'thing1' }
|
|
its([1]) { should eq 'thing2' }
|
|
# Should this be nil? Or one_level_array_default?
|
|
its([2]) { should be nil }
|
|
end
|
|
|
|
describe 'two_level_array' do
|
|
# Access first row
|
|
subject { inputs['two_level_array'][0] }
|
|
it { should be_a_kind_of(Array) }
|
|
it { should respond_to(:[])}
|
|
its([0]) { should eq 'row1col1' }
|
|
its([1]) { should eq 'row1col2' }
|
|
end
|
|
|
|
describe 'one_level_hash' do
|
|
subject { inputs['one_level_hash'] }
|
|
it { should be_a_kind_of(Hash) }
|
|
it { should respond_to(:[])}
|
|
its(['key1']) { should eq 'value1' }
|
|
its(['key2']) { should eq 'value2' }
|
|
its('keys.count') { should eq 2 }
|
|
end
|
|
|
|
describe 'two_level_hash' do
|
|
subject { inputs['two_level_hash'] }
|
|
it { should be_a_kind_of(Hash) }
|
|
it { should respond_to(:[])}
|
|
its(['key1', 'key11']) { should eq 'value11' }
|
|
its(['key2', 'key22']) { should eq 'value22' }
|
|
its('keys.count') { should eq 2 }
|
|
end
|
|
|
|
describe 'hash_of_arrays' do
|
|
subject { inputs['hash_of_arrays'] }
|
|
it { should be_a_kind_of(Hash) }
|
|
it { should respond_to(:[])}
|
|
its(['key1', 0]) { should eq 'thing11' }
|
|
its(['key2', 1]) { should eq 'thing22' }
|
|
its('keys.count') { should eq 2 }
|
|
end
|
|
|
|
describe 'array_of_hashes' do
|
|
subject { inputs['array_of_hashes'] }
|
|
it { should be_a_kind_of(Array) }
|
|
it { should respond_to(:[])}
|
|
|
|
# These fail
|
|
# its([0, 'key11']) { should eq 'value11' }
|
|
# its([1, 'key22']) { should eq 'value22' }
|
|
its('count') { should eq 2 }
|
|
end
|
|
end |