1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
from .base import BaseTest, commands, st, common_commands, keys, values
from .test_string import string_commands
class TestServer(BaseTest):
# TODO: real redis raises an error if there is a save already in progress.
# Find a better way to test this. commands(st.just('bgsave'))
server_commands = (
commands(st.just("dbsize"))
| commands(st.sampled_from(["flushdb", "flushall"]))
# TODO: result is non-deterministic
# | commands(st.just('lastsave'))
| commands(st.just("save"))
)
command_strategy_redis_only = commands(st.sampled_from(["flushdb", "flushall"]), st.sampled_from([[], "async"]))
create_command_strategy = commands(st.just("set"), keys, values)
command_strategy = server_commands | string_commands | common_commands
|