mirror of https://github.com/F-Stack/f-stack.git
17 lines
432 B
Tcl
17 lines
432 B
Tcl
|
start_server {tags {"limits"} overrides {maxclients 10}} {
|
||
|
test {Check if maxclients works refusing connections} {
|
||
|
set c 0
|
||
|
catch {
|
||
|
while {$c < 50} {
|
||
|
incr c
|
||
|
set rd [redis_deferring_client]
|
||
|
$rd ping
|
||
|
$rd read
|
||
|
after 100
|
||
|
}
|
||
|
} e
|
||
|
assert {$c > 8 && $c <= 10}
|
||
|
set e
|
||
|
} {*ERR max*reached*}
|
||
|
}
|