如何在Windows Server上使用PHP代码覆盖PHP代码?

时间:2016-11-03 10:10:46

标签: php phpunit code-coverage phpdbg php-code-coverage

由于我仍有troubles with PHPUnit / PHP Code Coverage and Xdebug,我决定以另一种方式尝试 - phpdbg

我是以hier显示的。在CMD和Git Bash中尝试过,但结果是一样的,它失败了:

$ composer info | grep "phpunit"
phpunit/php-code-coverage           4.0.0  Library that provides collectio...
phpunit/php-file-iterator           1.4.1  FilterIterator implementation t...
phpunit/php-text-template           1.2.1  Simple template engine.
phpunit/php-timer                   1.0.8  Utility class for timing
phpunit/php-token-stream            1.4.8  Wrapper around PHP's tokenizer ...
phpunit/phpunit                     5.4.6  The PHP Unit Testing framework.
phpunit/phpunit-mock-objects        3.2.3  Mock Object library for PHPUnit

$ phpdbg -qrr ./vendor/bin/phpunit -v

dir=$(d=${0%[/\\]*}; cd "$d"; cd "../phpunit/phpunit" && pwd)

# See if we are running in Cygwin by checking for cygpath program
if command -v 'cygpath' >/dev/null 2>&1; then
        # Cygwin paths start with /cygdrive/ which will break windows PHP,
        # so we need to translate the dir path to windows format. However
        # we could be using cygwin PHP which does not require this, so we
        # test if the path to PHP starts with /cygdrive/ rather than /usr/bin
        if [[ $(which php) == /cygdrive/* ]]; then
                dir=$(cygpath -m "$dir");
        fi
fi

dir=$(echo $dir | sed 's/ /\ /g')
"${dir}/phpunit" "$@"

如何获得组合PHPUnit& PHP代码覆盖率& phpdbg在Windows服务器上运行?

1 个答案:

答案 0 :(得分:4)

在Windows下,似乎vendor/bin中的文件实际上是批处理文件,调用原始文件(而不是phpdbg会理解的php文件)。

在这种情况下:

dir=$(d=${0%[/\\]*}; cd "$d"; cd "../phpunit/phpunit" && pwd)
                                  ^^^^^^^^^^^^^^^^^^
"${dir}/phpunit" "$@"
 ^^^^^^^^^^^^^^

即。 ../phpunit/phpunit/phpunit(此路径相对于vendor/bin);因此实际文件位于vendor/phpunit/phpunit/phpunit

然后您可以通过phpdbg -qrr vendor/phpunit/phpunit/phpunit直接调用它。