]> git.saurik.com Git - redis.git/commitdiff
Add a unit test to verify that key archival works.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Dec 2012 08:11:42 +0000 (08:11 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Dec 2012 08:11:42 +0000 (08:11 +0000)
tests/test_helper.tcl
tests/unit/archive.tcl [new file with mode: 0644]

index 38fb1f5394d161d2020e9848662ecb7c902a130c..86230db71fc9f51ccbfc9de7f5a2be2ae1098641 100644 (file)
@@ -26,6 +26,7 @@ set ::all_tests {
     unit/multi
     unit/quit
     unit/aofrw
+    unit/archive
     integration/replication
     integration/replication-2
     integration/replication-3
diff --git a/tests/unit/archive.tcl b/tests/unit/archive.tcl
new file mode 100644 (file)
index 0000000..8ed6004
--- /dev/null
@@ -0,0 +1,43 @@
+start_server {tags {"archive"}} {
+
+    test "archive - can archived keys be recovered?" {
+        # make sure to start with a blank instance
+        r flushall 
+        # Turn on our key archival system
+        r config set keyarchive yes
+        # Get the current memory limit and calculate a new limit.
+        # We just add 100k to the current memory size so that it is
+        # fast for us to reach that limit.
+        set used [s used_memory]
+        set limit [expr {$used+100*1024}]
+        r config set maxmemory $limit
+        r config set maxmemory-policy allkeys-random
+        # Now add keys until the limit is almost reached.
+        set numkeys 0
+        while 1 {
+            # Odd keys are volatile
+            # Even keys are non volatile
+            if {$numkeys % 2} {
+                r setex "key:$numkeys" 10000 x
+            } else {
+                r set "key:$numkeys" x
+            }
+            if {[s used_memory]+4096 > $limit} {
+                assert {$numkeys > 10}
+                break
+            }
+            incr numkeys
+        }
+        # If we add the same number of keys already added again, we
+        # should still be under the limit.
+        for {set j 0} {$j < $numkeys} {incr j} {
+            r setex [randomKey] 10000 x
+        }
+        assert {[s used_memory] < ($limit+4096)}
+        # However all our non volatile keys should be here.
+        for {set j 0} {$j < $numkeys} {incr j 2} {
+            assert {[r exists "key:$j"]}
+        }
+    }
+
+}