2025-02-09 17:22:03 +01:00
|
|
|
from textwrap import dedent
|
|
|
|
|
|
|
|
from packaging.version import parse as version_parse # noqa: F401
|
2025-02-09 16:57:44 +01:00
|
|
|
import pexpect
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
def test_start_on_connection_error():
|
|
|
|
cli = pexpect.spawn("iredis -p 12345", timeout=1)
|
|
|
|
cli.logfile_read = open("cli_test.log", "ab")
|
|
|
|
cli.expect(r"Error \d+ connecting to 127.0.0.1:12345. Connection refused.")
|
|
|
|
cli.close()
|
|
|
|
|
|
|
|
|
2025-02-09 17:04:04 +01:00
|
|
|
def test_start_with_client_name():
|
|
|
|
cli = pexpect.spawn("iredis --client_name custom_name", timeout=2)
|
|
|
|
cli.expect("iredis")
|
|
|
|
cli.sendline("CLIENT GETNAME")
|
|
|
|
cli.expect("custom_name")
|
|
|
|
cli.close()
|
|
|
|
|
|
|
|
|
2025-02-09 16:57:44 +01:00
|
|
|
def test_short_help_option(config):
|
|
|
|
c = pexpect.spawn("iredis -h", timeout=2)
|
|
|
|
|
|
|
|
c.expect("Show this message and exit.")
|
|
|
|
|
|
|
|
c = pexpect.spawn("iredis -h 127.0.0.1")
|
|
|
|
c.expect("127.0.0.1:6379>")
|
|
|
|
|
|
|
|
c.close()
|
|
|
|
|
|
|
|
|
2025-02-09 17:22:03 +01:00
|
|
|
@pytest.mark.skipif("version_parse(os.environ['REDIS_VERSION']) != version_parse('5')")
|
2025-02-09 16:57:44 +01:00
|
|
|
def test_server_version_in_starting_on5():
|
|
|
|
c = pexpect.spawn("iredis", timeout=2)
|
|
|
|
c.expect("redis-server 5")
|
|
|
|
c.close()
|
|
|
|
|
|
|
|
|
2025-02-09 17:22:03 +01:00
|
|
|
@pytest.mark.skipif("version_parse(os.environ['REDIS_VERSION']) != version_parse('6')")
|
2025-02-09 16:57:44 +01:00
|
|
|
def test_server_version_in_starting_on6():
|
|
|
|
c = pexpect.spawn("iredis", timeout=2)
|
|
|
|
c.expect("redis-server 6")
|
|
|
|
c.close()
|
|
|
|
|
|
|
|
|
|
|
|
def test_connection_using_url(clean_redis):
|
|
|
|
c = pexpect.spawn("iredis --url redis://localhost:6379/7", timeout=2)
|
|
|
|
c.logfile_read = open("cli_test.log", "ab")
|
|
|
|
c.expect(["iredis", "127.0.0.1:6379[7]>"])
|
|
|
|
c.sendline("set current-db 7")
|
|
|
|
c.expect("OK")
|
|
|
|
c.close()
|
|
|
|
|
|
|
|
|
|
|
|
def test_connection_using_url_from_env(clean_redis, monkeypatch):
|
|
|
|
monkeypatch.setenv("IREDIS_URL", "redis://localhost:6379/7")
|
|
|
|
c = pexpect.spawn("iredis", timeout=2)
|
|
|
|
c.logfile_read = open("cli_test.log", "ab")
|
|
|
|
c.expect(["iredis", "localhost:6379[7]>"])
|
|
|
|
c.sendline("set current-db 7")
|
|
|
|
c.expect("OK")
|
|
|
|
c.close()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason="current test in github action, socket not supported.")
|
|
|
|
# https://github.community/t5/GitHub-Actions/Job-service-command/td-p/33901#
|
|
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idservices
|
|
|
|
def test_connect_via_socket(fake_redis_socket):
|
|
|
|
config_content = dedent(
|
|
|
|
"""
|
|
|
|
[main]
|
|
|
|
log_location = /tmp/iredis1.log
|
|
|
|
no_info=True
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
with open("/tmp/iredisrc", "w+") as etc_config:
|
|
|
|
etc_config.write(config_content)
|
|
|
|
|
|
|
|
c = pexpect.spawn("iredis --iredisrc /tmp/iredisrc -s /tmp/test.sock", timeout=2)
|
|
|
|
c.logfile_read = open("cli_test.log", "ab")
|
|
|
|
c.expect("redis /tmp/test.sock")
|
|
|
|
|
|
|
|
c.close()
|
2025-02-09 17:10:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_iredis_start_with_prompt():
|
|
|
|
cli = pexpect.spawn("iredis --prompt '{host}abc{port}def{client_name}'", timeout=2)
|
|
|
|
cli.logfile_read = open("cli_test.log", "ab")
|
|
|
|
cli.expect("iredis")
|
|
|
|
cli.expect("127.0.0.1abc6379defNone")
|
|
|
|
cli.close()
|