1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 20:22:36 +02:00
Files
archived-php-src/sapi/cli/tests/sapi_windows_set_ctrl_handler.phpt
Christoph M. Becker 637d8677b3 Fix ZTS issue regarding new Windows CTRL handling API
php_win32_signal_system_ctrl_handler() is called from a kernel thread,
so the former initialization of `vm_interrupt_flag` has no effect,
since it is defined as thread-local.  This is, however, not necessary,
since the CTRL signal handling is supposed to work only for the main
thread anyway.  We therefore change `vm_interrupt_flag` and the related
variables to true globals.

This also allows us to unmark the respective test case as XFAIL.

Furthermore, `vm_interrupt_flag` is declared as `zend_bool *`, so we
better treat it such.
2019-06-01 09:35:47 +02:00

76 lines
1.7 KiB
PHP

--TEST--
sapi_windows_set_ctrl_handler()
--SKIPIF--
<?php
include "skipinf.inc";
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')
die("skip this test is for Windows platforms only");
?>
--FILE--
<?php
$is_child = isset($argv[1]);
if ($is_child) {
function handler($evt)
{
echo "\nCaught " . get_evt_name($evt), ", wait, wait ...!\n";
exit;
}
sapi_windows_set_ctrl_handler('handler');
while(1) usleep(100);
} else {
$cmd = PHP_BINARY . " -n " . $argv[0] . " 1";
$spec = [0 => ["pipe", "r"], 1 => ["pipe", "w"]];
$proc = proc_open($cmd, $spec, $pipes, NULL, NULL, ["bypass_shell" => true, "create_process_group" => true]);
if (!is_resource($proc)) {
die("Failed to start child. ");
}
$child_pid = proc_get_status($proc)["pid"];
echo "Started child $child_pid\n";
usleep(300);
$cmd = "tasklist /FI \"PID eq $child_pid\" /NH";
echo "Running `$cmd` to check the process indeed exists:\n";
echo trim(shell_exec($cmd)) . "\n";
$evt = PHP_WINDOWS_EVENT_CTRL_C;
echo "Sending ", get_evt_name($evt), " to child $child_pid\n";
$ret = sapi_windows_generate_ctrl_event($evt, $child_pid);
echo "Child said: \"", trim(fread($pipes[1], 48)), "\"\n";
echo ($ret ? "Successfully" : "Unsuccessfuly"), " sent ", get_evt_name($evt), " to child $child_pid\n";
proc_close($proc);
}
function get_evt_name(int $evt) : ?string
{
if (PHP_WINDOWS_EVENT_CTRL_C == $evt) {
return "CTRL+C";
} if (PHP_WINDOWS_EVENT_CTRL_BREAK == $evt) {
return "CTRL+BREAK";
}
return NULL;
}
?>
--EXPECTF--
Started child %d
Running `tasklist /FI "PID eq %d" /NH` to check the process indeed exists:
php.exe%w%d%s1%s
Sending CTRL+C to child %d
Child said: "Caught CTRL+C, wait, wait ...!"
Successfully sent CTRL+C to child %d