Sha256: b9b237ebd01f06b5bab452cfc8ef0bc091f9015b9a8cbfc31f3052cbf8e54544

Contents?: true

Size: 1.17 KB

Versions: 51

Compression:

Stored size: 1.17 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_mutli_worker_support
    d = create_driver
    assert_equal true, d.instance.multi_workers_ready?

  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

51 entries across 51 versions & 3 rubygems

Version Path
fluent-plugin-kafka-0.16.3 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.16.2 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.16.1 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.16.0 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.15.3 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.15.2 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.15.1 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.15.0 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.14.2 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.14.1 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.14.0 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.13.1 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.13.0 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.12.4 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.12.3 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.12.2 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.12.1 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.12.0 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.11.2 test/plugin/test_out_kafka.rb
fluent-plugin-kafka-0.11.1 test/plugin/test_out_kafka.rb