forked from redis/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Test for the SENTINEL CKQUORUM command | ||
|
||
source "../tests/includes/init-tests.tcl" | ||
set num_sentinels [llength $::sentinel_instances] | ||
|
||
test "CKQUORUM reports OK and the right amount of Sentinels" { | ||
foreach_sentinel_id id { | ||
assert_match "*OK $num_sentinels usable*" [S $id SENTINEL CKQUORUM mymaster] | ||
} | ||
} | ||
|
||
test "CKQUORUM detects quorum cannot be reached" { | ||
set orig_quorum [expr {$num_sentinels/2+1}] | ||
S 0 SENTINEL SET mymaster quorum [expr {$num_sentinels+1}] | ||
catch {[S 0 SENTINEL CKQUORUM mymaster]} err | ||
assert_match "*NOQUORUM*" $err | ||
S 0 SENTINEL SET mymaster quorum $orig_quorum | ||
} | ||
|
||
test "CKQUORUM detects failover authorization cannot be reached" { | ||
set orig_quorum [expr {$num_sentinels/2+1}] | ||
S 0 SENTINEL SET mymaster quorum 1 | ||
kill_instance sentinel 1 | ||
kill_instance sentinel 2 | ||
kill_instance sentinel 3 | ||
after 5000 | ||
catch {[S 0 SENTINEL CKQUORUM mymaster]} err | ||
assert_match "*NOQUORUM*" $err | ||
S 0 SENTINEL SET mymaster quorum $orig_quorum | ||
restart_instance sentinel 1 | ||
restart_instance sentinel 2 | ||
restart_instance sentinel 3 | ||
} | ||
|