mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
525fc9c5ab
should help to solve https://github.com/wywygmbh/puppet-fluentd/issues/4
35 lines
847 B
Ruby
35 lines
847 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'fluentd::source' do
|
|
let(:facts) {
|
|
{
|
|
:osfamily => 'Debian',
|
|
:lsbdistid => 'Ubuntu',
|
|
:operatingsystem => 'Ubuntu',
|
|
:lsbdistcodename => 'precise',
|
|
:architecture => 'amd64',
|
|
}
|
|
}
|
|
let(:pre_condition) { 'include fluentd' }
|
|
|
|
context 'basic source' do
|
|
let(:title) { 'test' }
|
|
let(:params) do
|
|
{
|
|
priority: '10',
|
|
config: {
|
|
'type' => 'tail',
|
|
'format' => 'json',
|
|
'path' => '/var/log/test-application/*.json',
|
|
'tag' => 'application.test'
|
|
}
|
|
}
|
|
end
|
|
|
|
it do
|
|
is_expected.to contain_file('/etc/td-agent/conf.d/10-source-test.conf').
|
|
with_content(IO.read(File.join(File.dirname(__FILE__), '../fixtures/files/source_tail.conf')))
|
|
end
|
|
end
|
|
end
|