inspec/test/unit/resources/ssh_conf_test.rb

40 lines
1 KiB
Ruby
Raw Normal View History

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 '*'
_(resource.Tunnel).must_equal nil
_(resource.SendEnv).must_equal 'LANG LC_*'
_(resource.HashKnownHosts).must_equal 'yes'
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'
_(resource.ListenAddress).must_equal nil
_(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
end
end