Sha256: 655880df15c0760987378fceeeb2273b6fbbfcd6d470a7a60ff3e09be6115b7c

Contents?: true

Size: 1.67 KB

Versions: 14

Compression:

Stored size: 1.67 KB

Contents

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

class Apache2ParserTest < ::Test::Unit::TestCase
  def setup
    Fluent::Test.setup
    @parser = Fluent::Test::Driver::Parser.new(Fluent::Plugin::Apache2Parser)
    @expected = {
      'user'    => nil,
      'method'  => 'GET',
      'code'    => 200,
      'size'    => 777,
      'host'    => '192.168.0.1',
      'path'    => '/',
      'referer' => nil,
      'agent'   => 'Opera/12.0'
    }
  end

  def test_parse
    @parser.instance.parse('192.168.0.1 - - [28/Feb/2013:12:00:00 +0900] "GET / HTTP/1.1" 200 777 "-" "Opera/12.0"') { |time, record|
      assert_equal(event_time('28/Feb/2013:12:00:00 +0900', format: '%d/%b/%Y:%H:%M:%S %z'), time)
      assert_equal(@expected, record)
    }
    assert_equal(Fluent::Plugin::Apache2Parser::REGEXP,
                 @parser.instance.patterns['format'])
    assert_equal(Fluent::Plugin::Apache2Parser::TIME_FORMAT,
                 @parser.instance.patterns['time_format'])
  end

  def test_parse_without_http_version
    @parser.instance.parse('192.168.0.1 - - [28/Feb/2013:12:00:00 +0900] "GET /" 200 777 "-" "Opera/12.0"') { |time, record|
      assert_equal(event_time('28/Feb/2013:12:00:00 +0900', format: '%d/%b/%Y:%H:%M:%S %z'), time)
      assert_equal(@expected, record)
    }
  end

  def test_parse_with_escape_sequence
    @parser.instance.parse('192.168.0.1 - - [28/Feb/2013:12:00:00 +0900] "GET /\" HTTP/1.1" 200 777 "referer \\\ \"" "user agent \\\ \""') { |_, record|
      assert_equal('/\"', record['path'])
      assert_equal('referer \\\ \"', record['referer'])
      assert_equal('user agent \\\ \"', record['agent'])
    }
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fluentd-hubspot-0.14.14.2 test/plugin/test_parser_apache2.rb
fluentd-hubspot-0.14.14.1 test/plugin/test_parser_apache2.rb
fluentd-0.14.21 test/plugin/test_parser_apache2.rb
fluentd-0.14.20 test/plugin/test_parser_apache2.rb
fluentd-0.14.20.rc1 test/plugin/test_parser_apache2.rb
fluentd-0.14.19 test/plugin/test_parser_apache2.rb
fluentd-0.14.18 test/plugin/test_parser_apache2.rb
fluentd-0.14.17-x86-mingw32 test/plugin/test_parser_apache2.rb
fluentd-0.14.17-x64-mingw32 test/plugin/test_parser_apache2.rb
fluentd-0.14.17 test/plugin/test_parser_apache2.rb
fluentd-0.14.16 test/plugin/test_parser_apache2.rb
fluentd-0.14.15 test/plugin/test_parser_apache2.rb
fluentd-0.14.14 test/plugin/test_parser_apache2.rb
fluentd-0.14.14.pre.1 test/plugin/test_parser_apache2.rb