Sha256: 7aac45a49bf1f1e81cf1f377b912e76c18ae0d1bd40490ae1819f1e78135436a

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

# encoding: utf-8
require "logstash/devutils/rspec/spec_helper"

describe "outputs/kafka" do
  let (:kafka_config) {{'topic_id' => 'test'}}

  it "should register" do
    output = LogStash::Plugin.lookup("output", "kafka").new(kafka_config)
    expect {output.register}.to_not raise_error
  end

  it 'should populate kafka config with default values' do
    kafka = LogStash::Outputs::Kafka.new(kafka_config)
    insist {kafka.broker_list} == 'localhost:9092'
    insist {kafka.topic_id} == 'test'
    insist {kafka.compression_codec} == 'none'
    insist {kafka.serializer_class} == 'kafka.serializer.StringEncoder'
    insist {kafka.partitioner_class} == 'kafka.producer.DefaultPartitioner'
    insist {kafka.producer_type} == 'sync'
  end

  it 'should send logstash event to kafka broker' do
    timestamp = LogStash::Timestamp.now
    expect_any_instance_of(Kafka::Producer)
    .to receive(:send_msg)
        .with('test', nil, "{\"message\":\"hello world\",\"host\":\"test\",\"@timestamp\":\"#{timestamp}\",\"@version\":\"1\"}")
    e = LogStash::Event.new({:message => 'hello world', :host => 'test', '@timestamp' => timestamp})
    kafka = LogStash::Outputs::Kafka.new(kafka_config)
    kafka.register
    kafka.receive(e)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
logstash-output-kafka-0.1.2 spec/outputs/kafka_spec.rb