Sha256: e0bed74b3faa5a670be4990fb2b2767b34924d71ae11cd4103f107c8efa76740

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 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
    secretName testsecret
  ]

  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
    assert_equal 'testsecret', d.instance.secretName
    assert_equal 'latest', d.instance.version
  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

7 entries across 7 versions & 1 rubygems

Version Path
madhawk57-log-0.1.6 test/plugin/test_out_kafka.rb
madhawk57-log-0.1.5 test/plugin/test_out_kafka.rb
madhawk57-log-0.1.4 test/plugin/test_out_kafka.rb
madhawk57-log-0.1.3 test/plugin/test_out_kafka.rb
madhawk57-log-0.1.2 test/plugin/test_out_kafka.rb
madhawk57-log-0.1.1 test/plugin/test_out_kafka.rb
madhawk57-log-0.1.0 test/plugin/test_out_kafka.rb