web-dev-qa-db-ja.com

どのように私はXDebugのは、CLI上でPHPUnitのを実行するために得ることができますか?

私は、次のCLIコマンドを実行しようとしました:

phpunit -d xdebug.profiler_enable=on XYZTestCase.php

しかし、それだけで通常通り動作します。右方向に誰ポイント私はできますか? THX!

ここでは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
49
blacktie24

_xdebug.profiler_enable_設定は、実行時には変更できず、スクリプトの開始時にのみ変更できます。

_phpunit -d foo=bar_を実行すると、phpunitがini_set("foo", "bar");を呼び出しますが、実行時に値が変更できないため機能しません。

参照: _xdebug.profiler_enable_

プロファイル出力ディレクトリにファイルを作成するXdebugのプロファイラーを有効にします。これらのファイルはKCacheGrindによって読み取られ、データを視覚化できます。この設定は、ini_set()を使用してスクリプトに設定することはできません。あなたが選択プロファイラを有効にする場合は、代わりにこの設定を使用しての1にxdebug.profiler_enable_triggerを設定してください。

解決:

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

PhpunitではなくPHPランタイムに設定を直接適用することにより、スクリプトが開始されて動作するbeforeになります。

45
edorian

これを機能させるために費やした年齢。これは私の人生を変えるかもしれないと思う!

私はもともと、Vagrant Box内でこれを実行しようとしていました(つまり、phpunitを実行していました)が、Vagrant Boxの外で実行する方が簡単(そしてパフォーマンスが速い)であることに気付きました。

まず、Macでbrew install php55 php55-xdebugusing homebrewを使用しました(ただし、構成が異なる場合があり、引き続き機能するはずです)。私のサイトはsymfony2プロジェクトです。

私はこれを追おうとしていました: phpunit vagrant xdebug vagrantボックス内から動作するようにしました(ほとんどそこに着きましたが、いくつかの問題がありました)。

これらの設定は私にとってはうまくいきました(浮浪者ボックスからサイトを実行していますが、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

次に、これをコマンドラインで実行します(ここでは、/ usr/local/binにリンクされているものの代わりにphpunitのダウンロードを使用しています(これは動作していないようです))

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

または、ここで概説するように、phpunit-debug(XDEBUG_CONFIG環境変数を保存する)というファイルを作成できます。 phpunit xdebug

9
timhc22

あなたはしてみました:

  1. Php.iniでxdebug.idekeyをwatheverに設定します(例:blacktie)
  2. サーバーを再起動します

  3. -d xdebug.idekey = blacktieを追加してスクリプトを呼び出します

    phpunit -d xdebug.profiler_enable = on -d xdebug.idekey = blacktie XYZTestCase.php

お役に立てば幸いです。

4
David Jacquel

設定の正しい名前はxdebug.profiler_enableアンダースコア付き。コマンドを次のように変更します。

phpunit -d xdebug.profiler_enable=on XYZTestCase.php
2
David Harkness

事前に環境変数を設定することにより、コマンドラインからXdebugを実行できます、例えば:

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

これは私のために働いた。

Xdebug documentation の詳細。

2

オンphpStormを使用するWindows

これをコマンドラインに入力します。

set XDEBUG_CONFIG="idekey=PHPSTORM"

これにより、phpStormが監視する環境変数が追加されます。

Cookie/post/get変数によってトリガーされたときにエディター/スタンドアロンデバッガーからXdebugが既に動作していると仮定して、同じトリガーを実行するシェルスクリプトを追加してください。

~/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" -- "$@"

次に、CLIでデバッグするには、次のようなものを使用します。

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

.bashrc~/bin$PATHを追加したことを確認してください。

0
Walf

まず、私の環境:

  • WampServerバージョン3.1.3 64ビット
  • Apache 2.4.33-PHP 7.1.16
  • MySQL 5.7.21
  • 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でテスト実行設定を行いました: Click the button in the red circleConfiguration Panel

実行構成を作成した後、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に注意してください。私はそれについて全く知りません:)またバックスラッシュとフォワードスラッシュに注意してください。

これが皆さんのお役に立てば幸いです。

0
aod