2015-09-05 15:05:07 +00:00
|
|
|
# encoding: utf-8
|
2015-10-06 16:55:44 +00:00
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
2015-09-05 15:05:07 +00:00
|
|
|
|
|
|
|
require 'helper'
|
2015-10-26 03:04:18 +00:00
|
|
|
require 'inspec/resource'
|
2015-09-05 15:05:07 +00:00
|
|
|
|
2015-10-26 03:04:18 +00:00
|
|
|
describe 'Inspec::Resources::SshConf' do
|
2015-09-05 15:05:07 +00:00
|
|
|
|
|
|
|
describe 'ssh_config' do
|
|
|
|
it 'check ssh config parsing' do
|
2015-10-12 11:21:50 +00:00
|
|
|
resource = load_resource('ssh_config')
|
2015-09-05 15:05:07 +00:00
|
|
|
_(resource.Host).must_equal '*'
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.Tunnel).must_be_nil
|
2015-09-05 15:05:07 +00:00
|
|
|
_(resource.SendEnv).must_equal 'LANG LC_*'
|
|
|
|
_(resource.HashKnownHosts).must_equal 'yes'
|
2016-08-15 20:03:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'is case insensitive' do
|
|
|
|
resource = load_resource('ssh_config')
|
|
|
|
_(resource.gssapiauthentication).must_equal 'no'
|
2016-08-15 21:39:28 +00:00
|
|
|
_(resource.GSSAPIAuthentication).must_equal 'no'
|
2015-09-05 15:05:07 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'sshd_config' do
|
|
|
|
it 'check protocol version' do
|
2015-10-12 11:21:50 +00:00
|
|
|
resource = load_resource('sshd_config')
|
2015-09-05 15:05:07 +00:00
|
|
|
_(resource.Port).must_equal '22'
|
|
|
|
_(resource.UsePAM).must_equal 'yes'
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.ListenAddress).must_be_nil
|
2015-09-05 15:05:07 +00:00
|
|
|
_(resource.HostKey).must_equal [
|
|
|
|
'/etc/ssh/ssh_host_rsa_key',
|
|
|
|
'/etc/ssh/ssh_host_dsa_key',
|
2015-10-12 11:21:50 +00:00
|
|
|
'/etc/ssh/ssh_host_ecdsa_key',
|
2015-09-05 15:05:07 +00:00
|
|
|
]
|
|
|
|
end
|
2017-10-06 13:41:48 +00:00
|
|
|
|
|
|
|
it 'check bad path' do
|
|
|
|
resource = load_resource('sshd_config', '/etc/ssh/sshd_config_does_not_exist')
|
2018-03-22 12:25:45 +00:00
|
|
|
_(resource.resource_exception_message).must_equal "Can't find file: /etc/ssh/sshd_config_does_not_exist"
|
2017-10-06 13:41:48 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'check cannot read' do
|
|
|
|
resource = load_resource('sshd_config', '/etc/ssh/sshd_config_empty')
|
2018-03-22 12:25:45 +00:00
|
|
|
_(resource.resource_exception_message).must_equal "File is empty: /etc/ssh/sshd_config_empty"
|
2017-10-06 13:41:48 +00:00
|
|
|
end
|
2015-09-05 15:05:07 +00:00
|
|
|
end
|
|
|
|
end
|