mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
plugin_spec
This commit is contained in:
parent
c957e70511
commit
43cfae7797
51
spec/defines/plugin_spec.rb
Normal file
51
spec/defines/plugin_spec.rb
Normal file
@ -0,0 +1,51 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'fluentd::plugin' do
|
||||
let(:facts) {
|
||||
{
|
||||
:osfamily => 'Debian',
|
||||
:lsbdistid => 'Ubuntu',
|
||||
:operatingsystem => 'Ubuntu',
|
||||
:lsbdistcodename => 'precise',
|
||||
}
|
||||
}
|
||||
let(:pre_condition) { 'include fluentd' }
|
||||
|
||||
context 'gem plugin' do
|
||||
let(:title) { 'fluent-plugin-elasticsearch' }
|
||||
let(:params) do
|
||||
{
|
||||
type: 'gem'
|
||||
}
|
||||
end
|
||||
|
||||
it do
|
||||
should contain_package('fluent-plugin-elasticsearch').with({
|
||||
'ensure' => 'present',
|
||||
'provider' => 'fluentd_gem',
|
||||
'notify' => 'Class[Fluentd::Service]'
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
context 'file plugin' do
|
||||
let(:title) { 'fluent-plugin-test' }
|
||||
let(:params) do
|
||||
{
|
||||
type: 'file',
|
||||
source: 'puppet:///path/to/source'
|
||||
}
|
||||
end
|
||||
|
||||
it do
|
||||
should contain_file('/etc/td-agent/plugin/fluent-plugin-test').with({
|
||||
'ensure' => 'present',
|
||||
'owner' => 'td-agent',
|
||||
'group' => 'td-agent',
|
||||
'mode' => '0640',
|
||||
'source' => 'puppet:///path/to/source',
|
||||
'notify' => 'Class[Fluentd::Service]'
|
||||
})
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user