Fix Error in Daily CI -- reply-schemas-validator (#922)

Just add one more test for command "sentinel IS-PRIMARY-DOWN-BY-ADDR" to
make the reply-schemas-validator
run successfully.

Note: test result here
https://github.com/hwware/valkey/actions/runs/10457516111

Signed-off-by: hwware <wen.hui.ware@gmail.com>
This commit is contained in:
Wen Hui 2024-08-21 09:36:02 -04:00 committed by GitHub
parent 2673320b66
commit b8dd4fbbf7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -208,3 +208,13 @@ test "SENTINEL RESET can resets the primary" {
assert_equal 0 $res2
assert_equal 0 $res3
}
test "SENTINEL IS-PRIMARY-DOWN-BY-ADDR checks if the primary is down" {
set sentinel_id [S 0 SENTINEL MYID]
set master_ip_port [S 0 SENTINEL GET-PRIMARY-ADDR-BY-NAME mymaster]
set master_ip [lindex $master_ip_port 0]
set master_port [lindex $master_ip_port 1]
set result [S 0 SENTINEL IS-PRIMARY-DOWN-BY-ADDR $master_ip $master_port 50 $sentinel_id]
assert_equal $sentinel_id [lindex $result 1]
assert_equal {50} [lindex $result 2]
}