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
|
from .base import (
BaseTest,
commands,
st,
keys,
values,
common_commands,
zero_or_more,
expires_seconds,
expires_ms,
counts,
ints,
)
class TestTransaction(BaseTest):
transaction_commands = (
commands(st.sampled_from(["multi", "discard", "exec", "unwatch"]))
| commands(st.just("watch"), keys)
| commands(st.just("append"), keys, values)
| commands(st.just("bitcount"), keys)
| commands(st.just("bitcount"), keys, values, values)
| commands(st.sampled_from(["incr", "decr"]), keys)
| commands(st.sampled_from(["incrby", "decrby"]), keys, values)
| commands(st.just("get"), keys)
| commands(st.just("getbit"), keys, counts)
| commands(st.just("setbit"), keys, counts, st.integers(min_value=0, max_value=1) | ints)
| commands(st.sampled_from(["substr", "getrange"]), keys, counts, counts)
| commands(st.just("getset"), keys, values)
| commands(st.just("mget"), st.lists(keys))
| commands(st.sampled_from(["mset", "msetnx"]), st.lists(st.tuples(keys, values)))
| commands(
st.just("set"),
keys,
values,
*zero_or_more("nx", "xx", "keepttl"),
)
| commands(st.just("setex"), keys, expires_seconds, values)
| commands(st.just("psetex"), keys, expires_ms, values)
| commands(st.just("setnx"), keys, values)
| commands(st.just("setrange"), keys, counts, values)
| commands(st.just("strlen"), keys)
)
create_command_strategy = commands(st.just("set"), keys, values)
command_strategy = transaction_commands | common_commands
|