mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
f9ee7596f5
'etc_group' resource stores 'gid' as integer but the 'where' method compares 'gid' as string. By this fix, the 'where' method always converts the stored data to string when comparing. And it can also look for groups without members. Signed-off-by: ERAMOTO Masaya <eramoto.masaya@jp.fujitsu.com>
72 lines
2.2 KiB
Ruby
72 lines
2.2 KiB
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::EtcGroup' do
|
|
let(:resource) { load_resource('etc_group') }
|
|
|
|
it 'verify /etc/group config parsing' do
|
|
_(resource.gids).must_equal [0, 33, 999]
|
|
_(resource.groups).must_equal %w{ root www-data GroupWithCaps }
|
|
_(resource.users).must_equal %w{ www-data root }
|
|
end
|
|
|
|
it 'verify group filter with no users' do
|
|
root_filter = resource.where(name: 'root')
|
|
_(root_filter.gids).must_equal [0]
|
|
_(root_filter.groups).must_equal ['root']
|
|
_(root_filter.users).must_equal []
|
|
end
|
|
|
|
it 'verify group filter with users' do
|
|
www_filter = resource.where(name: 'www-data')
|
|
_(www_filter.gids).must_equal [33]
|
|
_(www_filter.groups).must_equal ['www-data']
|
|
_(www_filter.users).must_equal ['www-data', 'root']
|
|
end
|
|
|
|
it 'verify group filter with wrong group' do
|
|
wrong_filter = resource.where(name: 'wrong_group')
|
|
_(wrong_filter.gids).must_equal []
|
|
_(wrong_filter.groups).must_equal []
|
|
_(wrong_filter.users).must_equal []
|
|
end
|
|
|
|
it 'verify group filter with gid' do
|
|
www_filter = resource.where(gid: 33)
|
|
_(www_filter.gids).must_equal [33]
|
|
_(www_filter.groups).must_equal ['www-data']
|
|
_(www_filter.users).must_equal ['www-data', 'root']
|
|
end
|
|
|
|
it 'verify group filter with wrong gid' do
|
|
www_filter = resource.where(group_id: 60)
|
|
_(www_filter.gids).must_equal []
|
|
_(www_filter.groups).must_equal []
|
|
_(www_filter.users).must_equal []
|
|
end
|
|
|
|
it 'verify group filter with group members' do
|
|
www_filter = resource.where(users: 'www-data,root')
|
|
_(www_filter.gids).must_equal [33]
|
|
_(www_filter.groups).must_equal ['www-data']
|
|
_(www_filter.users).must_equal ['www-data', 'root']
|
|
end
|
|
|
|
it 'verify group filter with no group members' do
|
|
www_filter = resource.where(members: '')
|
|
_(www_filter.gids).must_equal [0, 999]
|
|
_(www_filter.groups).must_equal ['root', 'GroupWithCaps']
|
|
_(www_filter.users).must_equal []
|
|
end
|
|
|
|
it 'verify group filter with wrong member' do
|
|
wrong_filter = resource.where(users: 'wrong_member')
|
|
_(wrong_filter.gids).must_equal []
|
|
_(wrong_filter.groups).must_equal []
|
|
_(wrong_filter.users).must_equal []
|
|
end
|
|
end
|