2011-06-18 14:02:42 +00:00
|
|
|
#include "fmacros.h"
|
2010-05-18 18:12:03 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2010-05-25 12:00:41 +00:00
|
|
|
#include <strings.h>
|
2010-09-19 13:18:51 +00:00
|
|
|
#include <sys/time.h>
|
2010-10-18 12:39:43 +00:00
|
|
|
#include <assert.h>
|
2010-10-18 13:49:52 +00:00
|
|
|
#include <unistd.h>
|
2010-11-05 16:24:11 +00:00
|
|
|
#include <signal.h>
|
2011-01-07 12:04:42 +00:00
|
|
|
#include <errno.h>
|
2013-03-15 02:34:21 +00:00
|
|
|
#include <limits.h>
|
2010-05-18 18:12:03 +00:00
|
|
|
|
|
|
|
#include "hiredis.h"
|
2015-04-16 17:28:12 +00:00
|
|
|
#include "net.h"
|
2010-05-18 18:12:03 +00:00
|
|
|
|
2011-05-22 14:25:52 +00:00
|
|
|
enum connection_type {
|
|
|
|
CONN_TCP,
|
2014-02-24 10:41:00 +00:00
|
|
|
CONN_UNIX,
|
|
|
|
CONN_FD
|
2011-05-22 14:25:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct config {
|
|
|
|
enum connection_type type;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
const char *host;
|
|
|
|
int port;
|
2013-03-15 02:34:21 +00:00
|
|
|
struct timeval timeout;
|
2011-05-22 14:25:52 +00:00
|
|
|
} tcp;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
const char *path;
|
2015-08-22 04:58:40 +00:00
|
|
|
} unix_sock;
|
2011-05-22 14:25:52 +00:00
|
|
|
};
|
|
|
|
|
2010-09-20 11:44:24 +00:00
|
|
|
/* The following lines make up our testing "framework" :) */
|
2010-10-18 12:39:43 +00:00
|
|
|
static int tests = 0, fails = 0;
|
2010-09-20 11:44:24 +00:00
|
|
|
#define test(_s) { printf("#%02d ", ++tests); printf(_s); }
|
2011-07-10 15:36:07 +00:00
|
|
|
#define test_cond(_c) if(_c) printf("\033[0;32mPASSED\033[0;0m\n"); else {printf("\033[0;31mFAILED\033[0;0m\n"); fails++;}
|
2010-05-18 18:12:03 +00:00
|
|
|
|
2010-09-19 18:43:43 +00:00
|
|
|
static long long usec(void) {
|
2010-09-19 13:18:51 +00:00
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv,NULL);
|
|
|
|
return (((long long)tv.tv_sec)*1000000)+tv.tv_usec;
|
|
|
|
}
|
|
|
|
|
2015-02-18 19:42:27 +00:00
|
|
|
/* The assert() calls below have side effects, so we need assert()
|
|
|
|
* even if we are compiling without asserts (-DNDEBUG). */
|
|
|
|
#ifdef NDEBUG
|
|
|
|
#undef assert
|
|
|
|
#define assert(e) (void)(e)
|
|
|
|
#endif
|
|
|
|
|
2011-05-22 14:25:52 +00:00
|
|
|
static redisContext *select_database(redisContext *c) {
|
|
|
|
redisReply *reply;
|
|
|
|
|
|
|
|
/* Switch to DB 9 for testing, now that we know we can chat. */
|
|
|
|
reply = redisCommand(c,"SELECT 9");
|
|
|
|
assert(reply != NULL);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
/* Make sure the DB is emtpy */
|
|
|
|
reply = redisCommand(c,"DBSIZE");
|
|
|
|
assert(reply != NULL);
|
|
|
|
if (reply->type == REDIS_REPLY_INTEGER && reply->integer == 0) {
|
|
|
|
/* Awesome, DB 9 is empty and we can continue. */
|
|
|
|
freeReplyObject(reply);
|
|
|
|
} else {
|
|
|
|
printf("Database #9 is not empty, test can not continue\n");
|
2010-09-19 17:01:31 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2011-05-22 14:25:52 +00:00
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2014-02-24 10:41:00 +00:00
|
|
|
static int disconnect(redisContext *c, int keep_fd) {
|
2011-05-22 14:25:52 +00:00
|
|
|
redisReply *reply;
|
|
|
|
|
|
|
|
/* Make sure we're on DB 9. */
|
|
|
|
reply = redisCommand(c,"SELECT 9");
|
|
|
|
assert(reply != NULL);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
reply = redisCommand(c,"FLUSHDB");
|
|
|
|
assert(reply != NULL);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
2014-02-24 10:41:00 +00:00
|
|
|
/* Free the context as well, but keep the fd if requested. */
|
|
|
|
if (keep_fd)
|
|
|
|
return redisFreeKeepFd(c);
|
2011-05-22 14:25:52 +00:00
|
|
|
redisFree(c);
|
2014-02-24 10:41:00 +00:00
|
|
|
return -1;
|
2011-05-22 14:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static redisContext *connect(struct config config) {
|
2011-06-18 10:29:49 +00:00
|
|
|
redisContext *c = NULL;
|
2011-05-22 14:25:52 +00:00
|
|
|
|
|
|
|
if (config.type == CONN_TCP) {
|
|
|
|
c = redisConnect(config.tcp.host, config.tcp.port);
|
|
|
|
} else if (config.type == CONN_UNIX) {
|
2015-08-22 04:58:40 +00:00
|
|
|
c = redisConnectUnix(config.unix_sock.path);
|
2014-02-24 10:41:00 +00:00
|
|
|
} else if (config.type == CONN_FD) {
|
|
|
|
/* Create a dummy connection just to get an fd to inherit */
|
2015-08-22 04:58:40 +00:00
|
|
|
redisContext *dummy_ctx = redisConnectUnix(config.unix_sock.path);
|
2014-02-24 10:41:00 +00:00
|
|
|
if (dummy_ctx) {
|
|
|
|
int fd = disconnect(dummy_ctx, 1);
|
|
|
|
printf("Connecting to inherited fd %d\n", fd);
|
|
|
|
c = redisConnectFd(fd);
|
|
|
|
}
|
2011-05-22 14:25:52 +00:00
|
|
|
} else {
|
|
|
|
assert(NULL);
|
|
|
|
}
|
|
|
|
|
2013-01-22 09:16:30 +00:00
|
|
|
if (c == NULL) {
|
|
|
|
printf("Connection error: can't allocate redis context\n");
|
|
|
|
exit(1);
|
|
|
|
} else if (c->err) {
|
2011-05-22 14:25:52 +00:00
|
|
|
printf("Connection error: %s\n", c->errstr);
|
2015-01-22 20:23:41 +00:00
|
|
|
redisFree(c);
|
2011-05-22 14:25:52 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return select_database(c);
|
2010-09-19 17:01:31 +00:00
|
|
|
}
|
|
|
|
|
2011-01-27 11:50:55 +00:00
|
|
|
static void test_format_commands(void) {
|
2010-10-31 09:32:31 +00:00
|
|
|
char *cmd;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
test("Format command without interpolation: ");
|
|
|
|
len = redisFormatCommand(&cmd,"SET foo bar");
|
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$3\r\nbar\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(3+2));
|
|
|
|
free(cmd);
|
|
|
|
|
|
|
|
test("Format command with %%s string interpolation: ");
|
|
|
|
len = redisFormatCommand(&cmd,"SET %s %s","foo","bar");
|
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$3\r\nbar\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(3+2));
|
|
|
|
free(cmd);
|
|
|
|
|
2010-11-22 08:55:54 +00:00
|
|
|
test("Format command with %%s and an empty string: ");
|
|
|
|
len = redisFormatCommand(&cmd,"SET %s %s","foo","");
|
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$0\r\n\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(0+2));
|
|
|
|
free(cmd);
|
|
|
|
|
2011-03-06 10:38:07 +00:00
|
|
|
test("Format command with an empty string in between proper interpolations: ");
|
|
|
|
len = redisFormatCommand(&cmd,"SET %s %s","","foo");
|
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$0\r\n\r\n$3\r\nfoo\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(0+2)+4+(3+2));
|
|
|
|
free(cmd);
|
|
|
|
|
2010-10-31 09:32:31 +00:00
|
|
|
test("Format command with %%b string interpolation: ");
|
2013-07-11 06:05:39 +00:00
|
|
|
len = redisFormatCommand(&cmd,"SET %b %b","foo",(size_t)3,"b\0r",(size_t)3);
|
2010-10-31 09:32:31 +00:00
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$3\r\nb\0r\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(3+2));
|
|
|
|
free(cmd);
|
|
|
|
|
2010-11-22 08:55:54 +00:00
|
|
|
test("Format command with %%b and an empty string: ");
|
2013-07-11 06:05:39 +00:00
|
|
|
len = redisFormatCommand(&cmd,"SET %b %b","foo",(size_t)3,"",(size_t)0);
|
2010-11-22 08:55:54 +00:00
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$0\r\n\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(0+2));
|
|
|
|
free(cmd);
|
|
|
|
|
2010-11-22 09:00:45 +00:00
|
|
|
test("Format command with literal %%: ");
|
|
|
|
len = redisFormatCommand(&cmd,"SET %% %%");
|
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$1\r\n%\r\n$1\r\n%\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(1+2)+4+(1+2));
|
|
|
|
free(cmd);
|
|
|
|
|
2011-07-10 15:22:36 +00:00
|
|
|
/* Vararg width depends on the type. These tests make sure that the
|
|
|
|
* width is correctly determined using the format and subsequent varargs
|
|
|
|
* can correctly be interpolated. */
|
|
|
|
#define INTEGER_WIDTH_TEST(fmt, type) do { \
|
|
|
|
type value = 123; \
|
|
|
|
test("Format command with printf-delegation (" #type "): "); \
|
|
|
|
len = redisFormatCommand(&cmd,"key:%08" fmt " str:%s", value, "hello"); \
|
|
|
|
test_cond(strncmp(cmd,"*2\r\n$12\r\nkey:00000123\r\n$9\r\nstr:hello\r\n",len) == 0 && \
|
|
|
|
len == 4+5+(12+2)+4+(9+2)); \
|
|
|
|
free(cmd); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define FLOAT_WIDTH_TEST(type) do { \
|
|
|
|
type value = 123.0; \
|
|
|
|
test("Format command with printf-delegation (" #type "): "); \
|
|
|
|
len = redisFormatCommand(&cmd,"key:%08.3f str:%s", value, "hello"); \
|
|
|
|
test_cond(strncmp(cmd,"*2\r\n$12\r\nkey:0123.000\r\n$9\r\nstr:hello\r\n",len) == 0 && \
|
|
|
|
len == 4+5+(12+2)+4+(9+2)); \
|
|
|
|
free(cmd); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
INTEGER_WIDTH_TEST("d", int);
|
|
|
|
INTEGER_WIDTH_TEST("hhd", char);
|
|
|
|
INTEGER_WIDTH_TEST("hd", short);
|
|
|
|
INTEGER_WIDTH_TEST("ld", long);
|
|
|
|
INTEGER_WIDTH_TEST("lld", long long);
|
|
|
|
INTEGER_WIDTH_TEST("u", unsigned int);
|
|
|
|
INTEGER_WIDTH_TEST("hhu", unsigned char);
|
|
|
|
INTEGER_WIDTH_TEST("hu", unsigned short);
|
|
|
|
INTEGER_WIDTH_TEST("lu", unsigned long);
|
|
|
|
INTEGER_WIDTH_TEST("llu", unsigned long long);
|
|
|
|
FLOAT_WIDTH_TEST(float);
|
|
|
|
FLOAT_WIDTH_TEST(double);
|
2010-12-02 15:18:30 +00:00
|
|
|
|
2011-07-09 13:05:53 +00:00
|
|
|
test("Format command with invalid printf format: ");
|
2013-07-11 06:05:39 +00:00
|
|
|
len = redisFormatCommand(&cmd,"key:%08p %b",(void*)1234,"foo",(size_t)3);
|
2011-07-09 13:05:53 +00:00
|
|
|
test_cond(len == -1);
|
2010-12-02 15:18:30 +00:00
|
|
|
|
2010-10-31 09:32:31 +00:00
|
|
|
const char *argv[3];
|
|
|
|
argv[0] = "SET";
|
2010-11-22 09:06:43 +00:00
|
|
|
argv[1] = "foo\0xxx";
|
2010-10-31 09:32:31 +00:00
|
|
|
argv[2] = "bar";
|
2010-11-22 09:06:43 +00:00
|
|
|
size_t lens[3] = { 3, 7, 3 };
|
2010-10-31 09:32:31 +00:00
|
|
|
int argc = 3;
|
|
|
|
|
|
|
|
test("Format command by passing argc/argv without lengths: ");
|
|
|
|
len = redisFormatCommandArgv(&cmd,argc,argv,NULL);
|
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$3\r\nbar\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(3+2));
|
|
|
|
free(cmd);
|
|
|
|
|
|
|
|
test("Format command by passing argc/argv with lengths: ");
|
|
|
|
len = redisFormatCommandArgv(&cmd,argc,argv,lens);
|
2010-11-22 09:06:43 +00:00
|
|
|
test_cond(strncmp(cmd,"*3\r\n$3\r\nSET\r\n$7\r\nfoo\0xxx\r\n$3\r\nbar\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(7+2)+4+(3+2));
|
2010-10-31 09:32:31 +00:00
|
|
|
free(cmd);
|
2016-05-14 09:26:18 +00:00
|
|
|
|
|
|
|
sds sds_cmd;
|
|
|
|
|
|
|
|
sds_cmd = sdsempty();
|
|
|
|
test("Format command into sds by passing argc/argv without lengths: ");
|
|
|
|
len = redisFormatSdsCommandArgv(&sds_cmd,argc,argv,NULL);
|
|
|
|
test_cond(strncmp(sds_cmd,"*3\r\n$3\r\nSET\r\n$3\r\nfoo\r\n$3\r\nbar\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(3+2)+4+(3+2));
|
|
|
|
sdsfree(sds_cmd);
|
|
|
|
|
|
|
|
sds_cmd = sdsempty();
|
|
|
|
test("Format command into sds by passing argc/argv with lengths: ");
|
|
|
|
len = redisFormatSdsCommandArgv(&sds_cmd,argc,argv,lens);
|
|
|
|
test_cond(strncmp(sds_cmd,"*3\r\n$3\r\nSET\r\n$7\r\nfoo\0xxx\r\n$3\r\nbar\r\n",len) == 0 &&
|
|
|
|
len == 4+4+(3+2)+4+(7+2)+4+(3+2));
|
|
|
|
sdsfree(sds_cmd);
|
2010-10-31 09:32:31 +00:00
|
|
|
}
|
|
|
|
|
2013-11-14 00:59:35 +00:00
|
|
|
static void test_append_formatted_commands(struct config config) {
|
|
|
|
redisContext *c;
|
|
|
|
redisReply *reply;
|
|
|
|
char *cmd;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
c = connect(config);
|
|
|
|
|
|
|
|
test("Append format command: ");
|
|
|
|
|
|
|
|
len = redisFormatCommand(&cmd, "SET foo bar");
|
|
|
|
|
|
|
|
test_cond(redisAppendFormattedCommand(c, cmd, len) == REDIS_OK);
|
|
|
|
|
|
|
|
assert(redisGetReply(c, (void*)&reply) == REDIS_OK);
|
|
|
|
|
|
|
|
free(cmd);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
disconnect(c, 0);
|
|
|
|
}
|
|
|
|
|
2011-01-27 11:50:55 +00:00
|
|
|
static void test_reply_reader(void) {
|
2011-04-21 13:01:58 +00:00
|
|
|
redisReader *reader;
|
2010-11-04 09:54:01 +00:00
|
|
|
void *reply;
|
2010-10-18 12:39:43 +00:00
|
|
|
int ret;
|
2012-08-28 06:47:38 +00:00
|
|
|
int i;
|
2010-09-19 16:47:05 +00:00
|
|
|
|
2010-09-20 12:05:23 +00:00
|
|
|
test("Error handling in reply parser: ");
|
2011-04-21 14:03:54 +00:00
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader,(char*)"@foo\r\n",6);
|
|
|
|
ret = redisReaderGetReply(reader,NULL);
|
2010-09-25 13:09:13 +00:00
|
|
|
test_cond(ret == REDIS_ERR &&
|
2011-04-21 14:03:54 +00:00
|
|
|
strcasecmp(reader->errstr,"Protocol error, got \"@\" as reply type byte") == 0);
|
|
|
|
redisReaderFree(reader);
|
2010-09-20 12:05:23 +00:00
|
|
|
|
|
|
|
/* when the reply already contains multiple items, they must be free'd
|
|
|
|
* on an error. valgrind will bark when this doesn't happen. */
|
|
|
|
test("Memory cleanup in reply parser: ");
|
2011-04-21 14:03:54 +00:00
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader,(char*)"*2\r\n",4);
|
|
|
|
redisReaderFeed(reader,(char*)"$5\r\nhello\r\n",11);
|
|
|
|
redisReaderFeed(reader,(char*)"@foo\r\n",6);
|
|
|
|
ret = redisReaderGetReply(reader,NULL);
|
2010-09-25 13:09:13 +00:00
|
|
|
test_cond(ret == REDIS_ERR &&
|
2011-04-21 14:03:54 +00:00
|
|
|
strcasecmp(reader->errstr,"Protocol error, got \"@\" as reply type byte") == 0);
|
|
|
|
redisReaderFree(reader);
|
2010-11-04 09:54:01 +00:00
|
|
|
|
2012-08-28 06:47:38 +00:00
|
|
|
test("Set error on nested multi bulks with depth > 7: ");
|
2011-04-21 14:03:54 +00:00
|
|
|
reader = redisReaderCreate();
|
2012-08-28 06:47:38 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 9; i++) {
|
|
|
|
redisReaderFeed(reader,(char*)"*1\r\n",4);
|
|
|
|
}
|
|
|
|
|
2011-04-21 14:03:54 +00:00
|
|
|
ret = redisReaderGetReply(reader,NULL);
|
2010-11-24 14:46:05 +00:00
|
|
|
test_cond(ret == REDIS_ERR &&
|
2011-04-21 14:03:54 +00:00
|
|
|
strncasecmp(reader->errstr,"No support for",14) == 0);
|
|
|
|
redisReaderFree(reader);
|
2010-11-24 14:46:05 +00:00
|
|
|
|
2018-05-17 23:29:31 +00:00
|
|
|
test("Correctly parses LLONG_MAX: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, ":9223372036854775807\r\n",22);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_OK &&
|
|
|
|
((redisReply*)reply)->type == REDIS_REPLY_INTEGER &&
|
|
|
|
((redisReply*)reply)->integer == LLONG_MAX);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
|
|
|
test("Set error when > LLONG_MAX: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, ":9223372036854775808\r\n",22);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_ERR &&
|
|
|
|
strcasecmp(reader->errstr,"Bad integer value") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
|
|
|
test("Correctly parses LLONG_MIN: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, ":-9223372036854775808\r\n",23);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_OK &&
|
|
|
|
((redisReply*)reply)->type == REDIS_REPLY_INTEGER &&
|
|
|
|
((redisReply*)reply)->integer == LLONG_MIN);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
|
|
|
test("Set error when < LLONG_MIN: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, ":-9223372036854775809\r\n",23);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_ERR &&
|
|
|
|
strcasecmp(reader->errstr,"Bad integer value") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
2018-05-18 01:17:13 +00:00
|
|
|
test("Set error when array < -1: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, "*-2\r\n+asdf\r\n",12);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_ERR &&
|
|
|
|
strcasecmp(reader->errstr,"Multi-bulk length out of range") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
|
|
|
test("Set error when bulk < -1: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, "$-2\r\nasdf\r\n",11);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_ERR &&
|
|
|
|
strcasecmp(reader->errstr,"Bulk string length out of range") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
2018-05-18 01:19:12 +00:00
|
|
|
#if LLONG_MAX > SIZE_MAX
|
|
|
|
test("Set error when array > SIZE_MAX: ");
|
2018-05-18 01:17:13 +00:00
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, "*9223372036854775807\r\n+asdf\r\n",29);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_ERR &&
|
|
|
|
strcasecmp(reader->errstr,"Multi-bulk length out of range") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
|
|
|
|
test("Set error when bulk > SIZE_MAX: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader, "$9223372036854775807\r\nasdf\r\n",28);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_ERR &&
|
|
|
|
strcasecmp(reader->errstr,"Bulk string length out of range") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
|
|
|
#endif
|
|
|
|
|
2010-11-04 09:54:01 +00:00
|
|
|
test("Works with NULL functions for reply: ");
|
2011-04-21 14:03:54 +00:00
|
|
|
reader = redisReaderCreate();
|
2011-04-21 13:01:58 +00:00
|
|
|
reader->fn = NULL;
|
2011-04-21 14:03:54 +00:00
|
|
|
redisReaderFeed(reader,(char*)"+OK\r\n",5);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
2010-11-04 09:54:01 +00:00
|
|
|
test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS);
|
2011-04-21 14:03:54 +00:00
|
|
|
redisReaderFree(reader);
|
2010-11-04 22:52:47 +00:00
|
|
|
|
|
|
|
test("Works when a single newline (\\r\\n) covers two calls to feed: ");
|
2011-04-21 14:03:54 +00:00
|
|
|
reader = redisReaderCreate();
|
2011-04-21 13:01:58 +00:00
|
|
|
reader->fn = NULL;
|
2011-04-21 14:03:54 +00:00
|
|
|
redisReaderFeed(reader,(char*)"+OK\r",4);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
2010-11-04 22:52:47 +00:00
|
|
|
assert(ret == REDIS_OK && reply == NULL);
|
2011-04-21 14:03:54 +00:00
|
|
|
redisReaderFeed(reader,(char*)"\n",1);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
2010-11-04 22:52:47 +00:00
|
|
|
test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS);
|
2011-04-21 14:03:54 +00:00
|
|
|
redisReaderFree(reader);
|
2011-01-27 13:39:34 +00:00
|
|
|
|
2011-04-21 08:54:54 +00:00
|
|
|
test("Don't reset state after protocol error: ");
|
2011-04-21 14:03:54 +00:00
|
|
|
reader = redisReaderCreate();
|
2011-04-21 13:01:58 +00:00
|
|
|
reader->fn = NULL;
|
2011-04-21 14:03:54 +00:00
|
|
|
redisReaderFeed(reader,(char*)"x",1);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
2011-01-27 13:39:34 +00:00
|
|
|
assert(ret == REDIS_ERR);
|
2011-04-21 14:03:54 +00:00
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
2011-04-21 08:54:54 +00:00
|
|
|
test_cond(ret == REDIS_ERR && reply == NULL);
|
2011-06-09 07:23:54 +00:00
|
|
|
redisReaderFree(reader);
|
|
|
|
|
|
|
|
/* Regression test for issue #45 on GitHub. */
|
|
|
|
test("Don't do empty allocation for empty multi bulk: ");
|
|
|
|
reader = redisReaderCreate();
|
|
|
|
redisReaderFeed(reader,(char*)"*0\r\n",4);
|
|
|
|
ret = redisReaderGetReply(reader,&reply);
|
|
|
|
test_cond(ret == REDIS_OK &&
|
|
|
|
((redisReply*)reply)->type == REDIS_REPLY_ARRAY &&
|
|
|
|
((redisReply*)reply)->elements == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
redisReaderFree(reader);
|
2010-10-18 12:39:43 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 15:10:03 +00:00
|
|
|
static void test_free_null(void) {
|
2016-04-17 20:33:59 +00:00
|
|
|
void *redisCtx = NULL;
|
2014-05-29 15:10:03 +00:00
|
|
|
void *reply = NULL;
|
|
|
|
|
|
|
|
test("Don't fail when redisFree is passed a NULL value: ");
|
2016-04-17 20:33:59 +00:00
|
|
|
redisFree(redisCtx);
|
|
|
|
test_cond(redisCtx == NULL);
|
2014-05-29 15:10:03 +00:00
|
|
|
|
|
|
|
test("Don't fail when freeReplyObject is passed a NULL value: ");
|
|
|
|
freeReplyObject(reply);
|
|
|
|
test_cond(reply == NULL);
|
|
|
|
}
|
|
|
|
|
2011-05-22 14:25:52 +00:00
|
|
|
static void test_blocking_connection_errors(void) {
|
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
test("Returns error when host cannot be resolved: ");
|
2015-01-08 22:28:55 +00:00
|
|
|
c = redisConnect((char*)"idontexist.test", 6379);
|
2011-05-22 14:25:52 +00:00
|
|
|
test_cond(c->err == REDIS_ERR_OTHER &&
|
2011-12-20 18:05:57 +00:00
|
|
|
(strcmp(c->errstr,"Name or service not known") == 0 ||
|
2015-01-08 22:28:55 +00:00
|
|
|
strcmp(c->errstr,"Can't resolve: idontexist.test") == 0 ||
|
2013-07-11 04:58:10 +00:00
|
|
|
strcmp(c->errstr,"nodename nor servname provided, or not known") == 0 ||
|
2013-07-29 16:35:48 +00:00
|
|
|
strcmp(c->errstr,"No address associated with hostname") == 0 ||
|
2015-01-08 22:26:22 +00:00
|
|
|
strcmp(c->errstr,"Temporary failure in name resolution") == 0 ||
|
2015-09-16 10:10:29 +00:00
|
|
|
strcmp(c->errstr,"hostname nor servname provided, or not known") == 0 ||
|
2013-07-11 04:58:10 +00:00
|
|
|
strcmp(c->errstr,"no address associated with name") == 0));
|
2011-05-22 14:25:52 +00:00
|
|
|
redisFree(c);
|
|
|
|
|
|
|
|
test("Returns error when the port is not open: ");
|
|
|
|
c = redisConnect((char*)"localhost", 1);
|
|
|
|
test_cond(c->err == REDIS_ERR_IO &&
|
|
|
|
strcmp(c->errstr,"Connection refused") == 0);
|
|
|
|
redisFree(c);
|
|
|
|
|
2015-08-22 04:58:40 +00:00
|
|
|
test("Returns error when the unix_sock socket path doesn't accept connections: ");
|
2011-05-22 14:25:52 +00:00
|
|
|
c = redisConnectUnix((char*)"/tmp/idontexist.sock");
|
|
|
|
test_cond(c->err == REDIS_ERR_IO); /* Don't care about the message... */
|
|
|
|
redisFree(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_blocking_connection(struct config config) {
|
|
|
|
redisContext *c;
|
|
|
|
redisReply *reply;
|
|
|
|
|
|
|
|
c = connect(config);
|
|
|
|
|
|
|
|
test("Is able to deliver commands: ");
|
|
|
|
reply = redisCommand(c,"PING");
|
|
|
|
test_cond(reply->type == REDIS_REPLY_STATUS &&
|
|
|
|
strcasecmp(reply->str,"pong") == 0)
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("Is a able to send commands verbatim: ");
|
|
|
|
reply = redisCommand(c,"SET foo bar");
|
|
|
|
test_cond (reply->type == REDIS_REPLY_STATUS &&
|
|
|
|
strcasecmp(reply->str,"ok") == 0)
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("%%s String interpolation works: ");
|
|
|
|
reply = redisCommand(c,"SET %s %s","foo","hello world");
|
|
|
|
freeReplyObject(reply);
|
|
|
|
reply = redisCommand(c,"GET foo");
|
|
|
|
test_cond(reply->type == REDIS_REPLY_STRING &&
|
|
|
|
strcmp(reply->str,"hello world") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("%%b String interpolation works: ");
|
2013-07-11 06:05:39 +00:00
|
|
|
reply = redisCommand(c,"SET %b %b","foo",(size_t)3,"hello\x00world",(size_t)11);
|
2011-05-22 14:25:52 +00:00
|
|
|
freeReplyObject(reply);
|
|
|
|
reply = redisCommand(c,"GET foo");
|
|
|
|
test_cond(reply->type == REDIS_REPLY_STRING &&
|
|
|
|
memcmp(reply->str,"hello\x00world",11) == 0)
|
|
|
|
|
|
|
|
test("Binary reply length is correct: ");
|
|
|
|
test_cond(reply->len == 11)
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("Can parse nil replies: ");
|
|
|
|
reply = redisCommand(c,"GET nokey");
|
|
|
|
test_cond(reply->type == REDIS_REPLY_NIL)
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
/* test 7 */
|
|
|
|
test("Can parse integer replies: ");
|
|
|
|
reply = redisCommand(c,"INCR mycounter");
|
|
|
|
test_cond(reply->type == REDIS_REPLY_INTEGER && reply->integer == 1)
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("Can parse multi bulk replies: ");
|
|
|
|
freeReplyObject(redisCommand(c,"LPUSH mylist foo"));
|
|
|
|
freeReplyObject(redisCommand(c,"LPUSH mylist bar"));
|
|
|
|
reply = redisCommand(c,"LRANGE mylist 0 -1");
|
|
|
|
test_cond(reply->type == REDIS_REPLY_ARRAY &&
|
|
|
|
reply->elements == 2 &&
|
|
|
|
!memcmp(reply->element[0]->str,"bar",3) &&
|
|
|
|
!memcmp(reply->element[1]->str,"foo",3))
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
/* m/e with multi bulk reply *before* other reply.
|
|
|
|
* specifically test ordering of reply items to parse. */
|
|
|
|
test("Can handle nested multi bulk replies: ");
|
|
|
|
freeReplyObject(redisCommand(c,"MULTI"));
|
|
|
|
freeReplyObject(redisCommand(c,"LRANGE mylist 0 -1"));
|
|
|
|
freeReplyObject(redisCommand(c,"PING"));
|
|
|
|
reply = (redisCommand(c,"EXEC"));
|
|
|
|
test_cond(reply->type == REDIS_REPLY_ARRAY &&
|
|
|
|
reply->elements == 2 &&
|
|
|
|
reply->element[0]->type == REDIS_REPLY_ARRAY &&
|
|
|
|
reply->element[0]->elements == 2 &&
|
|
|
|
!memcmp(reply->element[0]->element[0]->str,"bar",3) &&
|
|
|
|
!memcmp(reply->element[0]->element[1]->str,"foo",3) &&
|
|
|
|
reply->element[1]->type == REDIS_REPLY_STATUS &&
|
|
|
|
strcasecmp(reply->element[1]->str,"pong") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
2014-02-24 10:41:00 +00:00
|
|
|
disconnect(c, 0);
|
2011-05-22 14:25:52 +00:00
|
|
|
}
|
|
|
|
|
2015-04-16 17:28:12 +00:00
|
|
|
static void test_blocking_connection_timeouts(struct config config) {
|
|
|
|
redisContext *c;
|
|
|
|
redisReply *reply;
|
|
|
|
ssize_t s;
|
|
|
|
const char *cmd = "DEBUG SLEEP 3\r\n";
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
c = connect(config);
|
|
|
|
test("Successfully completes a command when the timeout is not exceeded: ");
|
|
|
|
reply = redisCommand(c,"SET foo fast");
|
|
|
|
freeReplyObject(reply);
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 10000;
|
|
|
|
redisSetTimeout(c, tv);
|
|
|
|
reply = redisCommand(c, "GET foo");
|
|
|
|
test_cond(reply != NULL && reply->type == REDIS_REPLY_STRING && memcmp(reply->str, "fast", 4) == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
disconnect(c, 0);
|
|
|
|
|
|
|
|
c = connect(config);
|
|
|
|
test("Does not return a reply when the command times out: ");
|
|
|
|
s = write(c->fd, cmd, strlen(cmd));
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 10000;
|
|
|
|
redisSetTimeout(c, tv);
|
|
|
|
reply = redisCommand(c, "GET foo");
|
|
|
|
test_cond(s > 0 && reply == NULL && c->err == REDIS_ERR_IO && strcmp(c->errstr, "Resource temporarily unavailable") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("Reconnect properly reconnects after a timeout: ");
|
|
|
|
redisReconnect(c);
|
|
|
|
reply = redisCommand(c, "PING");
|
|
|
|
test_cond(reply != NULL && reply->type == REDIS_REPLY_STATUS && strcmp(reply->str, "PONG") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
test("Reconnect properly uses owned parameters: ");
|
|
|
|
config.tcp.host = "foo";
|
2015-08-22 04:58:40 +00:00
|
|
|
config.unix_sock.path = "foo";
|
2015-04-16 17:28:12 +00:00
|
|
|
redisReconnect(c);
|
|
|
|
reply = redisCommand(c, "PING");
|
|
|
|
test_cond(reply != NULL && reply->type == REDIS_REPLY_STATUS && strcmp(reply->str, "PONG") == 0);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
|
|
|
|
disconnect(c, 0);
|
|
|
|
}
|
|
|
|
|
2011-05-22 14:25:52 +00:00
|
|
|
static void test_blocking_io_errors(struct config config) {
|
|
|
|
redisContext *c;
|
|
|
|
redisReply *reply;
|
2011-06-18 10:29:49 +00:00
|
|
|
void *_reply;
|
2011-05-22 14:25:52 +00:00
|
|
|
int major, minor;
|
|
|
|
|
|
|
|
/* Connect to target given by config. */
|
|
|
|
c = connect(config);
|
|
|
|
{
|
|
|
|
/* Find out Redis version to determine the path for the next test */
|
|
|
|
const char *field = "redis_version:";
|
|
|
|
char *p, *eptr;
|
|
|
|
|
|
|
|
reply = redisCommand(c,"INFO");
|
|
|
|
p = strstr(reply->str,field);
|
|
|
|
major = strtol(p+strlen(field),&eptr,10);
|
|
|
|
p = eptr+1; /* char next to the first "." */
|
|
|
|
minor = strtol(p,&eptr,10);
|
|
|
|
freeReplyObject(reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
test("Returns I/O error when the connection is lost: ");
|
|
|
|
reply = redisCommand(c,"QUIT");
|
2015-04-16 15:58:53 +00:00
|
|
|
if (major > 2 || (major == 2 && minor > 0)) {
|
2011-05-22 14:25:52 +00:00
|
|
|
/* > 2.0 returns OK on QUIT and read() should be issued once more
|
|
|
|
* to know the descriptor is at EOF. */
|
|
|
|
test_cond(strcasecmp(reply->str,"OK") == 0 &&
|
2011-06-18 10:29:49 +00:00
|
|
|
redisGetReply(c,&_reply) == REDIS_ERR);
|
2011-05-22 14:25:52 +00:00
|
|
|
freeReplyObject(reply);
|
|
|
|
} else {
|
|
|
|
test_cond(reply == NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* On 2.0, QUIT will cause the connection to be closed immediately and
|
|
|
|
* the read(2) for the reply on QUIT will set the error to EOF.
|
|
|
|
* On >2.0, QUIT will return with OK and another read(2) needed to be
|
|
|
|
* issued to find out the socket was closed by the server. In both
|
|
|
|
* conditions, the error will be set to EOF. */
|
|
|
|
assert(c->err == REDIS_ERR_EOF &&
|
|
|
|
strcmp(c->errstr,"Server closed the connection") == 0);
|
|
|
|
redisFree(c);
|
|
|
|
|
|
|
|
c = connect(config);
|
|
|
|
test("Returns I/O error on socket timeout: ");
|
|
|
|
struct timeval tv = { 0, 1000 };
|
|
|
|
assert(redisSetTimeout(c,tv) == REDIS_OK);
|
2011-06-18 10:29:49 +00:00
|
|
|
test_cond(redisGetReply(c,&_reply) == REDIS_ERR &&
|
2011-05-22 14:25:52 +00:00
|
|
|
c->err == REDIS_ERR_IO && errno == EAGAIN);
|
|
|
|
redisFree(c);
|
|
|
|
}
|
|
|
|
|
2013-03-15 02:34:21 +00:00
|
|
|
static void test_invalid_timeout_errors(struct config config) {
|
|
|
|
redisContext *c;
|
|
|
|
|
|
|
|
test("Set error when an invalid timeout usec value is given to redisConnectWithTimeout: ");
|
|
|
|
|
|
|
|
config.tcp.timeout.tv_sec = 0;
|
|
|
|
config.tcp.timeout.tv_usec = 10000001;
|
|
|
|
|
|
|
|
c = redisConnectWithTimeout(config.tcp.host, config.tcp.port, config.tcp.timeout);
|
|
|
|
|
2015-11-18 08:36:29 +00:00
|
|
|
test_cond(c->err == REDIS_ERR_IO && strcmp(c->errstr, "Invalid timeout specified") == 0);
|
2015-01-22 20:23:41 +00:00
|
|
|
redisFree(c);
|
2013-03-15 02:34:21 +00:00
|
|
|
|
|
|
|
test("Set error when an invalid timeout sec value is given to redisConnectWithTimeout: ");
|
|
|
|
|
|
|
|
config.tcp.timeout.tv_sec = (((LONG_MAX) - 999) / 1000) + 1;
|
|
|
|
config.tcp.timeout.tv_usec = 0;
|
|
|
|
|
|
|
|
c = redisConnectWithTimeout(config.tcp.host, config.tcp.port, config.tcp.timeout);
|
|
|
|
|
2015-11-18 08:36:29 +00:00
|
|
|
test_cond(c->err == REDIS_ERR_IO && strcmp(c->errstr, "Invalid timeout specified") == 0);
|
2013-03-15 02:34:21 +00:00
|
|
|
redisFree(c);
|
|
|
|
}
|
|
|
|
|
2011-05-22 14:25:52 +00:00
|
|
|
static void test_throughput(struct config config) {
|
|
|
|
redisContext *c = connect(config);
|
|
|
|
redisReply **replies;
|
2011-04-19 21:03:29 +00:00
|
|
|
int i, num;
|
2010-10-18 12:39:43 +00:00
|
|
|
long long t1, t2;
|
2010-09-20 12:05:23 +00:00
|
|
|
|
2010-09-20 11:44:24 +00:00
|
|
|
test("Throughput:\n");
|
2010-09-19 13:18:51 +00:00
|
|
|
for (i = 0; i < 500; i++)
|
2010-09-24 16:48:07 +00:00
|
|
|
freeReplyObject(redisCommand(c,"LPUSH mylist foo"));
|
2010-09-19 13:18:51 +00:00
|
|
|
|
2011-04-19 21:03:29 +00:00
|
|
|
num = 1000;
|
|
|
|
replies = malloc(sizeof(redisReply*)*num);
|
2010-09-19 13:18:51 +00:00
|
|
|
t1 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) {
|
2010-11-03 10:43:01 +00:00
|
|
|
replies[i] = redisCommand(c,"PING");
|
|
|
|
assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_STATUS);
|
|
|
|
}
|
2010-09-19 13:18:51 +00:00
|
|
|
t2 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) freeReplyObject(replies[i]);
|
2010-09-25 13:33:46 +00:00
|
|
|
free(replies);
|
2011-04-19 21:03:29 +00:00
|
|
|
printf("\t(%dx PING: %.3fs)\n", num, (t2-t1)/1000000.0);
|
2010-09-19 13:18:51 +00:00
|
|
|
|
2011-04-19 21:03:29 +00:00
|
|
|
replies = malloc(sizeof(redisReply*)*num);
|
2010-09-19 13:18:51 +00:00
|
|
|
t1 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) {
|
2010-11-03 10:43:01 +00:00
|
|
|
replies[i] = redisCommand(c,"LRANGE mylist 0 499");
|
|
|
|
assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_ARRAY);
|
|
|
|
assert(replies[i] != NULL && replies[i]->elements == 500);
|
|
|
|
}
|
2010-09-19 13:18:51 +00:00
|
|
|
t2 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) freeReplyObject(replies[i]);
|
2010-09-25 13:33:46 +00:00
|
|
|
free(replies);
|
2011-04-19 21:03:29 +00:00
|
|
|
printf("\t(%dx LRANGE with 500 elements: %.3fs)\n", num, (t2-t1)/1000000.0);
|
2011-03-31 10:41:46 +00:00
|
|
|
|
2018-05-20 18:57:21 +00:00
|
|
|
replies = malloc(sizeof(redisReply*)*num);
|
|
|
|
t1 = usec();
|
|
|
|
for (i = 0; i < num; i++) {
|
2018-05-20 19:34:20 +00:00
|
|
|
replies[i] = redisCommand(c, "INCRBY incrkey %d", 1000000);
|
2018-05-20 18:57:21 +00:00
|
|
|
assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_INTEGER);
|
|
|
|
}
|
|
|
|
t2 = usec();
|
|
|
|
for (i = 0; i < num; i++) freeReplyObject(replies[i]);
|
|
|
|
free(replies);
|
|
|
|
printf("\t(%dx INCRBY: %.3fs)\n", num, (t2-t1)/1000000.0);
|
|
|
|
|
2011-04-19 21:03:29 +00:00
|
|
|
num = 10000;
|
|
|
|
replies = malloc(sizeof(redisReply*)*num);
|
|
|
|
for (i = 0; i < num; i++)
|
2011-03-31 10:41:46 +00:00
|
|
|
redisAppendCommand(c,"PING");
|
|
|
|
t1 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) {
|
2011-03-31 10:41:46 +00:00
|
|
|
assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK);
|
|
|
|
assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_STATUS);
|
|
|
|
}
|
|
|
|
t2 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) freeReplyObject(replies[i]);
|
2011-03-31 10:41:46 +00:00
|
|
|
free(replies);
|
2011-04-19 21:03:29 +00:00
|
|
|
printf("\t(%dx PING (pipelined): %.3fs)\n", num, (t2-t1)/1000000.0);
|
2011-03-31 10:41:46 +00:00
|
|
|
|
2011-04-19 21:03:29 +00:00
|
|
|
replies = malloc(sizeof(redisReply*)*num);
|
|
|
|
for (i = 0; i < num; i++)
|
2011-03-31 10:41:46 +00:00
|
|
|
redisAppendCommand(c,"LRANGE mylist 0 499");
|
|
|
|
t1 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) {
|
2011-03-31 10:41:46 +00:00
|
|
|
assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK);
|
|
|
|
assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_ARRAY);
|
|
|
|
assert(replies[i] != NULL && replies[i]->elements == 500);
|
|
|
|
}
|
|
|
|
t2 = usec();
|
2011-04-19 21:03:29 +00:00
|
|
|
for (i = 0; i < num; i++) freeReplyObject(replies[i]);
|
2011-03-31 10:41:46 +00:00
|
|
|
free(replies);
|
2011-04-19 21:03:29 +00:00
|
|
|
printf("\t(%dx LRANGE with 500 elements (pipelined): %.3fs)\n", num, (t2-t1)/1000000.0);
|
2010-10-18 12:39:43 +00:00
|
|
|
|
2018-05-20 18:57:21 +00:00
|
|
|
replies = malloc(sizeof(redisReply*)*num);
|
|
|
|
for (i = 0; i < num; i++)
|
2018-05-20 19:34:20 +00:00
|
|
|
redisAppendCommand(c,"INCRBY incrkey %d", 1000000);
|
2018-05-20 18:57:21 +00:00
|
|
|
t1 = usec();
|
|
|
|
for (i = 0; i < num; i++) {
|
|
|
|
assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK);
|
|
|
|
assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_INTEGER);
|
|
|
|
}
|
|
|
|
t2 = usec();
|
|
|
|
for (i = 0; i < num; i++) freeReplyObject(replies[i]);
|
|
|
|
free(replies);
|
|
|
|
printf("\t(%dx INCRBY (pipelined): %.3fs)\n", num, (t2-t1)/1000000.0);
|
|
|
|
|
2014-02-24 10:41:00 +00:00
|
|
|
disconnect(c, 0);
|
2010-10-18 12:39:43 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 09:56:24 +00:00
|
|
|
// static long __test_callback_flags = 0;
|
|
|
|
// static void __test_callback(redisContext *c, void *privdata) {
|
|
|
|
// ((void)c);
|
|
|
|
// /* Shift to detect execution order */
|
|
|
|
// __test_callback_flags <<= 8;
|
|
|
|
// __test_callback_flags |= (long)privdata;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// static void __test_reply_callback(redisContext *c, redisReply *reply, void *privdata) {
|
|
|
|
// ((void)c);
|
|
|
|
// /* Shift to detect execution order */
|
|
|
|
// __test_callback_flags <<= 8;
|
|
|
|
// __test_callback_flags |= (long)privdata;
|
|
|
|
// if (reply) freeReplyObject(reply);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// static redisContext *__connect_nonblock() {
|
|
|
|
// /* Reset callback flags */
|
|
|
|
// __test_callback_flags = 0;
|
2011-04-13 05:45:08 +00:00
|
|
|
// return redisConnectNonBlock("127.0.0.1", port, NULL);
|
2010-10-31 09:56:24 +00:00
|
|
|
// }
|
|
|
|
//
|
|
|
|
// static void test_nonblocking_connection() {
|
|
|
|
// redisContext *c;
|
|
|
|
// int wdone = 0;
|
|
|
|
//
|
|
|
|
// test("Calls command callback when command is issued: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisSetCommandCallback(c,__test_callback,(void*)1);
|
|
|
|
// redisCommand(c,"PING");
|
|
|
|
// test_cond(__test_callback_flags == 1);
|
|
|
|
// redisFree(c);
|
|
|
|
//
|
|
|
|
// test("Calls disconnect callback on redisDisconnect: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisSetDisconnectCallback(c,__test_callback,(void*)2);
|
|
|
|
// redisDisconnect(c);
|
|
|
|
// test_cond(__test_callback_flags == 2);
|
|
|
|
// redisFree(c);
|
|
|
|
//
|
|
|
|
// test("Calls disconnect callback and free callback on redisFree: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisSetDisconnectCallback(c,__test_callback,(void*)2);
|
|
|
|
// redisSetFreeCallback(c,__test_callback,(void*)4);
|
|
|
|
// redisFree(c);
|
|
|
|
// test_cond(__test_callback_flags == ((2 << 8) | 4));
|
|
|
|
//
|
|
|
|
// test("redisBufferWrite against empty write buffer: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// test_cond(redisBufferWrite(c,&wdone) == REDIS_OK && wdone == 1);
|
|
|
|
// redisFree(c);
|
|
|
|
//
|
|
|
|
// test("redisBufferWrite against not yet connected fd: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisCommand(c,"PING");
|
|
|
|
// test_cond(redisBufferWrite(c,NULL) == REDIS_ERR &&
|
|
|
|
// strncmp(c->error,"write:",6) == 0);
|
|
|
|
// redisFree(c);
|
|
|
|
//
|
|
|
|
// test("redisBufferWrite against closed fd: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisCommand(c,"PING");
|
|
|
|
// redisDisconnect(c);
|
|
|
|
// test_cond(redisBufferWrite(c,NULL) == REDIS_ERR &&
|
|
|
|
// strncmp(c->error,"write:",6) == 0);
|
|
|
|
// redisFree(c);
|
|
|
|
//
|
|
|
|
// test("Process callbacks in the right sequence: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisCommandWithCallback(c,__test_reply_callback,(void*)1,"PING");
|
|
|
|
// redisCommandWithCallback(c,__test_reply_callback,(void*)2,"PING");
|
|
|
|
// redisCommandWithCallback(c,__test_reply_callback,(void*)3,"PING");
|
|
|
|
//
|
|
|
|
// /* Write output buffer */
|
|
|
|
// wdone = 0;
|
|
|
|
// while(!wdone) {
|
|
|
|
// usleep(500);
|
|
|
|
// redisBufferWrite(c,&wdone);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// /* Read until at least one callback is executed (the 3 replies will
|
|
|
|
// * arrive in a single packet, causing all callbacks to be executed in
|
|
|
|
// * a single pass). */
|
|
|
|
// while(__test_callback_flags == 0) {
|
|
|
|
// assert(redisBufferRead(c) == REDIS_OK);
|
|
|
|
// redisProcessCallbacks(c);
|
|
|
|
// }
|
|
|
|
// test_cond(__test_callback_flags == 0x010203);
|
|
|
|
// redisFree(c);
|
|
|
|
//
|
|
|
|
// test("redisDisconnect executes pending callbacks with NULL reply: ");
|
|
|
|
// c = __connect_nonblock();
|
|
|
|
// redisSetDisconnectCallback(c,__test_callback,(void*)1);
|
|
|
|
// redisCommandWithCallback(c,__test_reply_callback,(void*)2,"PING");
|
|
|
|
// redisDisconnect(c);
|
|
|
|
// test_cond(__test_callback_flags == 0x0201);
|
|
|
|
// redisFree(c);
|
|
|
|
// }
|
2010-10-18 13:39:56 +00:00
|
|
|
|
2010-11-03 10:43:01 +00:00
|
|
|
int main(int argc, char **argv) {
|
2011-05-22 14:25:52 +00:00
|
|
|
struct config cfg = {
|
|
|
|
.tcp = {
|
|
|
|
.host = "127.0.0.1",
|
|
|
|
.port = 6379
|
|
|
|
},
|
2015-08-22 04:58:40 +00:00
|
|
|
.unix_sock = {
|
2011-05-22 14:25:52 +00:00
|
|
|
.path = "/tmp/redis.sock"
|
|
|
|
}
|
|
|
|
};
|
2011-06-09 07:16:31 +00:00
|
|
|
int throughput = 1;
|
2014-02-24 10:41:00 +00:00
|
|
|
int test_inherit_fd = 1;
|
2011-05-22 14:25:52 +00:00
|
|
|
|
|
|
|
/* Ignore broken pipe signal (for I/O error tests). */
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
|
|
|
|
/* Parse command line options. */
|
|
|
|
argv++; argc--;
|
|
|
|
while (argc) {
|
|
|
|
if (argc >= 2 && !strcmp(argv[0],"-h")) {
|
|
|
|
argv++; argc--;
|
|
|
|
cfg.tcp.host = argv[0];
|
|
|
|
} else if (argc >= 2 && !strcmp(argv[0],"-p")) {
|
|
|
|
argv++; argc--;
|
|
|
|
cfg.tcp.port = atoi(argv[0]);
|
|
|
|
} else if (argc >= 2 && !strcmp(argv[0],"-s")) {
|
|
|
|
argv++; argc--;
|
2015-08-22 04:58:40 +00:00
|
|
|
cfg.unix_sock.path = argv[0];
|
2011-06-09 07:16:31 +00:00
|
|
|
} else if (argc >= 1 && !strcmp(argv[0],"--skip-throughput")) {
|
|
|
|
throughput = 0;
|
2014-02-24 10:41:00 +00:00
|
|
|
} else if (argc >= 1 && !strcmp(argv[0],"--skip-inherit-fd")) {
|
|
|
|
test_inherit_fd = 0;
|
2011-05-22 14:25:52 +00:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Invalid argument: %s\n", argv[0]);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
argv++; argc--;
|
2010-11-03 10:43:01 +00:00
|
|
|
}
|
|
|
|
|
2010-10-31 09:32:31 +00:00
|
|
|
test_format_commands();
|
2010-10-18 12:39:43 +00:00
|
|
|
test_reply_reader();
|
2011-05-22 14:25:52 +00:00
|
|
|
test_blocking_connection_errors();
|
2014-05-29 15:10:03 +00:00
|
|
|
test_free_null();
|
2011-05-22 14:25:52 +00:00
|
|
|
|
|
|
|
printf("\nTesting against TCP connection (%s:%d):\n", cfg.tcp.host, cfg.tcp.port);
|
|
|
|
cfg.type = CONN_TCP;
|
|
|
|
test_blocking_connection(cfg);
|
2015-04-16 17:28:12 +00:00
|
|
|
test_blocking_connection_timeouts(cfg);
|
2011-05-22 14:25:52 +00:00
|
|
|
test_blocking_io_errors(cfg);
|
2013-03-15 02:34:21 +00:00
|
|
|
test_invalid_timeout_errors(cfg);
|
2013-11-14 00:59:35 +00:00
|
|
|
test_append_formatted_commands(cfg);
|
2011-06-09 07:16:31 +00:00
|
|
|
if (throughput) test_throughput(cfg);
|
2011-05-22 14:25:52 +00:00
|
|
|
|
2015-08-22 04:58:40 +00:00
|
|
|
printf("\nTesting against Unix socket connection (%s):\n", cfg.unix_sock.path);
|
2011-05-22 14:25:52 +00:00
|
|
|
cfg.type = CONN_UNIX;
|
|
|
|
test_blocking_connection(cfg);
|
2015-04-16 17:28:12 +00:00
|
|
|
test_blocking_connection_timeouts(cfg);
|
2011-05-22 14:25:52 +00:00
|
|
|
test_blocking_io_errors(cfg);
|
2011-06-09 07:16:31 +00:00
|
|
|
if (throughput) test_throughput(cfg);
|
2010-09-19 13:18:51 +00:00
|
|
|
|
2014-02-24 10:41:00 +00:00
|
|
|
if (test_inherit_fd) {
|
2015-08-22 04:58:40 +00:00
|
|
|
printf("\nTesting against inherited fd (%s):\n", cfg.unix_sock.path);
|
2014-02-24 10:41:00 +00:00
|
|
|
cfg.type = CONN_FD;
|
|
|
|
test_blocking_connection(cfg);
|
|
|
|
}
|
|
|
|
|
2014-05-29 15:10:03 +00:00
|
|
|
|
2011-05-29 17:03:39 +00:00
|
|
|
if (fails) {
|
2010-09-20 11:44:24 +00:00
|
|
|
printf("*** %d TESTS FAILED ***\n", fails);
|
2011-05-29 17:03:39 +00:00
|
|
|
return 1;
|
2010-09-20 11:44:24 +00:00
|
|
|
}
|
2011-05-29 17:03:39 +00:00
|
|
|
|
|
|
|
printf("ALL TESTS PASSED\n");
|
2010-05-18 18:12:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|