mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
added fluentd_config_spec.rb
This commit is contained in:
parent
54431b8542
commit
b12b650357
31
spec/classes/fluentd_config_spec.rb
Normal file
31
spec/classes/fluentd_config_spec.rb
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe 'fluentd::config', :type => :class do
|
||||||
|
let(:facts) {
|
||||||
|
{
|
||||||
|
:osfamily => 'Debian',
|
||||||
|
:lsbdistid => 'Ubuntu',
|
||||||
|
:operatingsystem => 'Ubuntu',
|
||||||
|
:lsbdistcodename => 'precise',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
describe 'when called with no parameters on Ubuntu' do
|
||||||
|
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]'
|
||||||
|
})
|
||||||
|
|
||||||
|
should contain_file('/etc/td-agent/conf.d').with({
|
||||||
|
'ensure' => 'directory',
|
||||||
|
'owner' => 'td-agent',
|
||||||
|
'group' => 'td-agent',
|
||||||
|
'mode' => '0750'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user