inspec/test/unit/resources/passwd_test.rb

25 lines
598 B
Ruby
Raw Normal View History

2015-09-05 17:04:19 +00:00
# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-09-05 17:04:19 +00:00
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/resource'
2015-09-05 17:04:19 +00:00
2015-10-26 03:04:18 +00:00
describe 'Inspec::Resources::Passwd' do
2015-09-22 16:33:05 +00:00
it 'verify passwd parsing' do
2015-10-12 11:21:50 +00:00
resource = load_resource('passwd')
2015-09-22 16:33:05 +00:00
_(resource.usernames).must_equal %w{root www-data}
_(resource.uids).must_equal %w{0 33}
2015-09-05 17:04:19 +00:00
2015-10-12 11:21:50 +00:00
# verify root passwd resource
2015-09-22 16:33:05 +00:00
root = resource.uid(0)
_(root.username).must_equal 'root'
_(root.count).must_equal 1
2015-09-05 17:04:19 +00:00
2015-10-12 11:21:50 +00:00
# verify www-data resource
2015-09-22 16:33:05 +00:00
www = resource.uid(33)
_(www.username).must_equal 'www-data'
_(www.count).must_equal 1
2015-09-05 17:04:19 +00:00
end
end