2016-02-19 11:48:43 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'helper'
|
|
|
|
require 'inspec/resource'
|
|
|
|
|
|
|
|
describe 'Inspec::Resources::Shadow' do
|
|
|
|
let(:shadow) { load_resource('shadow') }
|
|
|
|
|
2018-03-07 14:31:30 +00:00
|
|
|
it 'content should be mapped correctly' do
|
|
|
|
_(shadow.content).must_equal "root:x:1:2:3\nwww-data:!!:10:20:30:40:50:60"
|
|
|
|
end
|
|
|
|
|
2016-02-19 11:48:43 +00:00
|
|
|
it 'retrieve users via field' do
|
2018-03-08 22:26:08 +00:00
|
|
|
_(shadow.user).must_equal %w{root www-data}
|
2018-03-07 14:31:30 +00:00
|
|
|
_(shadow.count).must_equal 2
|
2016-02-19 11:48:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve passwords via field' do
|
2018-03-08 22:26:08 +00:00
|
|
|
_(shadow.password).must_equal %w{x !!}
|
2016-02-19 11:48:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve last password change via field' do
|
2018-03-08 22:26:08 +00:00
|
|
|
_(shadow.last_change).must_equal %w{1 10}
|
2016-02-19 11:48:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve min password days via field' do
|
|
|
|
_(shadow.min_days).must_equal %w{2 20}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve max password days via field' do
|
|
|
|
_(shadow.max_days).must_equal %w{3 30}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve warning days for password expiry via field' do
|
|
|
|
_(shadow.warn_days).must_equal [nil, "40"]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve days before account is inactive via field' do
|
|
|
|
_(shadow.inactive_days).must_equal [nil, "50"]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'retrieve dates when account will expire via field' do
|
2018-03-07 14:31:30 +00:00
|
|
|
_(shadow.expiry_date).must_equal [nil, "60"]
|
2016-02-19 11:48:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'access all lines of the file' do
|
|
|
|
_(shadow.lines[0]).must_equal 'root:x:1:2:3::::'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'access all params of the file' do
|
|
|
|
_(shadow.params[0]).must_equal({
|
|
|
|
'user' => 'root', 'password' => 'x', 'last_change' => '1',
|
|
|
|
'min_days' => '2', 'max_days' => '3', 'warn_days' => nil,
|
|
|
|
'inactive_days' => nil, 'expiry_date' => nil, 'reserved' => nil,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2018-03-07 14:31:30 +00:00
|
|
|
it 'returns deprecation notice on user property' do
|
2018-03-08 22:26:08 +00:00
|
|
|
proc { _(shadow.users).must_equal %w{root www-data} }.must_output nil,
|
|
|
|
'[DEPRECATION] The shadow `users` property is deprecated and will' \
|
|
|
|
" be removed in InSpec 3.0. Please use `user` instead.\n"
|
2018-03-07 14:31:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns deprecatation notice on password property' do
|
2018-03-08 22:26:08 +00:00
|
|
|
proc { _(shadow.passwords).must_equal %w{x !!} }.must_output nil,
|
|
|
|
'[DEPRECATION] The shadow `passwords` property is deprecated and will' \
|
|
|
|
" be removed in InSpec 3.0. Please use `password` instead.\n"
|
2018-03-07 14:31:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns deprecation notice on last_change property' do
|
2018-03-08 22:26:08 +00:00
|
|
|
proc { _(shadow.last_changes).must_equal %w{1 10} }.must_output nil,
|
|
|
|
'[DEPRECATION] The shadow `last_changes` property is deprecated and will' \
|
|
|
|
" be removed in InSpec 3.0. Please use `last_change` instead.\n"
|
2018-03-07 14:31:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns deprecation notice on expiry_dates property' do
|
|
|
|
proc { _(shadow.expiry_dates).must_equal [nil, "60"] }.must_output nil,
|
|
|
|
'[DEPRECATION] The shadow `expiry_dates` property is deprecated and will' \
|
|
|
|
" be removed in InSpec 3.0. Please use `expiry_date` instead.\n"
|
|
|
|
end
|
|
|
|
|
2018-03-08 22:26:08 +00:00
|
|
|
describe 'multiple filters' do
|
|
|
|
it 'filters with min_days and max_days' do
|
|
|
|
_(shadow.filter(min_days: 20, max_days: 30).user).must_equal ['www-data']
|
|
|
|
_(shadow.filter(last_change: 1, min_days: 2).user).must_equal ['root']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-19 11:48:43 +00:00
|
|
|
describe 'filter via name =~ /^www/' do
|
2018-03-08 22:26:08 +00:00
|
|
|
let(:child) { shadow.user(/^www/) }
|
2016-02-19 11:48:43 +00:00
|
|
|
|
|
|
|
it 'filters by user via name (regex)' do
|
2018-03-08 22:26:08 +00:00
|
|
|
_(child.user).must_equal ['www-data']
|
2016-02-19 11:48:43 +00:00
|
|
|
_(child.count).must_equal 1
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'prints a nice to_s string' do
|
2018-03-07 14:31:30 +00:00
|
|
|
_(child.to_s).must_equal '/etc/shadow with user == /^www/'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'filter via name = root' do
|
2018-03-08 22:26:08 +00:00
|
|
|
let(:child) { shadow.user('root') }
|
2018-03-07 14:31:30 +00:00
|
|
|
|
|
|
|
it 'filters by user name' do
|
2018-03-08 22:26:08 +00:00
|
|
|
_(child.user).must_equal %w{root}
|
2018-03-07 14:31:30 +00:00
|
|
|
_(child.count).must_equal 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'filter via min_days' do
|
|
|
|
let(:child) { shadow.min_days('20') }
|
|
|
|
|
|
|
|
it 'filters by property' do
|
2018-03-08 22:26:08 +00:00
|
|
|
_(child.user).must_equal %w{www-data}
|
2018-03-07 14:31:30 +00:00
|
|
|
_(child.count).must_equal 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'it raises errors' do
|
|
|
|
it 'raises error on unsupported os' do
|
|
|
|
resource = MockLoader.new(:windows).load_resource('shadow')
|
|
|
|
_(resource.resource_skipped?).must_equal true
|
2018-03-08 21:01:50 +00:00
|
|
|
_(resource.resource_exception_message)
|
|
|
|
.must_equal 'Resource Shadow is not supported on platform windows/6.2.9200.'
|
2016-02-19 11:48:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|