mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
f6c7bffe78
* Add mode method to test the value of Bonding Mode Signed-off-by: Eammon Hanlon <eammon.hanlon@microsoft.com> * Add test for bonding mode in bond unit test Signed-off-by: Eammon Hanlon <eammon.hanlon@microsoft.com> * Add documentation on mode matcher for bond resource Signed-off-by: Eammon Hanlon <eammon.hanlon@microsoft.com> * Update example for 'Test parameters for bond0' Signed-off-by: Eammon Hanlon <eammon.hanlon@microsoft.com>
26 lines
808 B
Ruby
26 lines
808 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::Bond' do
|
|
|
|
it 'check linux bond on ubuntu' do
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('bond', 'bond0')
|
|
# bond must be available
|
|
resource.exist?.must_equal true
|
|
# get bonding mode
|
|
_(resource.mode).must_equal 'IEEE 802.3ad Dynamic link aggregation'
|
|
# eth0 is part of bond
|
|
_(resource.has_interface?('eth0')).must_equal true
|
|
_(resource.has_interface?('eth1')).must_equal false
|
|
_(resource.has_interface?('eth2')).must_equal true
|
|
# get all interfaces
|
|
_(resource.interfaces).must_equal %w{eth0 eth2}
|
|
# get proc content
|
|
_(resource.content).wont_equal nil
|
|
_(resource.content).wont_equal ''
|
|
end
|
|
end
|