hiredis/test.c

176 lines
6.0 KiB
C
Raw Normal View History

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-05-18 18:12:03 +00:00
#include "hiredis.h"
2010-09-20 11:44:24 +00:00
/* The following lines make up our testing "framework" :) */
#define test(_s) { printf("#%02d ", ++tests); printf(_s); }
2010-05-18 18:12:03 +00:00
#define test_cond(_c) if(_c) printf("PASSED\n"); else {printf("FAILED\n"); fails++;}
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;
}
static void __connect(redisContext **c) {
*c = redisConnect((char*)"127.0.0.1", 6379, NULL);
if ((*c)->error != NULL) {
printf("Connection error: %s", ((redisReply*)(*c)->error)->reply);
2010-09-19 17:01:31 +00:00
exit(1);
}
}
2010-05-18 18:12:03 +00:00
int main(void) {
redisContext *fd;
2010-09-20 11:44:24 +00:00
int i, tests = 0, fails = 0;
2010-09-19 13:18:51 +00:00
long long t1, t2;
2010-05-18 18:12:03 +00:00
redisReply *reply;
void *reader;
2010-09-19 18:43:43 +00:00
__connect(&fd);
2010-05-18 18:12:03 +00:00
2010-09-20 11:44:24 +00:00
test("Returns I/O error when the connection is lost: ");
2010-09-19 17:01:31 +00:00
reply = redisCommand(fd,"QUIT");
test_cond(reply->type == REDIS_ERROR &&
strcmp(reply->reply,"Server closed the connection") == 0);
2010-09-19 17:01:31 +00:00
freeReplyObject(reply);
2010-09-19 18:43:43 +00:00
__connect(&fd); /* reconnect */
2010-05-18 18:12:03 +00:00
2010-09-20 11:44:24 +00:00
test("Is able to deliver commands: ");
2010-05-18 18:12:03 +00:00
reply = redisCommand(fd,"PING");
test_cond(reply->type == REDIS_REPLY_STRING &&
strcasecmp(reply->reply,"pong") == 0)
freeReplyObject(reply);
2010-05-18 18:12:03 +00:00
/* Switch to DB 9 for testing, now that we know we can chat. */
reply = redisCommand(fd,"SELECT 9");
freeReplyObject(reply);
/* Make sure the DB is emtpy */
reply = redisCommand(fd,"DBSIZE");
if (reply->type != REDIS_REPLY_INTEGER ||
reply->integer != 0) {
printf("Sorry DB 9 is not empty, test can not continue\n");
exit(1);
} else {
printf("DB 9 is empty... test can continue\n");
}
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
test("Is a able to send commands verbatim: ");
2010-05-18 18:12:03 +00:00
reply = redisCommand(fd,"SET foo bar");
test_cond (reply->type == REDIS_REPLY_STRING &&
strcasecmp(reply->reply,"ok") == 0)
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
test("%%s String interpolation works: ");
2010-05-18 18:12:03 +00:00
reply = redisCommand(fd,"SET %s %s","foo","hello world");
freeReplyObject(reply);
reply = redisCommand(fd,"GET foo");
test_cond(reply->type == REDIS_REPLY_STRING &&
strcmp(reply->reply,"hello world") == 0);
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
test("%%b String interpolation works: ");
2010-05-18 18:12:03 +00:00
reply = redisCommand(fd,"SET %b %b","foo",3,"hello\x00world",11);
freeReplyObject(reply);
reply = redisCommand(fd,"GET foo");
test_cond(reply->type == REDIS_REPLY_STRING &&
memcmp(reply->reply,"hello\x00world",11) == 0)
2010-09-20 11:44:24 +00:00
test("Binary reply length is correct: ");
2010-05-18 18:12:03 +00:00
test_cond(sdslen(reply->reply) == 11)
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
test("Can parse nil replies: ");
2010-05-18 18:12:03 +00:00
reply = redisCommand(fd,"GET nokey");
test_cond(reply->type == REDIS_REPLY_NIL)
freeReplyObject(reply);
/* test 7 */
2010-09-20 11:44:24 +00:00
test("Can parse integer replies: ");
2010-05-18 18:12:03 +00:00
reply = redisCommand(fd,"INCR mycounter");
test_cond(reply->type == REDIS_REPLY_INTEGER && reply->integer == 1)
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
test("Can parse multi bulk replies: ");
2010-05-18 18:12:03 +00:00
freeReplyObject(redisCommand(fd,"LPUSH mylist foo"));
freeReplyObject(redisCommand(fd,"LPUSH mylist bar"));
reply = redisCommand(fd,"LRANGE mylist 0 -1");
test_cond(reply->type == REDIS_REPLY_ARRAY &&
reply->elements == 2 &&
!memcmp(reply->element[0]->reply,"bar",3) &&
!memcmp(reply->element[1]->reply,"foo",3))
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
/* m/e with multi bulk reply *before* other reply.
* specifically test ordering of reply items to parse. */
2010-09-20 11:44:24 +00:00
test("Can handle nested multi bulk replies: ");
freeReplyObject(redisCommand(fd,"MULTI"));
freeReplyObject(redisCommand(fd,"LRANGE mylist 0 -1"));
freeReplyObject(redisCommand(fd,"PING"));
reply = (redisCommand(fd,"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]->reply,"bar",3) &&
!memcmp(reply->element[0]->element[1]->reply,"foo",3) &&
reply->element[1]->type == REDIS_REPLY_STRING &&
strcasecmp(reply->element[1]->reply,"pong") == 0);
freeReplyObject(reply);
test("Error handling in reply parser: ");
reader = redisReplyReaderCreate(NULL);
redisReplyReaderFeed(reader,(char*)"@foo\r\n",6);
reply = redisReplyReaderGetReply(reader);
test_cond(reply->type == REDIS_ERROR &&
strcasecmp(reply->reply,"protocol error, got \"@\" as reply type byte") == 0);
freeReplyObject(reply);
redisReplyReaderFree(reader);
/* 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: ");
reader = redisReplyReaderCreate(NULL);
redisReplyReaderFeed(reader,(char*)"*2\r\n",4);
redisReplyReaderFeed(reader,(char*)"$5\r\nhello\r\n",11);
redisReplyReaderFeed(reader,(char*)"@foo\r\n",6);
reply = redisReplyReaderGetReply(reader);
test_cond(reply->type == REDIS_ERROR &&
strcasecmp(reply->reply,"protocol error, got \"@\" as reply type byte") == 0);
freeReplyObject(reply);
redisReplyReaderFree(reader);
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++)
freeReplyObject(redisCommand(fd,"LPUSH mylist foo"));
t1 = usec();
for (i = 0; i < 1000; i++)
freeReplyObject(redisCommand(fd,"PING"));
t2 = usec();
2010-09-20 11:44:24 +00:00
printf("\t(1000x PING: %.2fs)\n", (t2-t1)/1000000.0);
2010-09-19 13:18:51 +00:00
t1 = usec();
for (i = 0; i < 1000; i++)
freeReplyObject(redisCommand(fd,"LRANGE mylist 0 499"));
t2 = usec();
2010-09-20 11:44:24 +00:00
printf("\t(1000x LRANGE with 500 elements: %.2fs)\n", (t2-t1)/1000000.0);
2010-09-19 13:18:51 +00:00
/* Clean DB 9 */
reply = redisCommand(fd,"FLUSHDB");
freeReplyObject(reply);
2010-09-20 11:44:24 +00:00
if (fails == 0) {
printf("ALL TESTS PASSED\n");
} else {
printf("*** %d TESTS FAILED ***\n", fails);
}
2010-05-18 18:12:03 +00:00
return 0;
}