diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-03-11 05:59:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-03-11 05:59:19 +0000 |
commit | a5d6620dd635696c6d13626a1e16dbc638f661ba (patch) | |
tree | 62b31f2f970c6645ef6008fcd45f3f7ff21bd57f /tests | |
parent | Adding upstream version 1.11.0. (diff) | |
download | iredis-a5d6620dd635696c6d13626a1e16dbc638f661ba.tar.xz iredis-a5d6620dd635696c6d13626a1e16dbc638f661ba.zip |
Adding upstream version 1.11.1.upstream/1.11.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/unittests/test_client.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/unittests/test_client.py b/tests/unittests/test_client.py index b40fc8b..f27587b 100644 --- a/tests/unittests/test_client.py +++ b/tests/unittests/test_client.py @@ -11,6 +11,7 @@ from iredis.config import config, load_config_files from iredis.completers import IRedisCompleter from iredis.entry import Rainbow, prompt_message from iredis.exceptions import NotSupport +from iredis.commands import command2syntax from ..helpers import formatted_text_rematch @@ -508,3 +509,15 @@ def test_reissue_command_on_redis_cluster_with_password_in_dsn( print(call_args) assert list(call_args[1:]) == ["set", "foo", "bar"] assert call_args[0].password == "bar" + + +def test_version_parse(iredis_client): + """ + fix: https://github.com/laixintao/iredis/issues/418 + """ + iredis_client.auth_compat("6.1.0") + assert command2syntax["AUTH"] == "command_usernamex_password" + iredis_client.auth_compat("5.0") + assert command2syntax["AUTH"] == "command_password" + iredis_client.auth_compat("5.0.14.1") + assert command2syntax["AUTH"] == "command_password" |