summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
Commit message (Collapse)AuthorAgeFilesLines
* Added boolean parsing to PEXPIRE and PEXPIREAT (#1665)Anas2021-11-021-12/+12
|
* redisjson support (#1636)Chayim2021-10-251-5/+4
|
* Add FULL option to XINFO SUMMARY (#1638)Agustin Marquez2021-10-251-0/+12
|
* Enable floating parameters in SET (ex and px) (#1635)Avital Fine2021-10-211-0/+4
|
* Test BYLEX param in zrangestore (#1634)Avital Fine2021-10-211-5/+6
|
* geosearch test should use any=True (#1594)Andrew Chen Wang2021-10-201-2/+3
| | | Co-authored-by: Avital Fine <79420960+AvitalFineRedis@users.noreply.github.com>
* Add support to consumername in `xpending_range` (#1602)Avital Fine2021-10-191-0/+8
|
* Raising NotImplementedError for SCRIPT DEBUG and DEBUG SEGFAULT (#1624)Chayim2021-10-181-0/+20
|
* CLIENT REDIR command support (#1623)Chayim2021-10-181-0/+5
|
* REPLICAOF command implementation (#1622)Chayim2021-10-181-0/+8
|
* Add support to NX XX and CH to `GEOADD` (#1605)Avital Fine2021-10-181-27/+53
|
* add support to `ZRANGE` and `ZRANGESTORE` parameters (#1603)Avital Fine2021-10-181-7/+51
|
* Merge pull request #1606 from AvitalFineRedis/GEORADIUS_count_anyAvital Fine2021-10-141-0/+6
|\ | | | | Add support to ANY to GEOSEARCHSTORE and to GEOSEARCH
| * Add support to ANY to GEOSEARCHSTORE and to GEOSEARCHAvitalFineRedis2021-10-131-0/+6
| |
* | implement memory_malloc_statsAvitalFineRedis2021-10-141-0/+4
|/
* Removing the REDIS_6_VERSION placeholder (#1582)Chayim2021-10-111-16/+15
|
* Fix potential test case typo in test_zadd_gt_lt (#1585)Andrew Chen Wang2021-10-051-1/+1
|
* Implement/test LOLWUT command (#1568)Rajiv Bakulesh Shah2021-10-011-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement/test LOLWUT command https://redis.io/commands/lolwut This is a lot of fun to play with: ```python >>> from redis import Redis >>> redis = Redis() >>> print(redis.lolwut(5, 6, 7, 8).decode('utf-8')) ⣴⣶⣶⣶⣶⡆ ⣿⣿⣿⣿⣿⡇ ⠹⡿⠟⣿⡿⠃ ⠀⠀⠀⠀⠀⠀ Georg Nees - schotter, plotter on paper, 1968. Redis ver. 6.0.10 >>> print(redis.lolwut(5, 6, 7, 8).decode('utf-8')) ⢰⣶⣶⣶⣶⡆ ⢿⣿⣿⣿⣿⠁ ⠸⡿⢿⠿⡿⠃ ⠀⠀⠀⠀⠀⠀ Georg Nees - schotter, plotter on paper, 1968. Redis ver. 6.0.10 >>> print(redis.lolwut(5, 6, 7, 8).decode('utf-8')) ⢰⣶⣶⣶⣶⡆ ⣸⣿⣿⣻⣿⡅ ⠿⡿⠻⠿⠿⠁ ⠀⠀⠀⠀⠀⠀ Georg Nees - schotter, plotter on paper, 1968. Redis ver. 6.0.10 >>> ``` * Add link to LOLWUT command documentation Co-authored-by: Chayim <chayim@users.noreply.github.com> * Skip LOLWUT unit test for Redis < 5.0.0 The `LOLWUT` command was introduced in Redis 5.0.0: https://redis.io/commands/lolwut Co-authored-by: Chayim <chayim@users.noreply.github.com>
* CLIENT REPLY support, available since redis 3.2.0 (#1581)Chayim2021-09-301-0/+13
|
* IDLETIME and FREQ support for RESTORE (#1580)Chayim2021-09-301-0/+42
|
* Supporting args with MODULE LOAD (#1579)Chayim2021-09-301-0/+10
| | | Part of #1546
* CLIENT LIST fix to allow multiple client_ids (#1563)Chayim2021-09-011-3/+22
| | | | | | | | | * CLIENT LIST fix to allow multiple client_ids Support for CLIENT KILL with the USER filter Part of #1546 * test fix
* fixing timing issues in set pxat test (#1566)Chayim2021-09-011-2/+2
| | | closes #1561
* Adding DELUSER list of users support (#1562)Chayim2021-09-011-0/+17
| | | | | Adding support for ACL help Part of #1546
* Support for CLIENT TRACKINFO (#1560)Chayim2021-09-011-0/+6
| | | Part of #1546
* GEOSEARCH and GEOSEARCHSTORE (#1526)Avital Fine2021-09-011-81/+229
| | | | | | | | | | | | | * GEOSEARCH and GEOSEARCHSTORE * negative test * change georadius_generic to geosearch_generic * add documentations to the functions * add docstring to the parser * farest
* LPUSHX support for list, no API changes (#1559)Chayim2021-09-011-0/+9
| | | Part of #1546
* Adding support for GENPASS bits (#1558)Chayim2021-09-011-0/+8
| | | Part of #1546 commands.
* Support for QUIT (#1557)Chayim2021-09-011-0/+3
| | | Part of #1546
* bgsave schedule support (#1555)Chayim2021-09-011-0/+5
| | | | | bgsave tests Part of #1546
* Support for command count (#1554)Chayim2021-09-011-0/+6
| | | Part of #1546
* Adding EXAT and PXAT (unix time support) support for SET (#1547)Avital Fine2021-09-011-0/+12
| | | | | * set in unix time * update skip version
* xgroup_createconsumer (#1553)Avital Fine2021-08-301-0/+16
|
* Includes slowlog complexity info if available (#1489)Ian Bucad2021-08-291-0/+29
| | | | | | | | | | | | * Return slowlog complexity info if available based on https://github.com/andymccurdy/redis-py/pull/622 * Add tests Copied from https://github.com/andymccurdy/redis-py/pull/622 * address flake E306 * Trigger Build
* Stralgo (#1528)Avital Fine2021-08-291-0/+43
| | | | | | | | | | | | | | | | | * add support to STRALDO command * add tests * skip if version .. * new line * lower case * fix comments * callback * change to get
* #1434 Added support for ZMSCORE new in Redis 6.2 RC (#1437)Jiekun2021-08-291-0/+11
| | | | | | | | | | | | | | | * #1434 Added zmscore command support * #1434 Fixed typo and doc * #1434 Set [] as default value for members arg in zmscore func * #1434 Set None as default value for members arg in zmscore func * #1434 Removed default value for members arg in zmscore func * Fixed flake8 formatting Co-authored-by: jiekun.zhu <jiekun.zhu@shopee.com>
* Support MINID and LIMIT on XADD (#1548)Avital Fine2021-08-291-0/+50
| | | * MINID and LIMIT
* Zunion (#1522)Avital Fine2021-08-151-0/+20
| | | | | | | | | | | | | | | | | * zinter * change options in _zaggregate * skip for previous versions * add client function * validate the aggregate value * change options to get * add more aggregate tests * add weights guidance
* Adding support for CLIENT LIST with ID (#1505)Chayim2021-08-151-0/+8
|
* MINID and LIMIT support for xtrim (#1508)Chayim2021-08-151-0/+41
|
* implementing the LMOVE and BLMOVE commands (#1504)Chayim2021-08-151-0/+12
|
* Added GET argument to SET command (#1412)Jiekun2021-08-081-0/+8
|
* xautoclaim (#1529)Avital Fine2021-08-051-1/+47
|
* add idle to xpending (#1523)Avital Fine2021-08-051-0/+46
|
* Add a count parameter to lpop/rpop for redis >= 6.2.0 (#1487)Gal Ben David2021-08-051-0/+16
| | | Co-authored-by: Chayim <chayim@users.noreply.github.com>
* Updating base testing docker to redis 6.2.5 (#1536)Chayim2021-08-051-7/+1
|
* fix getex flaky testsAvital Fine2021-08-051-1/+1
|
* zinter (#1520)Avital Fine2021-08-011-0/+22
| | | | | | | | | | | | | | | | | | | * zinter * change options in _zaggregate * skip for previous versions * flake8 * validate the aggregate value * invalid aggregation * invalid aggregation * change options to get Co-authored-by: Chayim <chayim@users.noreply.github.com>
* zdiff and zdiffstore (#1518)Avital Fine2021-07-291-0/+15
|
* Zrangestore (#1521)Avital Fine2021-07-291-0/+10
|