Sha256: 8d955acd79d60695359aa1621c98845a56ac99ca57aa8930cfa8ed5a58ace875

Contents?: true

Size: 1.21 KB

Versions: 6

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

describe Rdkafka::Producer::DeliveryHandle do
  let(:response) { 0 }

  subject do
    Rdkafka::Producer::DeliveryHandle.new.tap do |handle|
      handle[:pending] = pending_handle
      handle[:response] = response
      handle[:partition] = 2
      handle[:offset] = 100
      handle.topic = "produce_test_topic"
    end
  end

  describe "#wait" do
    let(:pending_handle) { true }

    it "should wait until the timeout and then raise an error" do
      expect {
        subject.wait(max_wait_timeout: 0.1)
      }.to raise_error Rdkafka::Producer::DeliveryHandle::WaitTimeoutError, /delivery/
    end

    context "when not pending anymore and no error" do
      let(:pending_handle) { false }

      it "should return a delivery report" do
        report = subject.wait

        expect(report.partition).to eq(2)
        expect(report.offset).to eq(100)
        expect(report.topic_name).to eq("produce_test_topic")
      end

      it "should wait without a timeout" do
        report = subject.wait(max_wait_timeout: nil)

        expect(report.partition).to eq(2)
        expect(report.offset).to eq(100)
        expect(report.topic_name).to eq("produce_test_topic")
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rdkafka-0.20.0 spec/rdkafka/producer/delivery_handle_spec.rb
rdkafka-0.19.0 spec/rdkafka/producer/delivery_handle_spec.rb
rdkafka-0.18.0 spec/rdkafka/producer/delivery_handle_spec.rb
rdkafka-0.17.0 spec/rdkafka/producer/delivery_handle_spec.rb
rdkafka-0.16.1 spec/rdkafka/producer/delivery_handle_spec.rb
rdkafka-0.16.0 spec/rdkafka/producer/delivery_handle_spec.rb