Use of undefined constant SIGTERM - gt; assumed #39;SIGTERM#39;(使用未定义的常量 SIGTERM - gt;假定为“SIGTERM)
问题描述
当前在我的 Windows 机器上使用 Codeception 运行 PHPUnit 给我一个错误:
Currently running PHPUnit with Codeception on my Windows machine gives me an error:
[PHPUnit_Framework_Exception]
使用未定义的常量 SIGTERM -假定为SIGTERM"
[PHPUnit_Framework_Exception]
Use of undefined constant SIGTERM - assumed 'SIGTERM'
据我所知,SIGTERM
是 PCNTL,Windows 不支持.这样,这个 CONSTANT 不应该用于在 Windows 环境上运行的测试.完全没有.
As far as I know is that SIGTERM
is a constant provided by PCNTL, which is not supported in Windows. In that way this CONSTANT shouldnt be used for a test running on Windows env. at all.
PHP 5.6.17 (cli) (built: Jan 6 2016 13:28:38)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies
PHPUnit
PHPUnit 5.7.15
代码接收
Codeception PHP Testing Framework v2.2.9
phiremock-codeception-extension
phiremock-codeception-extension v1.2.2
推荐答案
问题在于 phiremock-codeception-extension
使用 SIGTERM
而不检查 OS/PCNTL扩展是可用的.所以我在 GitHub https://github.com/mcustiel/创建了一个错误报告phiremock-codeception-extension/issues/4..
The problem is depending on phiremock-codeception-extension
which uses SIGTERM
without checking the OS/PCNTL extension is available. So I created a Bug report at GitHub https://github.com/mcustiel/phiremock-codeception-extension/issues/4..
这是受感染的代码行 - https://github.com/mcustiel/phiremock-codeception-extension/blob/master/src/Extension/PhiremockProcess.php#L74
This are the infected code lines - https://github.com/mcustiel/phiremock-codeception-extension/blob/master/src/Extension/PhiremockProcess.php#L74
/**
* Stops the process.
*/
public function stop()
{
$this->process->signal(SIGTERM);
$this->process->stop(3, SIGKILL);
}
一旦开发者解决了问题,我会更新这个答案.
I will update this answer once the problem has been fixed by the developer.
此问题已在 phiremock-codeception-extension v.1.2.3.
这篇关于使用未定义的常量 SIGTERM - >假定为“SIGTERM"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用未定义的常量 SIGTERM - >假定为“SIGTERM"
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01