mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
import hypothesis.strategies as st
|
|
|
|
from test.test_hypothesis.base import (
|
|
BaseTest,
|
|
commands,
|
|
values,
|
|
keys,
|
|
common_commands,
|
|
fields,
|
|
ints,
|
|
expires_seconds,
|
|
)
|
|
|
|
|
|
class TestHash(BaseTest):
|
|
hash_commands = (
|
|
commands(st.just("hset"), keys, st.lists(st.tuples(fields, values)))
|
|
| commands(st.just("hdel"), keys, st.lists(fields))
|
|
| commands(st.just("hexists"), keys, fields)
|
|
| commands(st.just("hget"), keys, fields)
|
|
| commands(st.sampled_from(["hgetall", "hkeys", "hvals"]), keys)
|
|
| commands(st.just("hincrby"), keys, fields, ints)
|
|
| commands(st.just("hlen"), keys)
|
|
| commands(st.just("hmget"), keys, st.lists(fields))
|
|
| commands(st.just("hset"), keys, st.lists(st.tuples(fields, values)))
|
|
| commands(st.just("hsetnx"), keys, fields, values)
|
|
| commands(st.just("hstrlen"), keys, fields)
|
|
| commands(
|
|
st.just("hpersist"),
|
|
st.just("fields"),
|
|
st.just(2),
|
|
st.lists(fields, min_size=2, max_size=2),
|
|
)
|
|
| commands(
|
|
st.just("hexpire"),
|
|
keys,
|
|
expires_seconds,
|
|
st.just("fields"),
|
|
st.just(2),
|
|
st.lists(fields, min_size=2, max_size=2),
|
|
)
|
|
)
|
|
create_command_strategy = commands(
|
|
st.just("hset"), keys, st.lists(st.tuples(fields, values), min_size=1)
|
|
)
|
|
command_strategy = hash_commands | common_commands
|