Adding upstream version 1.9.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
2bf0435a35
commit
031879240c
356 changed files with 26924 additions and 0 deletions
53
tests/cli_tests/test_dsn.py
Normal file
53
tests/cli_tests/test_dsn.py
Normal file
|
@ -0,0 +1,53 @@
|
|||
import os
|
||||
|
||||
import pexpect
|
||||
from textwrap import dedent
|
||||
import pytest
|
||||
|
||||
|
||||
def test_using_dsn():
|
||||
config_content = dedent(
|
||||
"""
|
||||
[alias_dsn]
|
||||
local = redis://localhost:6379/15
|
||||
"""
|
||||
)
|
||||
with open("/tmp/iredisrc", "w+") as etc_config:
|
||||
etc_config.write(config_content)
|
||||
|
||||
cli = pexpect.spawn("iredis --iredisrc /tmp/iredisrc --dsn local", timeout=1)
|
||||
cli.logfile_read = open("cli_test.log", "ab")
|
||||
cli.expect(["iredis", "localhost:6379[15]>"])
|
||||
cli.close()
|
||||
|
||||
# overwrite with -n
|
||||
cli = pexpect.spawn("iredis --iredisrc /tmp/iredisrc --dsn local -n 3", timeout=1)
|
||||
cli.logfile_read = open("cli_test.log", "ab")
|
||||
cli.expect(["iredis", "localhost:6379[3]>"])
|
||||
cli.close()
|
||||
|
||||
# dsn not exists
|
||||
cli = pexpect.spawn("iredis --iredisrc /tmp/iredisrc --dsn ghost-dsn", timeout=1)
|
||||
cli.expect(["Could not find the specified DSN in the config file."])
|
||||
cli.close()
|
||||
assert cli.status == 1
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
not os.path.exists("/tmp/redis/redis.sock"), reason="unix socket is not found"
|
||||
)
|
||||
def test_using_dsn_unix():
|
||||
config_content = dedent(
|
||||
"""
|
||||
[alias_dsn]
|
||||
unix = unix:///tmp/redis/redis.sock?db=3
|
||||
"""
|
||||
)
|
||||
with open("/tmp/iredisrc", "w+") as etc_config:
|
||||
etc_config.write(config_content)
|
||||
|
||||
cli = pexpect.spawn("iredis --iredisrc /tmp/iredisrc --dsn unix", timeout=2)
|
||||
cli.logfile_read = open("cli_test.log", "ab")
|
||||
cli.expect(["iredis", "redis /tmp/redis/redis.sock[3]>"])
|
||||
|
||||
cli.close()
|
Loading…
Add table
Add a link
Reference in a new issue