1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +00:00
puppet-fluentd/spec/defines/source_spec.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

2015-12-04 12:11:08 +00:00
require 'spec_helper'
describe 'fluentd::source' do
2017-08-17 11:34:13 +00:00
on_supported_os.each do |os, facts|
context "on #{os}" do
let :facts do
facts
end
2015-12-04 12:11:08 +00:00
2017-08-17 11:34:13 +00:00
let(:pre_condition) { 'include fluentd' }
describe 'basic source' do
let(:title) { 'test' }
let(:params) do
{
2018-01-17 10:22:32 +00:00
priority: 10,
2017-08-17 11:34:13 +00:00
config: {
'type' => 'tail',
'format' => 'json',
'path' => '/var/log/test-application/*.json',
'parse' => {
'type' => 'regexp',
'expression' => '^(?<name>[^ ]*) (?<user>[^ ]*) (?<age>\d*)$'
},
'storage'=> {
'type' => 'local',
'path' => 'test.pos'
},
2017-08-17 11:34:13 +00:00
'tag' => 'application.test'
}
2015-12-04 12:11:08 +00:00
}
2017-08-17 11:34:13 +00:00
end
2015-12-04 12:11:08 +00:00
2017-08-17 11:34:13 +00:00
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
2015-12-04 12:11:08 +00:00
end
end
end