Sha256: 7ba65b1cae71b266236af1eef4d034523096fd626c5dad31c5ec0a8af6ca0bdb

Contents?: true

Size: 1.58 KB

Versions: 4

Compression:

Stored size: 1.58 KB

Contents

require 'spec_helper'

describe '#brpop(key [, key, ...,], timeout)' do
  before do
    @list1 = 'mock-redis-test:brpop1'
    @list2 = 'mock-redis-test:brpop2'

    @redises.rpush(@list1, 'one')
    @redises.rpush(@list1, 'two')

    @redises.rpush(@list2, 'ten')
  end

  it "returns [first-nonempty-list, popped-value]" do
    @redises.brpop(@list1, @list2).should == [@list1, 'two']
  end

  it "pops that value off the list" do
    @redises.brpop(@list1, @list2)
    @redises.brpop(@list1, @list2)
    @redises.brpop(@list1, @list2).should == [@list2, 'ten']
  end

  it "ignores empty keys" do
    @redises.brpop('mock-redis-test:not-here', @list1).should ==
      [@list1, 'two']
  end

  it "raises an error on subsecond timeouts" do
    lambda do
      @redises.brpop(@list1, @list2, :timeout => 0.5)
    end.should raise_error(Redis::CommandError)
  end

  it "raises an error on negative timeout" do
    lambda do
      @redises.brpop(@list1, @list2, :timeout => -1)
    end.should raise_error(Redis::CommandError)
  end

  it_should_behave_like "a list-only command"

  context "[mock only]" do
    it "ignores positive timeouts and returns nil" do
      @redises.mock.brpop('mock-redis-test:not-here', :timeout => 1).should be_nil
    end

    it "ignores positive legacy timeouts and returns nil" do
      @redises.mock.brpop('mock-redis-test:not-here', 1).should be_nil
    end

    it "raises WouldBlock on zero timeout (no blocking in the mock)" do
      lambda do
        @redises.mock.brpop('mock-redis-test:not-here', :timeout => 0)
      end.should raise_error(MockRedis::WouldBlock)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mock_redis-0.14.1 spec/commands/brpop_spec.rb
mock_redis-0.14.0 spec/commands/brpop_spec.rb
mock_redis-0.13.2 spec/commands/brpop_spec.rb
mock_redis-0.13.1 spec/commands/brpop_spec.rb