ограничение памяти phpdbg при тестировании на инфекцию - PullRequest
0 голосов
/ 10 июня 2019

Я получаю сообщение об ошибке исчерпания памяти при попытке запустить тестирование на заражение с использованием phpdbg Я попытался установить -d memory_limit, но, похоже, его игнорируют.

Ниже приведен пример вывода:

$ phpdbg -qrr -d memory_limit=1G vendor/bin/infection
You are running Infection with phpdbg enabled.
     ____      ____          __  _
    /  _/___  / __/__  _____/ /_(_)___  ____
    / // __ \/ /_/ _ \/ ___/ __/ / __ \/ __ \
  _/ // / / / __/  __/ /__/ /_/ / /_/ / / / /
 /___/_/ /_/_/  \___/\___/\__/_/\____/_/ /_/

Running initial test suite...

PHPUnit version: 7.5.11

    4 [============================]  1 sec

 [ERROR] Project tests must be in a passing state before running Infection.

         Infection runs the test suite in a RANDOM order. Make sure your tests do not have hidden dependencies.

         You can add these attributes to `phpunit.xml` to check it: <phpunit executionOrder="random"
         resolveDependencies="true" ...

         If you don't want to let Infection run tests in a random order, set the `executionOrder` to some value, for
         example <phpunit executionOrder="default"

         Check the executed command to identify the problem: '/usr/local/Cellar/php@7.2/7.2.18/bin/phpdbg' '-qrr'
         '~/Project/vendor/phpunit/phpunit/phpunit' '--configuration'
         '/var/folders/05/qbcbz9cn08jdty7r35dwkgdm0000gn/T/infection/phpunitConfiguration.initial.infection.xml'

         PHPUnit reported an exit code of 255.

         Refer to the PHPUnit's output below:

         STDOUT:

         PHPUnit 7.5.11 by Sebastian Bergmann and contributors.

         Random seed:   1560152243

         [PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 65536 bytes) in
         ~/Project/vendor/sebastian/exporter/src/Exporter.php on line
         219]
         [PHP Stack trace:]
         [PHP   1. {main}()
         ~/Project/vendor/phpunit/phpunit/phpunit:0]

С моим файлом инфекции.json.dist:

{
    "timeout": 10,
    "source": {
        "directories": [
            "src"
        ]
    },
    "logs": {
        "text": "infection.log"
    },
    "mutators": {
        "@default": true
    }
}

Ответы [ 2 ]

0 голосов
/ 14 июля 2019

Вы можете забрать покрытие заранее, а затем передать его в Infection.

vendor/bin/phpunit --coverage-xml=build/logs/coverage-xml \
                   --log-junit=build/logs/phpunit.junit.xml \
                   --coverage-clover=build/logs/clover.xml
vendor/bin/infection --coverage=build/logs --show-mutations

Поскольку вы не будете одновременно запускать Infection и PHPUnit, вы можете полностью избежать проблемы с ограничением памяти.И если нет, запуск любой из программ с более высоким пределом памяти должен быть таким простым:

php -d memory_limit=-1 vendor/bin/...

Таким образом, вы также можете повторно запустить Infection после исправления тестов, чтобы увидеть, уничтожили ли вы мутацию безнужно вспомнить данные покрытия.

0 голосов
/ 10 июня 2019

Вы хотите memory_limit=-1 в файле конфигурации php.ini вашей среды разработки.

...