Sha256: fa79c8c7834b69ad7b69dd9a1600774d4df9429e99561ab72122710043c74e19
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
# encoding: utf-8 require "spec_helper" require "tempfile" describe "inputs/pipe" do describe "echo" do event_count = 1 tmp_file = Tempfile.new('logstash-spec-input-pipe') config <<-CONFIG input { pipe { command => "echo ☹" } } CONFIG input do |pipeline, queue| Thread.new { pipeline.run } sleep 0.1 while !pipeline.ready? events = event_count.times.collect { queue.pop } event_count.times do |i| insist { events[i]["message"] } == "☹" end end # input end describe "tail -f" do event_count = 10 tmp_file = Tempfile.new('logstash-spec-input-pipe') config <<-CONFIG input { pipe { command => "tail -f #{tmp_file.path}" } } CONFIG input do |pipeline, queue| Thread.new { pipeline.run } sleep 0.1 while !pipeline.ready? File.open(tmp_file, "a") do |fd| event_count.times do |i| # unicode smiley for testing unicode support! fd.puts("#{i} ☹") end end events = event_count.times.collect { queue.pop } event_count.times do |i| insist { events[i]["message"] } == "#{i} ☹" end end # input end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logstash-input-pipe-0.1.0 | spec/inputs/pipe_spec.rb |