From: antirez Date: Sun, 9 Jan 2011 17:25:34 +0000 (+0100) Subject: test adapted to run with diskstore, and a few bugs fixed X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/69bfffb4a7aec38e5079ec10b0acc8629c1ee82b test adapted to run with diskstore, and a few bugs fixed --- diff --git a/src/aof.c b/src/aof.c index 0c25cf6c..56392f2a 100644 --- a/src/aof.c +++ b/src/aof.c @@ -529,7 +529,10 @@ int rewriteAppendOnlyFileBackground(void) { pid_t childpid; if (server.bgrewritechildpid != -1) return REDIS_ERR; - redisAssert(server.ds_enabled == 0); + if (server.ds_enabled != 0) { + redisLog(REDIS_WARNING,"BGREWRITEAOF called with diskstore enabled: AOF is not supported when diskstore is enabled. Operation not performed."); + return REDIS_ERR; + } if ((childpid = fork()) == 0) { /* Child */ char tmpfile[256]; diff --git a/src/db.c b/src/db.c index 6276c992..1f321c01 100644 --- a/src/db.c +++ b/src/db.c @@ -201,7 +201,8 @@ int dbDelete(redisDb *db, robj *key) { return dictDelete(db->dict,key->ptr) == DICT_OK; } -/* Empty the whole database */ +/* Empty the whole database. + * If diskstore is enabled this function will just flush the in-memory cache. */ long long emptyDb() { int j; long long removed = 0; @@ -210,6 +211,7 @@ long long emptyDb() { removed += dictSize(server.db[j].dict); dictEmpty(server.db[j].dict); dictEmpty(server.db[j].expires); + if (server.ds_enabled) dictEmpty(server.db[j].io_negcache); } return removed; } diff --git a/src/debug.c b/src/debug.c index a727962e..49f7ab2a 100644 --- a/src/debug.c +++ b/src/debug.c @@ -177,7 +177,20 @@ void computeDatasetDigest(unsigned char *final) { void debugCommand(redisClient *c) { if (!strcasecmp(c->argv[1]->ptr,"segfault")) { *((char*)-1) = 'x'; + } else if (!strcasecmp(c->argv[1]->ptr,"flushcache")) { + if (!server.ds_enabled) { + addReplyError(c, "DEBUG FLUSHCACHE called with diskstore off."); + return; + } else { + emptyDb(); + addReply(c,shared.ok); + return; + } } else if (!strcasecmp(c->argv[1]->ptr,"reload")) { + if (server.ds_enabled) { + addReply(c,shared.ok); + return; + } if (rdbSave(server.dbfilename) != REDIS_OK) { addReply(c,shared.err); return; diff --git a/src/diskstore.c b/src/diskstore.c index 382afb4f..49c8706a 100644 --- a/src/diskstore.c +++ b/src/diskstore.c @@ -456,7 +456,7 @@ void *dsRdbSave_thread(void *arg) { /* Use RENAME to make sure the DB file is changed atomically only * if the generate DB file is ok. */ if (rename(tmpfile,filename) == -1) { - redisLog(REDIS_WARNING,"Error moving temp DB file on the final destination: %s", strerror(errno)); + redisLog(REDIS_WARNING,"Error moving temp DB file on the final destination: %s (diskstore)", strerror(errno)); unlink(tmpfile); dsRdbSaveSetState(REDIS_BGSAVE_THREAD_DONE_ERR); return NULL; diff --git a/src/dscache.c b/src/dscache.c index 20c66d59..8243e794 100644 --- a/src/dscache.c +++ b/src/dscache.c @@ -185,8 +185,7 @@ int cacheFreeOneEntry(void) { * are swappable objects */ int maxtries = 100; - if (dictSize(db->dict) == 0) continue; - for (i = 0; i < 5; i++) { + for (i = 0; i < 5 && dictSize(db->dict); i++) { dictEntry *de; double swappability; robj keyobj; diff --git a/tests/test_helper.tcl b/tests/test_helper.tcl index ec207b13..aef2311c 100644 --- a/tests/test_helper.tcl +++ b/tests/test_helper.tcl @@ -13,7 +13,7 @@ set ::host 127.0.0.1 set ::port 16379 set ::traceleaks 0 set ::valgrind 0 -set ::verbose 0 +set ::verbose 1 set ::denytags {} set ::allowtags {} set ::external 0; # If "1" this means, we are running against external instance @@ -104,14 +104,13 @@ proc s {args} { } proc cleanup {} { - if {$::diskstore} { - puts "Cleanup: warning may take some minute (diskstore enabled)" - } + puts "Cleanup: warning may take some time..." catch {exec rm -rf {*}[glob tests/tmp/redis.conf.*]} catch {exec rm -rf {*}[glob tests/tmp/server.*]} } proc execute_everything {} { + if 0 { execute_tests "unit/auth" execute_tests "unit/protocol" execute_tests "unit/basic" @@ -128,9 +127,11 @@ proc execute_everything {} { execute_tests "integration/aof" # execute_tests "integration/redis-cli" execute_tests "unit/pubsub" + } # run tests with diskstore enabled set ::diskstore 1 + lappend ::denytags nodiskstore set ::global_overrides {diskstore-enabled yes} execute_tests "unit/protocol" execute_tests "unit/basic" diff --git a/tests/unit/other.tcl b/tests/unit/other.tcl index c142ba7f..98a532c9 100644 --- a/tests/unit/other.tcl +++ b/tests/unit/other.tcl @@ -46,7 +46,7 @@ start_server {tags {"other"}} { set _ $err } {*invalid*} - tags {consistency} { + tags {consistency nodiskstore} { if {![catch {package require sha1}]} { test {Check consistency of different data types after a reload} { r flushdb @@ -102,12 +102,19 @@ start_server {tags {"other"}} { r flushdb r set x 10 r expire x 1000 - r save - r debug reload + if {$::diskstore} { + r debug flushcache + } else { + r save + r debug reload + } set ttl [r ttl x] set e1 [expr {$ttl > 900 && $ttl <= 1000}] - r bgrewriteaof - waitForBgrewriteaof r + if {!$::diskstore} { + r bgrewriteaof + waitForBgrewriteaof r + r debug loadaof + } set ttl [r ttl x] set e2 [expr {$ttl > 900 && $ttl <= 1000}] list $e1 $e2