如何让 XDebug 在 CLI 上使用 PHPUnit 运行?

我尝试运行以下 CLI 命令:

phpunit -d xdebug.profiler_enable=on XYZTestCase.php

但它只是正常运行。任何人都可以为我指出正确的方向吗?感谢!

以下是 XDebug 设置:

xdebug

xdebug support => enabled
Version => 2.1.2

Supported protocols => Revision
DBGp - Common DeBuGger Protocol => $Revision: 1.145 $

Directive => Local Value => Master Value
xdebug.auto_trace => Off => Off
xdebug.collect_assignments => Off => Off
xdebug.collect_includes => On => On
xdebug.collect_params => 0 => 0
xdebug.collect_return => Off => Off
xdebug.collect_vars => Off => Off
xdebug.default_enable => On => On
xdebug.dump.COOKIE => no value => no value
xdebug.dump.ENV => no value => no value
xdebug.dump.FILES => no value => no value
xdebug.dump.GET => no value => no value
xdebug.dump.POST => no value => no value
xdebug.dump.REQUEST => no value => no value
xdebug.dump.SERVER => no value => no value
xdebug.dump.SESSION => no value => no value
xdebug.dump_globals => On => On
xdebug.dump_once => On => On
xdebug.dump_undefined => Off => Off
xdebug.extended_info => On => On
xdebug.file_link_format => no value => no value
xdebug.idekey => Nam => no value
xdebug.manual_url => http://www.php.net => http://www.php.net
xdebug.max_nesting_level => 100 => 100
xdebug.overload_var_dump => On => On
xdebug.profiler_aggregate => Off => Off
xdebug.profiler_append => Off => Off
xdebug.profiler_enable => Off => Off
xdebug.profiler_enable_trigger => Off => Off
xdebug.profiler_output_dir => c:/wamp/tmp => c:/wamp/tmp
xdebug.profiler_output_name => cachegrind.out.%t.%p => cachegrind.out.%t.%p
xdebug.remote_autostart => On => On
xdebug.remote_connect_back => Off => Off
xdebug.remote_cookie_expire_time => 3600 => 3600
xdebug.remote_enable => On => On
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => no value => no value
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000
xdebug.scream => Off => Off
xdebug.show_exception_trace => Off => Off
xdebug.show_local_vars => Off => Off
xdebug.show_mem_delta => Off => Off
xdebug.trace_format => 0 => 0
xdebug.trace_options => 0 => 0
xdebug.trace_output_dir => \ => \
xdebug.trace_output_name => trace.%c => trace.%c
xdebug.var_display_max_children => 128 => 128
xdebug.var_display_max_data => 512 => 512
xdebug.var_display_max_depth => 3 => 3

答案 1

无法在运行时更改设置,只能在脚本开始时更改。xdebug.profiler_enable

运行只会导致 phpunit 调用,这不起作用,因为值在运行时无法更改。phpunit -d foo=barini_set("foo", "bar");

请参见: xdebug.profiler_enable

启用 Xdebug 的探查器,该探查器在配置文件输出目录中创建文件。KCacheGrind可以读取这些文件以可视化您的数据。不能在脚本中使用 ini_set() 设置此设置。如果要有选择地启用探查器,请将xdebug.profiler_enable_trigger设置为 1,而不是使用此设置。

溶液:

php -d xdebug.profiler_enable=on /usr/bin/phpunit XYZTestCase.php

通过将设置直接应用于 PHP 运行时而不是 phpunit,它将在脚本启动之前进行设置,并且应该可以正常工作。


答案 2

花了很长时间试图让它工作。认为这可能会改变我的生活!

我最初试图在流浪箱内执行此操作(即运行phpunit),但意识到在流浪箱外运行它更容易(并且性能更快)。

首先,我在Mac上使用homebrew(但是您的配置可能不同,它应该仍然有效)。我的网站是一个symfony2项目。brew install php55 php55-xdebug

我试图遵循这个:phpunit vagrant xdebug让它从一个流浪箱内工作(几乎到达那里,但有一些问题)。

这些设置对我有用(从流浪箱运行网站,但在流浪箱外运行phpunit):

#xdebug.ini (parent machine, not inside vagrant box).
[xdebug]
zend_extension="/usr/local/Cellar/php55-xdebug/2.2.6/xdebug.so" #this will be different on your machine and will probably already be set

xdebug.max_nesting_level = 250 
xdebug.default_enable = 1
xdebug.idekey = "PHPSTORM" #seems to work without this too
xdebug.remote_enable = 1

然后在命令行上运行它(这里我使用的是phpunit的下载,而不是/usr/local/bin中链接到的那个(这似乎不起作用))

XDEBUG_CONFIG="idekey=PHPSTORM" bin/phpunit -c app

或者,您可以创建一个名为phpunit-debug的文件(用于存储XDEBUG_CONFIG环境变量),如下所示:phpunit xdebug


推荐