Sha256: 3806ab670f13ab7bb4c236da52cd5cbfb8c3b214fce952c0fc1061b92a92783f

Contents?: true

Size: 1.05 KB

Versions: 73

Compression:

Stored size: 1.05 KB

Contents

require 'helper'
require 'fluent/output'

class KafkaOutputTest < Test::Unit::TestCase
  def setup
    Fluent::Test.setup
  end

  BASE_CONFIG = %[
    type kafka_buffered
  ]

  CONFIG = BASE_CONFIG + %[
    default_topic kitagawakeiko
    brokers localhost:9092
  ]

  def create_driver(conf = CONFIG, tag='test')
    Fluent::Test::BufferedOutputTestDriver.new(Fluent::KafkaOutput, tag).configure(conf)
  end

  def test_configure
    assert_nothing_raised(Fluent::ConfigError) {
      create_driver(BASE_CONFIG)
    }
    
    assert_nothing_raised(Fluent::ConfigError) {
      create_driver(CONFIG)
    }

    assert_nothing_raised(Fluent::ConfigError) {
      create_driver(CONFIG + %[
        buffer_type memory
      ])
    }

    d = create_driver
    assert_equal 'kitagawakeiko', d.instance.default_topic
    assert_equal 'localhost:9092', d.instance.brokers
  end

  def test_format
    d = create_driver
  end

  def test_write
    d = create_driver
    time = Time.parse("2011-01-02 13:14:15 UTC").to_i
    d.emit({"a"=>1}, time)
    d.emit({"a"=>2}, time)
  end
end

Version data entries

73 entries across 73 versions & 3 rubygems

Version Path
roched-fluent-plugin-kafka-0.6.18 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.17 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.16 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.15 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.14 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.13 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.12 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.11 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.10 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.9 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.8 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.7 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.6 test/plugin/test_out_kafka.rb
roched-fluent-plugin-kafka-0.6.5 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.6.3 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.6.2 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.6.1 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.6.0 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.5.7 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.5.6 test/plugin/test_out_kafka.rb