inspec/test/unit/resources/postgres_ident_conf_test.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

26 lines
980 B
Ruby

# author: Aaron Lippold, lippold@gmail.com
# author: Rony Xavier, rx294@nyu.edu
require 'helper'
require 'inspec/resource'
describe 'Inspec::Resources::PGIdentConf' do
describe 'PGIdentConf Paramaters' do
resource = load_resource('postgres_ident_conf')
it 'Verify postgres_ident_conf filtering by `system_username`' do
entries = resource.where { system_username == 'bryanh' }
_(entries.map_name).must_equal ['omicron']
_(entries.pg_username).must_equal ['bryanh']
end
it 'Verify postgres_ident_conf filtering by `map_name`' do
entries = resource.where { map_name == 'ssl-test' }
_(entries.system_username).must_equal ['ann']
_(entries.pg_username).must_equal ['ann']
end
it 'Verify postgres_ident_conf filtering by `pg_username`' do
entries = resource.where { pg_username == 'bob' }
_(entries.map_name).must_equal ['pki-users']
_(entries.system_username).must_equal ['robert']
end
end
end