Files
scylladb/test/redis/test_hashes.py
Etienne Adam 208a721253 redis: add hexists command
Add HEXISTS command which return 1 if the key/field
of a hash exist, otherwise return 0.

Signed-off-by: Etienne Adam <etienne.adam@gmail.com>
Message-Id: <20200917200259.338-1-etienne.adam@gmail.com>
2020-09-21 12:32:33 +03:00

167 lines
5.5 KiB
Python

#
# This file is part of Scylla.
#
# Scylla is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Scylla is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Scylla. If not, see <http://www.gnu.org/licenses/>.
#
import pytest
import redis
import logging
from util import random_string, connect
logger = logging.getLogger('redis-test')
def test_hset_hget_delete(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
val = random_string(10)
other_val = random_string(10)
with pytest.raises(redis.exceptions.ResponseError) as excinfo:
r.execute_command("HSET testkey")
assert "wrong number of arguments for 'hset' command" in str(excinfo.value)
with pytest.raises(redis.exceptions.ResponseError) as excinfo:
r.execute_command("HSET testkey testfield")
assert "wrong number of arguments for 'hset' command" in str(excinfo.value)
assert r.hset(key, field, val) == 1
assert r.hget(key, field) == val
# Check overwrite
r.hset(key, field, other_val)
assert r.hget(key, field) == other_val
# Check delete
assert r.delete(key) == 1
assert r.hget(key, field) == None
@pytest.mark.xfail(reason="HSET command does not support multiple key/field")
def test_hset_multiple_key_field(redis_host, redis_port):
# This test requires the library to support multiple mappings in one
# command, or we cannot test this feature. This was added to redis-py
# in version 3.5.0, in April 29, 2020.
from distutils.version import LooseVersion
if LooseVersion(redis.__version__) < LooseVersion('3.5.0'):
pytest.skip('redis-py library too old to run this test')
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
val = random_string(10)
field2 = random_string(10)
val2 = random_string(10)
assert r.hset(key, None, None, {field: val, field2: val2}) == 2
@pytest.mark.xfail(reason="HSET command does not support return of changes, it always return 1")
def test_hset_return_changes(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
val = random_string(10)
assert r.hset(key, field, val) == 1
assert r.hset(key, field, val) == 0
def test_hget_nonexistent_key(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
assert r.hget(key, field) == None
def test_hset_hdel_hgetall(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
val = random_string(10)
other_field = random_string(10)
other_val = random_string(10)
# Check result is empty
assert r.hgetall(key) == {}
# Set 2 key/field and test hgetall
assert r.hset(key, field, val) == 1
assert r.hset(key, other_field, other_val) == 1
assert r.hgetall(key) == {field: val, other_field: other_val}
# Delete 1 key/field and check removal with hgetall
assert r.hdel(key, field) == 1
assert r.hgetall(key) == {other_field: other_val}
# Delete another key/field and check removal with hgetall
assert r.hdel(key, other_field) == 1
assert r.hgetall(key) == {}
with pytest.raises(redis.exceptions.ResponseError) as excinfo:
r.execute_command("HGETALL testkey testfield")
assert "wrong number of arguments for 'hgetall' command" in str(excinfo.value)
@pytest.mark.xfail(reason="HDEL command does not support return of changes, it always return 1")
def test_hdel_return_changes(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
val = random_string(10)
assert r.hset(key, field, val) == 1
assert r.hdel(key, field) == 1
assert r.hdel(key, field) == 0
def test_hdel_several_keys(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field1 = random_string(10)
val1 = random_string(10)
field2 = random_string(10)
val2 = random_string(10)
field3 = random_string(10)
val3 = random_string(10)
# Set 2 key/field
assert r.hset(key, field1, val1) == 1
assert r.hset(key, field2, val2) == 1
assert r.hset(key, field3, val3) == 1
# Delete 2 of them
assert r.hdel(key, field1, field3) == 2
# Check the remaining item
assert r.hgetall(key) == {field2: val2}
def test_delete_hash(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
val = random_string(10)
field2 = random_string(10)
val2 = random_string(10)
assert r.hset(key, field, val) == 1
assert r.hset(key, field2, val2) == 1
assert r.hgetall(key) == {field: val, field2: val2}
assert r.delete(key) == 1
assert r.hgetall(key) == {}
def test_hexists(redis_host, redis_port):
r = connect(redis_host, redis_port)
key = random_string(10)
field = random_string(10)
assert r.hexists(key, field) == 0
assert r.hset(key, field, random_string(10)) == 1
assert r.hexists(key, field) == 1