将自定义 php.ini 传递给 phpunit
如何将自定义 php.ini 传递给 phpunit?
源使用
get_cfg_var
而不是
ini_get
所以不幸的是它不使用由 ini_set、-d 选项等设置的值。
现在传递值的唯一方法是使用额外的 php.ini。我如何将其传递到 phpunit 中?
血淋淋的细节:
我尝试用 -d 传递
phpunit --filter testgetdesc -d SIEF_VALIDATOR_DOC_ROOT="htdocs"
--configuration tests/phpunit.xml tests/configHelperTest.php
public function testgetdesc() {
echo get_cfg_var("SIEF_VALIDATOR_DOC_ROOT")."---test---";
}
它只是回显“---test---”
原因是这也使用ini_set:
https://github.com/sebastianbergmann/phpunit/blob/master/PHPUnit/TextUI/Command.php
case 'd': {
$ini = explode('=', $option[1]);
if (isset($ini[0])) {
if (isset($ini[1])) {
ini_set($ini[0], $ini[1]);
} else {
ini_set($ini[0], TRUE);
}
}
}
也在phpunit.xml,我有
<php>
<ini name="SIEF_VALIDATOR_DOC_ROOT" value="bar"/>
</php>
它不起作用[并且我不希望它起作用]。
How to pass a custom php.ini to phpunit?
The source uses
get_cfg_var
instead of
ini_get
so unfortunately it doesn't use values set by ini_set, -d option etc.
Only way to pass the value now is to use an additional php.ini. How do I pass that into phpunit?
Gory details:
I tried passing in with -d
phpunit --filter testgetdesc -d SIEF_VALIDATOR_DOC_ROOT="htdocs"
--configuration tests/phpunit.xml tests/configHelperTest.php
public function testgetdesc() {
echo get_cfg_var("SIEF_VALIDATOR_DOC_ROOT")."---test---";
}
It simply echoes "---test---"
The reason is this uses ini_set as well:
https://github.com/sebastianbergmann/phpunit/blob/master/PHPUnit/TextUI/Command.php
case 'd': {
$ini = explode('=', $option[1]);
if (isset($ini[0])) {
if (isset($ini[1])) {
ini_set($ini[0], $ini[1]);
} else {
ini_set($ini[0], TRUE);
}
}
}
Also in the phpunit.xml, I have
<php>
<ini name="SIEF_VALIDATOR_DOC_ROOT" value="bar"/>
</php>
which doesn't work [and I don't expect it to].
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
-d
应该可以工作,因为 PHPget_cfg_var()
函数读取这些:要传递自定义 ini 设置(或者使用
-c
的 ini 文件到 phpunit),请调用它配置:参考/另请参阅:
php --help
, 命令行选项, 执行 PHP 文件,get_cfg_var()
函数$( ... )
命令替换(Bash GNU 参考),which
:为什么不使用“which”?那用什么?-d
should work because PHPsget_cfg_var()
function reads those:To pass a custom ini setting (or alternatively the ini file with
-c <file>
to phpunit), invoke it configured:References/See as well:
php --help
, Command line options, Executing PHP files,get_cfg_var()
function$( ... )
Command Substitution (Bash GNU Reference),which
: Why not use "which"? What to use then?Github 问题 建议使用
-c
标志。The Github issue recommends using the
-c
flag.