inspec/test/unit/resources/host_test.rb

39 lines
1.2 KiB
Ruby
Raw Normal View History

2015-10-09 17:21:55 +00:00
# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/resource'
2015-10-09 17:21:55 +00:00
2015-10-26 03:04:18 +00:00
describe 'Inspec::Resources::Host' do
2015-10-09 17:21:55 +00:00
2015-10-09 17:27:29 +00:00
it 'check host on ubuntu' do
resource = MockLoader.new(:ubuntu1404).load_resource('host', 'example.com')
_(resource.resolvable?).must_equal true
_(resource.reachable?).must_equal true
_(resource.ipaddress).must_equal ['2606:2800:220:1:248:1893:25c8:1946']
end
it 'check host on centos 7' do
resource = MockLoader.new(:centos7).load_resource('host', 'example.com')
_(resource.resolvable?).must_equal true
_(resource.reachable?).must_equal true
_(resource.ipaddress).must_equal ['2606:2800:220:1:248:1893:25c8:1946']
end
2015-10-09 17:21:55 +00:00
it 'check host on windows' do
resource = MockLoader.new(:windows).load_resource('host', 'microsoft.com')
_(resource.resolvable?).must_equal true
_(resource.reachable?).must_equal false
_(resource.ipaddress).must_equal ['134.170.185.46', '134.170.188.221']
end
it 'check host on unsupported os' do
resource = MockLoader.new(:undefined).load_resource('host', 'example.com')
_(resource.resolvable?).must_equal false
_(resource.reachable?).must_equal false
_(resource.ipaddress).must_equal nil
end
end