diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-01-27 14:39:34 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-01-27 14:39:34 +0100 |
commit | 663d6d1258b3ef49178ed4120de5c91ecffe2512 (patch) | |
tree | c4a728c661a72a053ea9bc73271b01765f8a6720 /test.c | |
parent | 864bce944be1331c70ed353aeb083607c2a31acc (diff) |
Properly reset state after protocol error in reply reader
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -318,6 +318,15 @@ static void test_reply_reader(void) { ret = redisReplyReaderGetReply(reader,&reply); test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS); redisReplyReaderFree(reader); + + test("Properly reset state after protocol error: "); + reader = redisReplyReaderCreate(); + redisReplyReaderSetReplyObjectFunctions(reader,NULL); + redisReplyReaderFeed(reader,(char*)"x",1); + ret = redisReplyReaderGetReply(reader,&reply); + assert(ret == REDIS_ERR); + ret = redisReplyReaderGetReply(reader,&reply); + test_cond(ret == REDIS_OK && reply == NULL) } static void test_throughput(void) { |