2019-07-17 01:51:02 -04:00
|
|
|
set testmodule [file normalize tests/modules/fork.so]
|
|
|
|
|
|
|
|
proc count_log_message {pattern} {
|
2021-07-25 02:58:21 -04:00
|
|
|
set status [catch {exec grep -c $pattern < [srv 0 stdout]} result]
|
|
|
|
if {$status == 1} {
|
|
|
|
set result 0
|
|
|
|
}
|
|
|
|
return $result
|
2019-07-17 01:51:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
start_server {tags {"modules"}} {
|
|
|
|
r module load $testmodule
|
|
|
|
|
|
|
|
test {Module fork} {
|
|
|
|
# the argument to fork.create is the exitcode on termination
|
2022-05-12 13:10:38 -04:00
|
|
|
# the second argument to fork.create is passed to usleep
|
|
|
|
r fork.create 3 100000 ;# 100ms
|
2019-07-17 01:51:02 -04:00
|
|
|
wait_for_condition 20 100 {
|
|
|
|
[r fork.exitcode] != -1
|
|
|
|
} else {
|
|
|
|
fail "fork didn't terminate"
|
|
|
|
}
|
|
|
|
r fork.exitcode
|
|
|
|
} {3}
|
|
|
|
|
|
|
|
test {Module fork kill} {
|
2022-05-12 13:10:38 -04:00
|
|
|
# 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"}
|
|
|
|
|
2019-07-17 01:51:02 -04:00
|
|
|
r fork.kill
|
|
|
|
|
|
|
|
assert {[count_log_message "Received SIGUSR1 in child"] eq "1"}
|
2022-05-12 13:10:38 -04:00
|
|
|
# check that it wasn't printed again (the print belong to the previous test)
|
2019-07-17 01:51:02 -04:00
|
|
|
assert {[count_log_message "fork child exiting"] eq "1"}
|
|
|
|
}
|
|
|
|
|
2022-01-23 03:05:06 -05:00
|
|
|
test "Unload the module - fork" {
|
|
|
|
assert_equal {OK} [r module unload fork]
|
|
|
|
}
|
2019-07-17 01:51:02 -04:00
|
|
|
}
|