将自定义 php.ini 传递给 phpunit

发布于 2024-12-09 08:08:26 字数 1309 浏览 0 评论 0原文

如何将自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

-小熊_ 2024-12-16 08:08:26

-d 应该可以工作,因为 PHP get_cfg_var() 函数读取这些:

$ php -d display.errors2=1 -r "echo get_cfg_var('display.errors2');"
1

要传递自定义 ini 设置(或者使用 -c 的 ini 文件到 phpunit),请调用它配置:

$ php -c <file> -d setting=value $(which phpunit) <your-params>...

参考/另请参阅:

-d should work because PHPs get_cfg_var() function reads those:

$ php -d display.errors2=1 -r "echo get_cfg_var('display.errors2');"
1

To pass a custom ini setting (or alternatively the ini file with -c <file> to phpunit), invoke it configured:

$ php -c <file> -d setting=value $(which phpunit) <your-params>...

References/See as well:

眼角的笑意。 2024-12-16 08:08:26

Github 问题 建议使用 -c 标志。

php -c custom-php.ini `which phpunit` ...

The Github issue recommends using the -c flag.

php -c custom-php.ini `which phpunit` ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文