2015-12-03 18:29:13 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'fluentd::config', :type => :class do
|
2017-08-14 15:55:39 +00:00
|
|
|
on_supported_os.each do |os, facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
let :facts do
|
|
|
|
facts
|
|
|
|
end
|
2015-12-03 18:29:13 +00:00
|
|
|
|
2017-08-14 15:55:39 +00:00
|
|
|
describe 'when called with no parameters' do
|
2016-01-27 11:45:27 +00:00
|
|
|
|
2017-08-14 15:55:39 +00:00
|
|
|
it {
|
|
|
|
should contain_file('/etc/td-agent/td-agent.conf').with({
|
|
|
|
'ensure' => 'file',
|
|
|
|
'owner' => 'root',
|
|
|
|
'group' => 'root',
|
|
|
|
'source' => 'puppet:///modules/fluentd/td-agent.conf',
|
|
|
|
'notify' => 'Class[Fluentd::Service]'
|
|
|
|
})
|
2016-01-27 11:45:27 +00:00
|
|
|
|
2017-08-14 15:55:39 +00:00
|
|
|
should contain_file('/etc/td-agent/conf.d').with({
|
|
|
|
'ensure' => 'directory',
|
|
|
|
'owner' => 'td-agent',
|
|
|
|
'group' => 'td-agent',
|
|
|
|
'mode' => '0750'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2016-01-27 11:45:27 +00:00
|
|
|
end
|
2015-12-03 18:29:13 +00:00
|
|
|
end
|