Sha256: 388091f4fd6e6128147b22585bd6c35309990124e0e9d240976585072bc11f93

Contents?: true

Size: 1.52 KB

Versions: 287

Compression:

Stored size: 1.52 KB

Contents

require_relative '../helper'
require 'fluent/test/driver/parser'
require 'fluent/plugin/parser_apache_error'

class ApacheErrorParserTest < ::Test::Unit::TestCase
  def setup
    Fluent::Test.setup
    @expected = {
      'level' => 'error',
      'client' => '127.0.0.1',
      'message' => 'client denied by server configuration'
    }
  end

  def create_driver
    Fluent::Test::Driver::Parser.new(Fluent::Plugin::ApacheErrorParser.new).configure({})
  end

  def test_parse
    d = create_driver
    d.instance.parse('[Wed Oct 11 14:32:52 2000] [error] [client 127.0.0.1] client denied by server configuration') { |time, record|
      assert_equal(event_time('Wed Oct 11 14:32:52 2000'), time)
      assert_equal(@expected, record)
    }
  end

  def test_parse_with_pid
    d = create_driver
    d.instance.parse('[Wed Oct 11 14:32:52 2000] [error] [pid 1000] [client 127.0.0.1] client denied by server configuration') { |time, record|
      assert_equal(event_time('Wed Oct 11 14:32:52 2000'), time)
      assert_equal(@expected.merge('pid' => '1000'), record)
    }
  end

  def test_parse_without_client
    d = create_driver
    d.instance.parse('[Wed Oct 11 14:32:52 2000] [notice] Apache/2.2.15 (Unix) DAV/2 configured -- resuming normal operations') { |time, record|
      assert_equal(event_time('Wed Oct 11 14:32:52 2000'), time)
      assert_equal({
                     'level' => 'notice',
                     'message' => 'Apache/2.2.15 (Unix) DAV/2 configured -- resuming normal operations'
                   }, record)
    }
  end
end

Version data entries

287 entries across 287 versions & 8 rubygems

Version Path
fluentd-1.13.3-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.3-x64-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.3 test/plugin/test_parser_apache_error.rb
fluentd-1.13.2-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.2-x64-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.2 test/plugin/test_parser_apache_error.rb
fluentd-1.13.1-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.1-x64-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.1 test/plugin/test_parser_apache_error.rb
fluentd-1.13.0-x64-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.0-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.13.0 test/plugin/test_parser_apache_error.rb
fluentd-1.12.4-x64-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.12.4-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.12.4 test/plugin/test_parser_apache_error.rb
fluentd-1.12.3-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.12.3-x64-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.12.3 test/plugin/test_parser_apache_error.rb
fluentd-1.12.2-x86-mingw32 test/plugin/test_parser_apache_error.rb
fluentd-1.12.2-x64-mingw32 test/plugin/test_parser_apache_error.rb