我怎样才能得到的XDebug与CLI上运行的PHPUnit?(How can I get XDebu

2019-06-27 07:32发布

我试着运行以下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

Answer 1:

xdebug.profiler_enable设置不能在运行 ,但只在脚本开始改变

运行phpunit -d foo=bar只会导致PHPUnit的调用ini_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的脚本开始之前 ,将其设置,并应工作。



Answer 2:

花了年龄试图得到这个工作。 想到这则可能会改变我的一生!

我本来想这样做(即运行PHPUnit的)一个无业游民盒子里,但实现起来比较方便(聪明和更快的性能)的流浪汉箱外运行它。

首先,我用brew install php55 php55-xdebug使用在Mac上的自制软件(但你的配置可能会有所不同,它应该仍然工作)。 我的网站是一个Symfony2的项目。

我试图按照此: PHPUnit的流浪汉的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的调试(存储XDEBUG_CONFIG环境变量)为这里概述: PHPUnit的Xdebug的



Answer 3:

你尝试:

  1. 在php.ini设置你的xdebug.idekey到wathever你想要的(如:blacktie)
  2. 重新启动服务器

  3. 通过添加-d xdebug.idekey = blacktie打电话给你的脚本

    的PHPUnit -d xdebug.profiler_enable =上-d xdebug.idekey = blacktie XYZTestCase.php

希望帮助。



Answer 4:

设置的正确名称是xdebug.profiler_enable以下划线。 改变你的命令如下:

phpunit -d xdebug.profiler_enable=on XYZTestCase.php


Answer 5:

你可以在命令行通过预先设置环境变量,例如运行Xdebug的:

export XDEBUG_CONFIG="idekey=YOUR_IDE_KEY remote_host=localhost remote_enable=1"

这为我工作。

上的更多信息Xdebug的文档 。



Answer 6:

假设你已经从Xdebug的编辑器/独立调试程序工作时,通过cookie的触发/后/ GET变量,增加一个shell脚本做同样的触发,所以你必须少要记住:

创建~/bin/php-cli-debug.sh

#!/bin/bash
phpfile="$1"
idekey=YOUR_IDE_KEY
shift 1
php -d'xdebug.remote_enable=1' -d'xdebug.remote_autostart=1' -d'xdebug.idekey='"$idekey" -f "$phpfile" -- "$@"

然后在命令行调试的东西,使用这样的:

$ php-cli-debug.sh "$(which phpunit)" --bootstrap tests/bootstrap.php tests/FooBarTest | less -S

确保您.bashrc增加了~/bin你的$PATH



Answer 7:

首先,我的环境:

  • WampServer版本3.1.3 64位
  • 阿帕奇2.4.33 - PHP 7.1.16
  • MySQL的21年7月5日
  • MariaDB的10.2.14

php.ini中:

[xdebug]
zend_extension ="c:/wamp64/bin/php/php7.1.16/zend_ext/php_xdebug-2.6.0-7.1-vc14-x86_64.dll"

xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=0
xdebug.idekey = "PHPSTORM" #seems to work without this too

phpunit.xml:

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="bootstrap/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false">
    <testsuites>
        <testsuite name="Application Test Suite">
            <directory suffix="Test.php">./tests</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./app</directory>
        </whitelist>
    </filter>
    <php>
        <env name="APP_ENV" value="testing"/>
        <env name="CACHE_DRIVER" value="array"/>
        <env name="SESSION_DRIVER" value="array"/>
        <env name="QUEUE_DRIVER" value="sync"/>
    </php>
</phpunit>

我就这样phpstorm做了一个测试运行配置:

使运行配置后,当我在PHPSTORM点击调试按钮下面的命令运行。

C:\wamp64\bin\php\php7.1.16\php.exe
-dzend_extension=C:\wamp64\bin\php\php7.1.16\zend_ext\php_xdebug-2.6.0-7.1-vc14-x86_64.dll
-dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=9000 -dxdebug.remote_host=127.0.0.1 C:/wamp64/www/<PROJECT_FOLDER>/vendor/phpunit/phpunit/phpunit --bootstrap C:\wamp64\www\<PROJECT_FOLDER>\vendor\autoload.php --configuration C:\wamp64\www\<PROJECT_FOLDER>\phpunit.xml --teamcity

注意--teamcity 。 我不知道这件事:)还要注意背部和正斜杠。

我希望这有助于大家。



文章来源: How can I get XDebug to run with PHPUnit on the CLI?