Sha256: a47792d0b62a8ca55bb512ffbfdf17c56d3f87f9fbb1e95d38eeeccd24082c94

Contents?: true

Size: 1.4 KB

Versions: 13

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

describe Rdkafka::Admin::DeleteTopicHandle do
  let(:response) { 0 }

  subject do
    Rdkafka::Admin::DeleteTopicHandle.new.tap do |handle|
      handle[:pending] = pending_handle
      handle[:response] = response
      handle[:error_string] = FFI::Pointer::NULL
      handle[:result_name] = FFI::MemoryPointer.from_string("my-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::Admin::DeleteTopicHandle::WaitTimeoutError, /delete topic/
    end

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

      it "should return a delete topic report" do
        report = subject.wait

        expect(report.error_string).to eq(nil)
        expect(report.result_name).to eq("my-test-topic")
      end

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

        expect(report.error_string).to eq(nil)
        expect(report.result_name).to eq("my-test-topic")
      end
    end
  end

  describe "#raise_error" do
    let(:pending_handle) { false }

    it "should raise the appropriate error" do
      expect {
        subject.raise_error
      }.to raise_exception(Rdkafka::RdkafkaError, /Success \(no_error\)/)
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rdkafka-0.20.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.19.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.18.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.17.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.14.1 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.15.2 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.16.1 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.16.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.16.0.beta1 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.15.1 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.15.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.14.0 spec/rdkafka/admin/delete_topic_handle_spec.rb
rdkafka-0.14.0.rc1 spec/rdkafka/admin/delete_topic_handle_spec.rb