Sha256: cead321640e72e46062bf8573318e5ac5da83e6feb7f8f1662ceaf10d2cd807b

Contents?: true

Size: 1.68 KB

Versions: 32

Compression:

Stored size: 1.68 KB

Contents

require 'spec_helper'

describe '#sinterstore(destination, key [, key, ...])' do
  before do
    @numbers     = 'mock-redis-test:sinterstore:numbers'
    @evens       = 'mock-redis-test:sinterstore:evens'
    @primes      = 'mock-redis-test:sinterstore:primes'
    @destination = 'mock-redis-test:sinterstore:destination'

    (1..10).each { |i| @redises.sadd(@numbers, i) }
    [2, 4, 6, 8, 10].each { |i| @redises.sadd(@evens, i) }
    [2, 3, 5, 7].each { |i| @redises.sadd(@primes, i) }
  end

  it 'returns the number of elements in the resulting set' do
    @redises.sinterstore(@destination, @numbers, @evens).should == 5
  end

  it 'stores the resulting set' do
    @redises.sinterstore(@destination, @numbers, @evens)
    @redises.smembers(@destination).should == %w[10 8 6 4 2]
  end

  it 'does not store empty sets' do
    @redises.sinterstore(@destination, 'mock-redis-test:nonesuch', @numbers).should == 0
    @redises.get(@destination).should be_nil
  end

  it 'removes existing elements in destination' do
    @redises.sadd(@destination, 42)

    @redises.sinterstore(@destination, @primes)
    @redises.smembers(@destination).should == %w[7 5 3 2]
  end

  it 'raises an error if given 0 sets' do
    lambda do
      @redises.sinterstore(@destination)
    end.should raise_error(Redis::CommandError)
  end

  it 'raises an error if any argument is not a a set' do
    @redises.set('mock-redis-test:notset', 1)

    lambda do
      @redises.sinterstore(@destination, @numbers, 'mock-redis-test:notset')
    end.should raise_error(Redis::CommandError)

    lambda do
      @redises.sinterstore(@destination, 'mock-redis-test:notset', @numbers)
    end.should raise_error(Redis::CommandError)
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
mock_redis-0.19.0 spec/commands/sinterstore_spec.rb
mock_redis-0.18.0 spec/commands/sinterstore_spec.rb
mock_redis-0.17.3 spec/commands/sinterstore_spec.rb
mock_redis-0.17.2 spec/commands/sinterstore_spec.rb
mock_redis-0.17.1 spec/commands/sinterstore_spec.rb
mock_redis-0.17.0 spec/commands/sinterstore_spec.rb
mock_redis-0.16.1 spec/commands/sinterstore_spec.rb
mock_redis-0.16.0 spec/commands/sinterstore_spec.rb
mock_redis-0.15.4 spec/commands/sinterstore_spec.rb
mock_redis-0.15.3 spec/commands/sinterstore_spec.rb
mock_redis-0.15.2 spec/commands/sinterstore_spec.rb
mock_redis-0.15.1 spec/commands/sinterstore_spec.rb