inspec/test/integration/default/port_spec.rb

24 lines
494 B
Ruby
Raw Normal View History

2015-11-16 19:34:21 +00:00
# encoding: utf-8
2016-01-28 13:51:54 +00:00
# check that ssh runs
2015-11-16 19:34:21 +00:00
if os.unix?
describe port(22) do
it { should be_listening }
its('protocols') { should include('tcp') }
2015-12-23 17:47:11 +00:00
its('protocols') { should_not include('udp') }
end
describe port(65432) do
it { should_not be_listening }
2015-11-16 19:34:21 +00:00
end
end
2016-01-28 13:51:54 +00:00
# extra test for linux
if os.linux?
describe port(22) do
its('processes') { should include 'sshd' }
its('protocols') { should include 'tcp' }
its('addresses') {should include '0.0.0.0'}
2016-01-28 13:51:54 +00:00
end
end