mock_redis 0.19.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +161 -0
- data/LICENSE.md +21 -0
- data/README.md +41 -17
- data/lib/mock_redis/connection_method.rb +13 -0
- data/lib/mock_redis/database.rb +116 -41
- data/lib/mock_redis/expire_wrapper.rb +1 -1
- data/lib/mock_redis/future.rb +1 -1
- data/lib/mock_redis/geospatial_methods.rb +13 -21
- data/lib/mock_redis/hash_methods.rb +34 -15
- data/lib/mock_redis/indifferent_hash.rb +0 -8
- data/lib/mock_redis/info_method.rb +2 -2
- data/lib/mock_redis/list_methods.rb +39 -4
- data/lib/mock_redis/memory_method.rb +11 -0
- data/lib/mock_redis/multi_db_wrapper.rb +4 -4
- data/lib/mock_redis/pipelined_wrapper.rb +32 -15
- data/lib/mock_redis/set_methods.rb +34 -6
- data/lib/mock_redis/stream/id.rb +58 -0
- data/lib/mock_redis/stream.rb +88 -0
- data/lib/mock_redis/stream_methods.rb +102 -0
- data/lib/mock_redis/string_methods.rb +81 -30
- data/lib/mock_redis/transaction_wrapper.rb +32 -21
- data/lib/mock_redis/utility_methods.rb +9 -4
- data/lib/mock_redis/version.rb +1 -1
- data/lib/mock_redis/zset.rb +5 -8
- data/lib/mock_redis/zset_methods.rb +64 -12
- data/lib/mock_redis.rb +38 -10
- metadata +40 -336
- data/.gitignore +0 -5
- data/.mailmap +0 -2
- data/.overcommit.yml +0 -21
- data/.rspec +0 -1
- data/.rubocop.yml +0 -121
- data/.rubocop_todo.yml +0 -35
- data/.simplecov +0 -4
- data/.travis.yml +0 -33
- data/Gemfile +0 -12
- data/LICENSE +0 -19
- data/Rakefile +0 -2
- data/mock_redis.gemspec +0 -30
- data/spec/client_spec.rb +0 -17
- data/spec/cloning_spec.rb +0 -95
- data/spec/commands/append_spec.rb +0 -24
- data/spec/commands/auth_spec.rb +0 -7
- data/spec/commands/bgrewriteaof_spec.rb +0 -7
- data/spec/commands/bgsave_spec.rb +0 -7
- data/spec/commands/bitcount_spec.rb +0 -25
- data/spec/commands/bitfield_spec.rb +0 -169
- data/spec/commands/blpop_spec.rb +0 -59
- data/spec/commands/brpop_spec.rb +0 -58
- data/spec/commands/brpoplpush_spec.rb +0 -52
- data/spec/commands/connected_spec.rb +0 -7
- data/spec/commands/dbsize_spec.rb +0 -18
- data/spec/commands/decr_spec.rb +0 -34
- data/spec/commands/decrby_spec.rb +0 -34
- data/spec/commands/del_spec.rb +0 -35
- data/spec/commands/disconnect_spec.rb +0 -7
- data/spec/commands/echo_spec.rb +0 -11
- data/spec/commands/eval_spec.rb +0 -7
- data/spec/commands/evalsha_spec.rb +0 -10
- data/spec/commands/exists_spec.rb +0 -14
- data/spec/commands/expire_spec.rb +0 -111
- data/spec/commands/expireat_spec.rb +0 -47
- data/spec/commands/flushall_spec.rb +0 -38
- data/spec/commands/flushdb_spec.rb +0 -38
- data/spec/commands/future_spec.rb +0 -20
- data/spec/commands/geoadd_spec.rb +0 -58
- data/spec/commands/geodist_spec.rb +0 -114
- data/spec/commands/geohash_spec.rb +0 -52
- data/spec/commands/geopos_spec.rb +0 -55
- data/spec/commands/get_spec.rb +0 -30
- data/spec/commands/getbit_spec.rb +0 -34
- data/spec/commands/getrange_spec.rb +0 -22
- data/spec/commands/getset_spec.rb +0 -23
- data/spec/commands/hash_operator_spec.rb +0 -21
- data/spec/commands/hdel_spec.rb +0 -54
- data/spec/commands/hexists_spec.rb +0 -27
- data/spec/commands/hget_spec.rb +0 -28
- data/spec/commands/hgetall_spec.rb +0 -32
- data/spec/commands/hincrby_spec.rb +0 -58
- data/spec/commands/hincrbyfloat_spec.rb +0 -58
- data/spec/commands/hkeys_spec.rb +0 -19
- data/spec/commands/hlen_spec.rb +0 -19
- data/spec/commands/hmget_spec.rb +0 -40
- data/spec/commands/hmset_spec.rb +0 -43
- data/spec/commands/hscan_each_spec.rb +0 -48
- data/spec/commands/hscan_spec.rb +0 -27
- data/spec/commands/hset_spec.rb +0 -38
- data/spec/commands/hsetnx_spec.rb +0 -44
- data/spec/commands/hvals_spec.rb +0 -19
- data/spec/commands/incr_spec.rb +0 -34
- data/spec/commands/incrby_spec.rb +0 -44
- data/spec/commands/incrbyfloat_spec.rb +0 -44
- data/spec/commands/info_spec.rb +0 -62
- data/spec/commands/keys_spec.rb +0 -122
- data/spec/commands/lastsave_spec.rb +0 -8
- data/spec/commands/lindex_spec.rb +0 -49
- data/spec/commands/linsert_spec.rb +0 -68
- data/spec/commands/llen_spec.rb +0 -16
- data/spec/commands/lpop_spec.rb +0 -34
- data/spec/commands/lpush_spec.rb +0 -43
- data/spec/commands/lpushx_spec.rb +0 -46
- data/spec/commands/lrange_spec.rb +0 -51
- data/spec/commands/lrem_spec.rb +0 -80
- data/spec/commands/lset_spec.rb +0 -43
- data/spec/commands/ltrim_spec.rb +0 -45
- data/spec/commands/mapped_hmget_spec.rb +0 -29
- data/spec/commands/mapped_hmset_spec.rb +0 -47
- data/spec/commands/mapped_mget_spec.rb +0 -22
- data/spec/commands/mapped_mset_spec.rb +0 -19
- data/spec/commands/mapped_msetnx_spec.rb +0 -26
- data/spec/commands/mget_spec.rb +0 -34
- data/spec/commands/move_spec.rb +0 -147
- data/spec/commands/mset_spec.rb +0 -29
- data/spec/commands/msetnx_spec.rb +0 -40
- data/spec/commands/persist_spec.rb +0 -48
- data/spec/commands/pexpire_spec.rb +0 -86
- data/spec/commands/pexpireat_spec.rb +0 -48
- data/spec/commands/ping_spec.rb +0 -7
- data/spec/commands/pipelined_spec.rb +0 -42
- data/spec/commands/pttl_spec.rb +0 -41
- data/spec/commands/quit_spec.rb +0 -7
- data/spec/commands/randomkey_spec.rb +0 -20
- data/spec/commands/rename_spec.rb +0 -42
- data/spec/commands/renamenx_spec.rb +0 -41
- data/spec/commands/rpop_spec.rb +0 -34
- data/spec/commands/rpoplpush_spec.rb +0 -50
- data/spec/commands/rpush_spec.rb +0 -43
- data/spec/commands/rpushx_spec.rb +0 -46
- data/spec/commands/sadd_spec.rb +0 -45
- data/spec/commands/save_spec.rb +0 -7
- data/spec/commands/scan_each_spec.rb +0 -39
- data/spec/commands/scan_spec.rb +0 -55
- data/spec/commands/scard_spec.rb +0 -18
- data/spec/commands/script_spec.rb +0 -9
- data/spec/commands/sdiff_spec.rb +0 -47
- data/spec/commands/sdiffstore_spec.rb +0 -58
- data/spec/commands/select_spec.rb +0 -61
- data/spec/commands/set_spec.rb +0 -63
- data/spec/commands/setbit_spec.rb +0 -54
- data/spec/commands/setex_spec.rb +0 -22
- data/spec/commands/setnx_spec.rb +0 -25
- data/spec/commands/setrange_spec.rb +0 -30
- data/spec/commands/sinter_spec.rb +0 -39
- data/spec/commands/sinterstore_spec.rb +0 -53
- data/spec/commands/sismember_spec.rb +0 -29
- data/spec/commands/smembers_spec.rb +0 -28
- data/spec/commands/smove_spec.rb +0 -41
- data/spec/commands/sort_list_spec.rb +0 -21
- data/spec/commands/sort_set_spec.rb +0 -21
- data/spec/commands/sort_zset_spec.rb +0 -21
- data/spec/commands/spop_spec.rb +0 -25
- data/spec/commands/srandmember_spec.rb +0 -49
- data/spec/commands/srem_spec.rb +0 -40
- data/spec/commands/sscan_each_spec.rb +0 -48
- data/spec/commands/sscan_spec.rb +0 -39
- data/spec/commands/strlen_spec.rb +0 -18
- data/spec/commands/sunion_spec.rb +0 -42
- data/spec/commands/sunionstore_spec.rb +0 -59
- data/spec/commands/ttl_spec.rb +0 -40
- data/spec/commands/type_spec.rb +0 -36
- data/spec/commands/unwatch_spec.rb +0 -7
- data/spec/commands/watch_spec.rb +0 -16
- data/spec/commands/zadd_spec.rb +0 -123
- data/spec/commands/zcard_spec.rb +0 -19
- data/spec/commands/zcount_spec.rb +0 -39
- data/spec/commands/zincrby_spec.rb +0 -31
- data/spec/commands/zinterstore_spec.rb +0 -96
- data/spec/commands/zrange_spec.rb +0 -80
- data/spec/commands/zrangebyscore_spec.rb +0 -83
- data/spec/commands/zrank_spec.rb +0 -29
- data/spec/commands/zrem_spec.rb +0 -43
- data/spec/commands/zremrangebyrank_spec.rb +0 -27
- data/spec/commands/zremrangebyscore_spec.rb +0 -35
- data/spec/commands/zrevrange_spec.rb +0 -56
- data/spec/commands/zrevrangebyscore_spec.rb +0 -58
- data/spec/commands/zrevrank_spec.rb +0 -29
- data/spec/commands/zscan_each_spec.rb +0 -48
- data/spec/commands/zscan_spec.rb +0 -26
- data/spec/commands/zscore_spec.rb +0 -22
- data/spec/commands/zunionstore_spec.rb +0 -104
- data/spec/mock_redis_spec.rb +0 -86
- data/spec/spec_helper.rb +0 -63
- data/spec/support/redis_multiplexer.rb +0 -106
- data/spec/support/shared_examples/only_operates_on_hashes.rb +0 -13
- data/spec/support/shared_examples/only_operates_on_lists.rb +0 -13
- data/spec/support/shared_examples/only_operates_on_sets.rb +0 -13
- data/spec/support/shared_examples/only_operates_on_strings.rb +0 -13
- data/spec/support/shared_examples/only_operates_on_zsets.rb +0 -57
- data/spec/support/shared_examples/sorts_enumerables.rb +0 -56
- data/spec/transactions_spec.rb +0 -159
data/spec/commands/brpop_spec.rb
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#brpop(key [, key, ...,], timeout)' do
|
4
|
-
before do
|
5
|
-
@list1 = 'mock-redis-test:brpop1'
|
6
|
-
@list2 = 'mock-redis-test:brpop2'
|
7
|
-
|
8
|
-
@redises.rpush(@list1, 'one')
|
9
|
-
@redises.rpush(@list1, 'two')
|
10
|
-
|
11
|
-
@redises.rpush(@list2, 'ten')
|
12
|
-
end
|
13
|
-
|
14
|
-
it 'returns [first-nonempty-list, popped-value]' do
|
15
|
-
@redises.brpop(@list1, @list2).should == [@list1, 'two']
|
16
|
-
end
|
17
|
-
|
18
|
-
it 'pops that value off the list' do
|
19
|
-
@redises.brpop(@list1, @list2)
|
20
|
-
@redises.brpop(@list1, @list2)
|
21
|
-
@redises.brpop(@list1, @list2).should == [@list2, 'ten']
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'ignores empty keys' do
|
25
|
-
@redises.brpop('mock-redis-test:not-here', @list1).should ==
|
26
|
-
[@list1, 'two']
|
27
|
-
end
|
28
|
-
|
29
|
-
it 'raises an error on subsecond timeouts' do
|
30
|
-
lambda do
|
31
|
-
@redises.brpop(@list1, @list2, :timeout => 0.5)
|
32
|
-
end.should raise_error(Redis::CommandError)
|
33
|
-
end
|
34
|
-
|
35
|
-
it 'raises an error on negative timeout' do
|
36
|
-
lambda do
|
37
|
-
@redises.brpop(@list1, @list2, :timeout => -1)
|
38
|
-
end.should raise_error(Redis::CommandError)
|
39
|
-
end
|
40
|
-
|
41
|
-
it_should_behave_like 'a list-only command'
|
42
|
-
|
43
|
-
context '[mock only]' do
|
44
|
-
it 'ignores positive timeouts and returns nil' do
|
45
|
-
@redises.mock.brpop('mock-redis-test:not-here', :timeout => 1).should be_nil
|
46
|
-
end
|
47
|
-
|
48
|
-
it 'ignores positive legacy timeouts and returns nil' do
|
49
|
-
@redises.mock.brpop('mock-redis-test:not-here', 1).should be_nil
|
50
|
-
end
|
51
|
-
|
52
|
-
it 'raises WouldBlock on zero timeout (no blocking in the mock)' do
|
53
|
-
lambda do
|
54
|
-
@redises.mock.brpop('mock-redis-test:not-here', :timeout => 0)
|
55
|
-
end.should raise_error(MockRedis::WouldBlock)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
@@ -1,52 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
require 'spec_helper'
|
4
|
-
|
5
|
-
describe '#brpoplpush(source, destination, timeout)' do
|
6
|
-
before do
|
7
|
-
@list1 = 'mock-redis-test:brpoplpush1'
|
8
|
-
@list2 = 'mock-redis-test:brpoplpush2'
|
9
|
-
|
10
|
-
@redises.rpush(@list1, 'A')
|
11
|
-
@redises.rpush(@list1, 'B')
|
12
|
-
|
13
|
-
@redises.rpush(@list2, 'alpha')
|
14
|
-
@redises.rpush(@list2, 'beta')
|
15
|
-
end
|
16
|
-
|
17
|
-
it 'takes the last element of source and prepends it to destination' do
|
18
|
-
@redises.brpoplpush(@list1, @list2)
|
19
|
-
@redises.lrange(@list1, 0, -1).should == %w[A]
|
20
|
-
@redises.lrange(@list2, 0, -1).should == %w[B alpha beta]
|
21
|
-
end
|
22
|
-
|
23
|
-
it 'returns the moved element' do
|
24
|
-
@redises.brpoplpush(@list1, @list2).should == 'B'
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'raises an error on negative timeout' do
|
28
|
-
lambda do
|
29
|
-
@redises.brpoplpush(@list1, @list2, :timeout => -1)
|
30
|
-
end.should raise_error(Redis::CommandError)
|
31
|
-
end
|
32
|
-
|
33
|
-
it_should_behave_like 'a list-only command'
|
34
|
-
|
35
|
-
context '[mock only]' do
|
36
|
-
it 'ignores positive timeouts and returns nil' do
|
37
|
-
@redises.mock.brpoplpush('mock-redis-test:not-here', @list1, :timeout => 1).
|
38
|
-
should be_nil
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'ignores positive legacy timeouts and returns nil' do
|
42
|
-
@redises.mock.brpoplpush('mock-redis-test:not-here', @list1, 1).
|
43
|
-
should be_nil
|
44
|
-
end
|
45
|
-
|
46
|
-
it 'raises WouldBlock on zero timeout (no blocking in the mock)' do
|
47
|
-
lambda do
|
48
|
-
@redises.mock.brpoplpush('mock-redis-test:not-here', @list1, :timeout => 0)
|
49
|
-
end.should raise_error(MockRedis::WouldBlock)
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#dbsize [mock only]' do
|
4
|
-
# mock only since we can't guarantee that the real Redis is empty
|
5
|
-
before { @mock = @redises.mock }
|
6
|
-
|
7
|
-
it 'returns 0 for an empty DB' do
|
8
|
-
@mock.dbsize.should == 0
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'returns the number of keys in the DB' do
|
12
|
-
@mock.set('foo', 1)
|
13
|
-
@mock.lpush('bar', 2)
|
14
|
-
@mock.hset('baz', 3, 4)
|
15
|
-
|
16
|
-
@mock.dbsize.should == 3
|
17
|
-
end
|
18
|
-
end
|
data/spec/commands/decr_spec.rb
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#decr(key)' do
|
4
|
-
before { @key = 'mock-redis-test:46895' }
|
5
|
-
|
6
|
-
it 'returns the value after the decrement' do
|
7
|
-
@redises.set(@key, 2)
|
8
|
-
@redises.decr(@key).should == 1
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'treats a missing key like 0' do
|
12
|
-
@redises.decr(@key).should == -1
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'decrements negative numbers' do
|
16
|
-
@redises.set(@key, -10)
|
17
|
-
@redises.decr(@key).should == -11
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'works multiple times' do
|
21
|
-
@redises.decr(@key).should == -1
|
22
|
-
@redises.decr(@key).should == -2
|
23
|
-
@redises.decr(@key).should == -3
|
24
|
-
end
|
25
|
-
|
26
|
-
it 'raises an error if the value does not look like an integer' do
|
27
|
-
@redises.set(@key, 'minus one')
|
28
|
-
lambda do
|
29
|
-
@redises.decr(@key)
|
30
|
-
end.should raise_error(Redis::CommandError)
|
31
|
-
end
|
32
|
-
|
33
|
-
it_should_behave_like 'a string-only command'
|
34
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#decrby(key, decrement)' do
|
4
|
-
before { @key = 'mock-redis-test:43650' }
|
5
|
-
|
6
|
-
it 'returns the value after the decrement' do
|
7
|
-
@redises.set(@key, 4)
|
8
|
-
@redises.decrby(@key, 2).should == 2
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'treats a missing key like 0' do
|
12
|
-
@redises.decrby(@key, 2).should == -2
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'decrements negative numbers' do
|
16
|
-
@redises.set(@key, -10)
|
17
|
-
@redises.decrby(@key, 2).should == -12
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'works multiple times' do
|
21
|
-
@redises.decrby(@key, 2).should == -2
|
22
|
-
@redises.decrby(@key, 2).should == -4
|
23
|
-
@redises.decrby(@key, 2).should == -6
|
24
|
-
end
|
25
|
-
|
26
|
-
it 'raises an error if the value does not look like an integer' do
|
27
|
-
@redises.set(@key, 'one')
|
28
|
-
lambda do
|
29
|
-
@redises.decrby(@key, 1)
|
30
|
-
end.should raise_error(Redis::CommandError)
|
31
|
-
end
|
32
|
-
|
33
|
-
it_should_behave_like 'a string-only command'
|
34
|
-
end
|
data/spec/commands/del_spec.rb
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#del(key [, key, ...])' do
|
4
|
-
it 'returns the number of keys deleted' do
|
5
|
-
@redises.set('mock-redis-test:1', 1)
|
6
|
-
@redises.set('mock-redis-test:2', 1)
|
7
|
-
|
8
|
-
@redises.del(
|
9
|
-
'mock-redis-test:1',
|
10
|
-
'mock-redis-test:2',
|
11
|
-
'mock-redis-test:other'
|
12
|
-
).should == 2
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'actually removes the key' do
|
16
|
-
@redises.set('mock-redis-test:1', 1)
|
17
|
-
@redises.del('mock-redis-test:1')
|
18
|
-
|
19
|
-
@redises.get('mock-redis-test:1').should be_nil
|
20
|
-
end
|
21
|
-
|
22
|
-
it 'accepts an array of keys' do
|
23
|
-
@redises.set('mock-redis-test:1', 1)
|
24
|
-
@redises.set('mock-redis-test:2', 2)
|
25
|
-
|
26
|
-
@redises.del(%w[mock-redis-test:1 mock-redis-test:2])
|
27
|
-
|
28
|
-
@redises.get('mock-redis-test:1').should be_nil
|
29
|
-
@redises.get('mock-redis-test:2').should be_nil
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'raises an error if an empty array is given' do
|
33
|
-
expect { @redises.del [] }.to raise_error Redis::CommandError
|
34
|
-
end
|
35
|
-
end
|
data/spec/commands/echo_spec.rb
DELETED
data/spec/commands/eval_spec.rb
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#exists(key)' do
|
4
|
-
before { @key = 'mock-redis-test:45794' }
|
5
|
-
|
6
|
-
it 'returns false for keys that do not exist' do
|
7
|
-
@redises.exists(@key).should == false
|
8
|
-
end
|
9
|
-
|
10
|
-
it 'returns true for keys that do exist' do
|
11
|
-
@redises.set(@key, 1)
|
12
|
-
@redises.exists(@key).should == true
|
13
|
-
end
|
14
|
-
end
|
@@ -1,111 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#expire(key, seconds)' do
|
4
|
-
before do
|
5
|
-
@key = 'mock-redis-test:expire'
|
6
|
-
@redises.set(@key, 'spork')
|
7
|
-
end
|
8
|
-
|
9
|
-
it 'returns true for a key that exists' do
|
10
|
-
@redises.expire(@key, 1).should == true
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'returns false for a key that does not exist' do
|
14
|
-
@redises.expire('mock-redis-test:nonesuch', 1).should == false
|
15
|
-
end
|
16
|
-
|
17
|
-
it 'removes a key immediately when seconds==0' do
|
18
|
-
@redises.expire(@key, 0)
|
19
|
-
@redises.get(@key).should be_nil
|
20
|
-
end
|
21
|
-
|
22
|
-
it 'raises an error if seconds is bogus' do
|
23
|
-
lambda do
|
24
|
-
@redises.expireat(@key, 'a couple minutes or so')
|
25
|
-
end.should raise_error(Redis::CommandError)
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'stringifies key' do
|
29
|
-
@redises.expire(@key.to_sym, 9).should == true
|
30
|
-
end
|
31
|
-
|
32
|
-
context '[mock only]' do
|
33
|
-
# These are mock-only since we can't actually manipulate time in
|
34
|
-
# the real Redis.
|
35
|
-
|
36
|
-
before(:all) do
|
37
|
-
@mock = @redises.mock
|
38
|
-
end
|
39
|
-
|
40
|
-
before do
|
41
|
-
@now = Time.now
|
42
|
-
Time.stub(:now).and_return(@now)
|
43
|
-
end
|
44
|
-
|
45
|
-
it 'removes keys after enough time has passed' do
|
46
|
-
@mock.expire(@key, 5)
|
47
|
-
Time.stub(:now).and_return(@now + 5)
|
48
|
-
@mock.get(@key).should be_nil
|
49
|
-
end
|
50
|
-
|
51
|
-
it 'updates an existing expire time' do
|
52
|
-
@mock.expire(@key, 5)
|
53
|
-
@mock.expire(@key, 6)
|
54
|
-
|
55
|
-
Time.stub(:now).and_return(@now + 5)
|
56
|
-
@mock.get(@key).should_not be_nil
|
57
|
-
end
|
58
|
-
|
59
|
-
it 'has millisecond precision' do
|
60
|
-
@now = Time.at(@now.to_i + 0.5)
|
61
|
-
Time.stub(:now).and_return(@now)
|
62
|
-
@mock.expire(@key, 5)
|
63
|
-
Time.stub(:now).and_return(@now + 4.9)
|
64
|
-
@mock.get(@key).should_not be_nil
|
65
|
-
end
|
66
|
-
|
67
|
-
context 'expirations on a deleted key' do
|
68
|
-
before { @mock.del(@key) }
|
69
|
-
|
70
|
-
it 'cleans up the expiration once the key is gone (string)' do
|
71
|
-
@mock.set(@key, 'string')
|
72
|
-
@mock.expire(@key, 2)
|
73
|
-
@mock.del(@key)
|
74
|
-
@mock.set(@key, 'string')
|
75
|
-
|
76
|
-
Time.stub(:now).and_return(@now + 2)
|
77
|
-
|
78
|
-
@mock.get(@key).should_not be_nil
|
79
|
-
end
|
80
|
-
|
81
|
-
it 'cleans up the expiration once the key is gone (list)' do
|
82
|
-
@mock.rpush(@key, 'coconuts')
|
83
|
-
@mock.expire(@key, 2)
|
84
|
-
@mock.rpop(@key)
|
85
|
-
|
86
|
-
@mock.rpush(@key, 'coconuts')
|
87
|
-
|
88
|
-
Time.stub(:now).and_return(@now + 2)
|
89
|
-
|
90
|
-
@mock.lindex(@key, 0).should_not be_nil
|
91
|
-
end
|
92
|
-
end
|
93
|
-
|
94
|
-
context 'with two key expirations' do
|
95
|
-
let(:other_key) { 'mock-redis-test:expire-other' }
|
96
|
-
|
97
|
-
before { @redises.set(other_key, 'spork-other') }
|
98
|
-
|
99
|
-
it 'removes keys after enough time has passed' do
|
100
|
-
@mock.expire(@key, 5)
|
101
|
-
@mock.expire(other_key, 10)
|
102
|
-
|
103
|
-
Time.stub(:now).and_return(@now + 5)
|
104
|
-
@mock.get(@key).should be_nil
|
105
|
-
|
106
|
-
Time.stub(:now).and_return(@now + 10)
|
107
|
-
@mock.get(other_key).should be_nil
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|
111
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#expireat(key, timestamp)' do
|
4
|
-
before do
|
5
|
-
@key = 'mock-redis-test:expireat'
|
6
|
-
@redises.set(@key, 'spork')
|
7
|
-
end
|
8
|
-
|
9
|
-
it 'returns true for a key that exists' do
|
10
|
-
@redises.expireat(@key, Time.now.to_i + 1).should == true
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'returns false for a key that does not exist' do
|
14
|
-
@redises.expireat('mock-redis-test:nonesuch', Time.now.to_i + 1).should == false
|
15
|
-
end
|
16
|
-
|
17
|
-
it 'removes a key immediately when timestamp is now' do
|
18
|
-
@redises.expireat(@key, Time.now.to_i)
|
19
|
-
@redises.get(@key).should be_nil
|
20
|
-
end
|
21
|
-
|
22
|
-
it "raises an error if you don't give it a Unix timestamp" do
|
23
|
-
lambda do
|
24
|
-
@redises.expireat(@key, Time.now) # oops, forgot .to_i
|
25
|
-
end.should raise_error(Redis::CommandError)
|
26
|
-
end
|
27
|
-
|
28
|
-
context '[mock only]' do
|
29
|
-
# These are mock-only since we can't actually manipulate time in
|
30
|
-
# the real Redis.
|
31
|
-
|
32
|
-
before(:all) do
|
33
|
-
@mock = @redises.mock
|
34
|
-
end
|
35
|
-
|
36
|
-
before do
|
37
|
-
@now = Time.now
|
38
|
-
Time.stub(:now).and_return(@now)
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'removes keys after enough time has passed' do
|
42
|
-
@mock.expireat(@key, @now.to_i + 5)
|
43
|
-
Time.stub(:now).and_return(@now + 5)
|
44
|
-
@mock.get(@key).should be_nil
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#flushall [mock only]' do
|
4
|
-
# don't want to hurt things in the real redis that are outside our
|
5
|
-
# namespace.
|
6
|
-
before { @mock = @redises.mock }
|
7
|
-
before { @key = 'mock-redis-test:select' }
|
8
|
-
|
9
|
-
it "returns 'OK'" do
|
10
|
-
@mock.flushall.should == 'OK'
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'removes all keys in the current DB' do
|
14
|
-
@mock.set('k1', 'v1')
|
15
|
-
@mock.lpush('k2', 'v2')
|
16
|
-
|
17
|
-
@mock.flushall
|
18
|
-
@mock.keys('*').should == []
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'removes all keys in other DBs, too' do
|
22
|
-
@mock.set('k1', 'v1')
|
23
|
-
|
24
|
-
@mock.select(1)
|
25
|
-
@mock.flushall
|
26
|
-
@mock.select(0)
|
27
|
-
|
28
|
-
@mock.get('k1').should be_nil
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'removes expiration times' do
|
32
|
-
@mock.set('k1', 'v1')
|
33
|
-
@mock.expire('k1', 360_000)
|
34
|
-
@mock.flushall
|
35
|
-
@mock.set('k1', 'v1')
|
36
|
-
@mock.ttl('k1').should == -1
|
37
|
-
end
|
38
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#flushdb [mock only]' do
|
4
|
-
# don't want to hurt things in the real redis that are outside our
|
5
|
-
# namespace.
|
6
|
-
before { @mock = @redises.mock }
|
7
|
-
before { @key = 'mock-redis-test:select' }
|
8
|
-
|
9
|
-
it "returns 'OK'" do
|
10
|
-
@mock.flushdb.should == 'OK'
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'removes all keys in the current DB' do
|
14
|
-
@mock.set('k1', 'v1')
|
15
|
-
@mock.lpush('k2', 'v2')
|
16
|
-
|
17
|
-
@mock.flushdb
|
18
|
-
@mock.keys('*').should == []
|
19
|
-
end
|
20
|
-
|
21
|
-
it 'leaves other databases alone' do
|
22
|
-
@mock.set('k1', 'v1')
|
23
|
-
|
24
|
-
@mock.select(1)
|
25
|
-
@mock.flushdb
|
26
|
-
@mock.select(0)
|
27
|
-
|
28
|
-
@mock.get('k1').should == 'v1'
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'removes expiration times' do
|
32
|
-
@mock.set('k1', 'v1')
|
33
|
-
@mock.expire('k1', 360_000)
|
34
|
-
@mock.flushdb
|
35
|
-
@mock.set('k1', 'v1')
|
36
|
-
@mock.ttl('k1').should == -1
|
37
|
-
end
|
38
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe MockRedis::Future do
|
4
|
-
let(:command) { [:get, 'foo'] }
|
5
|
-
let(:result) { 'bar' }
|
6
|
-
before { @future = MockRedis::Future.new(command) }
|
7
|
-
|
8
|
-
it 'remembers the command' do
|
9
|
-
@future.command.should eq(command)
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'raises an error if the value is requested before the result is set' do
|
13
|
-
expect { @future.value }.to raise_error(MockRedis::FutureNotReady)
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'returns the value after the result has been set' do
|
17
|
-
@future.store_result(result)
|
18
|
-
@future.value.should eq(result)
|
19
|
-
end
|
20
|
-
end
|
@@ -1,58 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe '#geoadd' do
|
4
|
-
let(:key) { 'cities' }
|
5
|
-
|
6
|
-
context 'with valid points' do
|
7
|
-
let(:san_francisco) { [-122.5076404, 37.757815, 'SF'] }
|
8
|
-
let(:los_angeles) { [-118.6919259, 34.0207305, 'LA'] }
|
9
|
-
let(:expected_result) do
|
10
|
-
[['LA', 1.364461589564902e+15], ['SF', 1.367859319053696e+15]]
|
11
|
-
end
|
12
|
-
|
13
|
-
before { @redises.geoadd(key, *san_francisco, *los_angeles) }
|
14
|
-
|
15
|
-
after { @redises.zrem(key, %w[SF LA]) }
|
16
|
-
|
17
|
-
it 'adds members to ZSET' do
|
18
|
-
cities = @redises.zrange(key, 0, -1, with_scores: true)
|
19
|
-
expect(cities).to be == expected_result
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
context 'with invalud points' do
|
24
|
-
context 'when number of arguments wrong' do
|
25
|
-
let(:message) { "ERR wrong number of arguments for 'geoadd' command" }
|
26
|
-
|
27
|
-
it 'raises Redis::CommandError' do
|
28
|
-
expect { @redises.geoadd(key, 1, 1) }
|
29
|
-
.to raise_error(Redis::CommandError, message)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
context 'when coordinates are not in allowed range' do
|
34
|
-
let(:coords) { [181, 86] }
|
35
|
-
let(:message) do
|
36
|
-
formatted_coords = coords.map { |c| format('%.6f', c) }
|
37
|
-
"ERR invalid longitude,latitude pair #{formatted_coords.join(',')}"
|
38
|
-
end
|
39
|
-
|
40
|
-
after { @redises.zrem(key, 'SF') }
|
41
|
-
|
42
|
-
it 'raises Redis::CommandError' do
|
43
|
-
expect { @redises.geoadd(key, *coords, 'SF') }
|
44
|
-
.to raise_error(Redis::CommandError, message)
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
context 'when coordinates are not valid floats' do
|
49
|
-
let(:coords) { ['x', 35] }
|
50
|
-
let(:message) { 'ERR value is not a valid float' }
|
51
|
-
|
52
|
-
it 'raises Redis::CommandError' do
|
53
|
-
expect { @redises.geoadd key, *coords, 'SF' }
|
54
|
-
.to raise_error(Redis::CommandError, message)
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|