mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
586a16ad79
The purpose of the test is to kill the child while it is running. From the last two lines we can see the child exits before being killed. ``` - Module fork started pid: 56998 * <fork> fork child started - Killing running module fork child: 56998 * <fork> fork child exiting signal-handler (1652267501) Received SIGUSR1 in child, exiting now. ``` In this commit, we pass an argument to `fork.create` indicating how long it should sleep. For the fork kill test, we use a longer time to avoid the child exiting before being killed. Other changes: use wait_for_condition instead of hardcoded `after 250`. Unify the test for failing fork with the one for killing it (save time)
50 lines
1.5 KiB
Tcl
50 lines
1.5 KiB
Tcl
set testmodule [file normalize tests/modules/fork.so]
|
|
|
|
proc count_log_message {pattern} {
|
|
set status [catch {exec grep -c $pattern < [srv 0 stdout]} result]
|
|
if {$status == 1} {
|
|
set result 0
|
|
}
|
|
return $result
|
|
}
|
|
|
|
start_server {tags {"modules"}} {
|
|
r module load $testmodule
|
|
|
|
test {Module fork} {
|
|
# the argument to fork.create is the exitcode on termination
|
|
# the second argument to fork.create is passed to usleep
|
|
r fork.create 3 100000 ;# 100ms
|
|
wait_for_condition 20 100 {
|
|
[r fork.exitcode] != -1
|
|
} else {
|
|
fail "fork didn't terminate"
|
|
}
|
|
r fork.exitcode
|
|
} {3}
|
|
|
|
test {Module fork kill} {
|
|
# use a longer time to avoid the child exiting before being killed
|
|
r fork.create 3 100000000 ;# 100s
|
|
wait_for_condition 20 100 {
|
|
[count_log_message "fork child started"] == 2
|
|
} else {
|
|
fail "fork didn't start"
|
|
}
|
|
|
|
# module fork twice
|
|
assert_error {Fork failed} {r fork.create 0 1}
|
|
assert {[count_log_message "Can't fork for module: File exists"] eq "1"}
|
|
|
|
r fork.kill
|
|
|
|
assert {[count_log_message "Received SIGUSR1 in child"] eq "1"}
|
|
# check that it wasn't printed again (the print belong to the previous test)
|
|
assert {[count_log_message "fork child exiting"] eq "1"}
|
|
}
|
|
|
|
test "Unload the module - fork" {
|
|
assert_equal {OK} [r module unload fork]
|
|
}
|
|
}
|