2015-12-03 18:29:28 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'fluentd::config', :type => :class do
|
2016-01-27 11:45:27 +00:00
|
|
|
shared_examples 'when called with no parameters' do
|
2015-12-03 18:29:28 +00:00
|
|
|
it {
|
|
|
|
should contain_service('fluentd').with({
|
|
|
|
'name' => 'td-agent',
|
|
|
|
'ensure' => 'running',
|
|
|
|
'enable' => 'true',
|
|
|
|
'hasstatus' => 'true',
|
|
|
|
'hasrestart' => 'true'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
2016-01-27 11:45:27 +00:00
|
|
|
|
|
|
|
context 'when osfamily is Debian' do
|
|
|
|
let(:facts) {
|
|
|
|
{
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistcodename => 'precise',
|
2016-05-12 20:31:52 +00:00
|
|
|
:architecture => 'amd64',
|
2016-01-27 11:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
include_examples 'when called with no parameters'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when osfamily is RedHat' do
|
|
|
|
let(:facts) {
|
|
|
|
{
|
|
|
|
:osfamily => 'RedHat',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
include_examples 'when called with no parameters'
|
|
|
|
end
|
2015-12-03 18:29:28 +00:00
|
|
|
end
|