1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
require 'spec_helper'
module FakeRedis
describe "HashesMethods" do
before(:each) do
@client = Redis.new
end
it "should delete a hash field" do
@client.hset("key1", "k1", "val1")
@client.hset("key1", "k2", "val2")
expect(@client.hdel("key1", "k1")).to be(1)
expect(@client.hget("key1", "k1")).to be_nil
expect(@client.hget("key1", "k2")).to eq("val2")
end
it "should delete array of fields" do
@client.hset("key1", "k1", "val1")
@client.hset("key1", "k2", "val2")
@client.hset("key1", "k3", "val3")
expect(@client.hdel("key1", ["k1", "k2"])).to be(2)
expect(@client.hget("key1", "k1")).to be_nil
expect(@client.hget("key1", "k2")).to be_nil
expect(@client.hget("key1", "k3")).to eq("val3")
end
it "should remove a hash with no keys left" do
@client.hset("key1", "k1", "val1")
@client.hset("key1", "k2", "val2")
expect(@client.hdel("key1", "k1")).to be(1)
expect(@client.hdel("key1", "k2")).to be(1)
expect(@client.exists("key1")).to eq(0)
end
it "should convert key to a string for hset" do
m = double("key")
allow(m).to receive(:to_s).and_return("foo")
@client.hset("key1", m, "bar")
expect(@client.hget("key1", "foo")).to eq("bar")
end
it "should convert key to a string for hget" do
m = double("key")
allow(m).to receive(:to_s).and_return("foo")
@client.hset("key1", "foo", "bar")
expect(@client.hget("key1", m)).to eq("bar")
end
it "should determine if a hash field exists" do
@client.hset("key1", "index", "value")
expect(@client.hexists("key1", "index")).to be true
expect(@client.hexists("key2", "i2")).to be false
end
it "should get the value of a hash field" do
@client.hset("key1", "index", "value")
expect(@client.hget("key1", "index")).to eq("value")
end
it "should get all the fields and values in a hash" do
@client.hset("key1", "i1", "val1")
@client.hset("key1", "i2", "val2")
expect(@client.hgetall("key1")).to eq({"i1" => "val1", "i2" => "val2"})
end
it "should increment the integer value of a hash field by the given number" do
@client.hset("key1", "cont1", "5")
expect(@client.hincrby("key1", "cont1", "5")).to eq(10)
expect(@client.hget("key1", "cont1")).to eq("10")
end
it "should increment non existing hash keys" do
expect(@client.hget("key1", "cont2")).to be_nil
expect(@client.hincrby("key1", "cont2", "5")).to eq(5)
end
it "should increment the float value of a hash field by the given float" do
@client.hset("key1", "cont1", 5.0)
expect(@client.hincrbyfloat("key1", "cont1", 4.1)).to eq(9.1)
expect(@client.hget("key1", "cont1")).to eq("9.1")
end
it "should increment non existing hash keys" do
expect(@client.hget("key1", "cont2")).to be_nil
expect(@client.hincrbyfloat("key1", "cont2", 5.5)).to eq(5.5)
end
it "should get all the fields in a hash" do
@client.hset("key1", "i1", "val1")
@client.hset("key1", "i2", "val2")
expect(@client.hkeys("key1")).to match_array(["i1", "i2"])
expect(@client.hkeys("key2")).to eq([])
end
it "should get the number of fields in a hash" do
@client.hset("key1", "i1", "val1")
@client.hset("key1", "i2", "val2")
expect(@client.hlen("key1")).to eq(2)
end
it "should get the string length of the value associated with field in a hash" do
@client.hset("key1", "i1", "val1")
expect(@client.hstrlen("key1", "i1")).to eq(4)
expect(@client.hstrlen("key1", "nonexistent")).to eq(0)
expect(@client.hstrlen("nonexistent", "field")).to eq(0)
end
it "should get the values of all the given hash fields" do
@client.hset("key1", "i1", "val1")
@client.hset("key1", "i2", "val2")
expect(@client.hmget("key1", "i1", "i2", "i3")).to match_array(["val1", "val2", nil])
expect(@client.hmget("key1", ["i1", "i2", "i3"])).to match_array(["val1", "val2", nil])
expect(@client.hmget("key2", "i1", "i2")).to eq([nil, nil])
end
it "should throw an argument error when you don't ask for any keys" do
expect { @client.hmget("key1") }.to raise_error(Redis::CommandError)
end
it "should throw an argument error when the list of keys you ask for is empty" do
expect { @client.hmget("key1", []) }.to raise_error(Redis::CommandError)
end
it "should reject an empty list of values" do
expect { @client.hmset("key") }.to raise_error(Redis::CommandError)
expect(@client.exists("key")).to be 0
end
it "rejects an insert with a key but no value" do
expect { @client.hmset("key", 'foo') }.to raise_error(Redis::CommandError)
expect { @client.hmset("key", 'foo', 3, 'bar') }.to raise_error(Redis::CommandError)
expect(@client.exists("key")).to be 0
end
it "should reject the wrong number of arguments" do
expect { @client.hmset("hash", "foo1", "bar1", "foo2", "bar2", "foo3") }.to raise_error(Redis::CommandError, "ERR wrong number of arguments for HMSET")
end
it "should return OK on success" do
expect(@client.hmset("key", "k1", "value1")).to eq("OK")
end
it "should set multiple hash fields to multiple values" do
@client.hmset("key", "k1", "value1", "k2", "value2")
expect(@client.hget("key", "k1")).to eq("value1")
expect(@client.hget("key", "k2")).to eq("value2")
end
it "should set multiple hash fields from a ruby hash to multiple values" do
@client.mapped_hmset("foo", :k1 => "value1", :k2 => "value2")
expect(@client.hget("foo", "k1")).to eq("value1")
expect(@client.hget("foo", "k2")).to eq("value2")
end
it "should set the string value of a hash field" do
expect(@client.hset("key1", "k1", "val1")).to eq(1)
expect(@client.hset("key1", "k1", "val1")).to eq(0)
expect(@client.hget("key1", "k1")).to eq("val1")
end
it "should set the value of a hash field, only if the field does not exist" do
@client.hset("key1", "k1", "val1")
expect(@client.hsetnx("key1", "k1", "value")).to eq(false)
expect(@client.hsetnx("key1", "k2", "val2")).to eq(true)
expect(@client.hsetnx("key1", :k1, "value")).to eq(false)
expect(@client.hsetnx("key1", :k3, "val3")).to eq(true)
expect(@client.hget("key1", "k1")).to eq("val1")
expect(@client.hget("key1", "k2")).to eq("val2")
expect(@client.hget("key1", "k3")).to eq("val3")
end
it "should get all the values in a hash" do
@client.hset("key1", "k1", "val1")
@client.hset("key1", "k2", "val2")
expect(@client.hvals("key1")).to match_array(["val1", "val2"])
end
it "should accept a list of array pairs as arguments and not throw an invalid argument number error" do
@client.hmset("key1", [:k1, "val1"], [:k2, "val2"], [:k3, "val3"])
expect(@client.hget("key1", :k1)).to eq("val1")
expect(@client.hget("key1", :k2)).to eq("val2")
expect(@client.hget("key1", :k3)).to eq("val3")
end
it "should reject a list of arrays that contain an invalid number of arguments" do
expect { @client.hmset("key1", [:k1, "val1"], [:k2, "val2", "bogus val"]) }.to raise_error(Redis::CommandError, "ERR wrong number of arguments for HMSET")
end
it "should convert a integer field name to string for hdel" do
@client.hset("key1", "1", 1)
expect(@client.hdel("key1", 1)).to be(1)
end
it "should convert a integer field name to string for hexists" do
@client.hset("key1", "1", 1)
expect(@client.hexists("key1", 1)).to be true
end
it "should convert a integer field name to string for hincrby" do
@client.hset("key1", 1, 0)
expect(@client.hincrby("key1", 1, 1)).to be(1)
end
describe "#hscan" do
it 'with no arguments and few items, returns all items' do
@client.hmset('hash', 'name', 'Jack', 'age', '33')
result = @client.hscan('hash', 0)
expect(result[0]).to eq('0')
expect(result[1]).to eq([['name', 'Jack'], ['age', '33']])
end
it 'with a count should return that number of members or more' do
@client.hmset('hash',
'a', '1', 'b', '2', 'c', '3', 'd', '4', 'e', '5', 'f', '6', 'g', '7'
)
result = @client.hscan('hash', 0, count: 3)
expect(result[0]).to eq('3')
expect(result[1]).to eq([
['a', '1'],
['b', '2'],
['c', '3'],
])
end
it 'returns items starting at the provided cursor' do
@client.hmset('hash',
'a', '1', 'b', '2', 'c', '3', 'd', '4', 'e', '5', 'f', '6', 'g', '7'
)
result = @client.hscan('hash', 2, count: 3)
expect(result[0]).to eq('5')
expect(result[1]).to eq([
['c', '3'],
['d', '4'],
['e', '5']
])
end
it 'with match, returns items matching the given pattern' do
@client.hmset('hash',
'aa', '1', 'b', '2', 'cc', '3', 'd', '4', 'ee', '5', 'f', '6', 'gg', '7'
)
result = @client.hscan('hash', 2, count: 3, match: '??')
expect(result[0]).to eq('5')
expect(result[1]).to eq([
['cc', '3'],
['ee', '5']
])
end
it 'returns an empty result if the key is not found' do
result = @client.hscan('hash', 0)
expect(result[0]).to eq('0')
expect(result[1]).to eq([])
end
end
end
end
|