Debugging CiviCRM cheatsheet » History » Revision 13
Revision 12 (Jon Goldberg, 10/11/2021 06:32 PM) → Revision 13/48 (Jon Goldberg, 10/11/2021 06:32 PM)
{{last_updated_at}} by {{last_updated_by}} 
 # Debugging CiviCRM cheatsheet 
 ### Command-line runs of PHPUnit: 
 From a buildkit civiroot, run a specific file's tests:: 
 ```shell 
 CIVICRM_UF=UnitTests phpunit5 tests/phpunit/CRM/Core/BAO/AddressTest.php 
 ``` 
 You can also limit to a single test by filtering on name: 
 ```shell 
 CIVICRM_UF=UnitTests phpunit5 tests/phpunit/CRM/Core/BAO/AddressTest.php --filter testShared 
 ``` 
 ### With XDebug 
 * You need to specify a full path to phpunit (because running `php <script>` won't check your path for the script, just `php`). 
 * You need to have XDebug otherwise configured for CLI.    Here's the contents of my `/etc/php/7.4/cli/conf.d/xdebug.ini`: 
 ``` 
 xdebug.mode=debug,develop 
 xdebug.start_with_request=trigger 
 xdebug.client_port=9000 
 xdebug.client_host = "127.0.0.1" 
 xdebug.log=/var/log/xdebug.log 
 #xdebug.mode=profile 
 #xdebug.output_dir = "/home/jon/temp/xdebug" 
 ``` 
 * You need to start a debugging session in VS Code with "Listen for XDebug". 
 * Depending on your VS Code setup, you may need to listen on a different port (I can use the same port for FPM but not mod_php). 
 Once you've got all that: 
 ```shell 
 env CIVICRM_UF=UnitTests idekey=VSCODE php /home/jon/local/civicrm-buildkit/bin/phpunit7 /home/jon/local/civicrm-buildkit/build/dmaster/web/sites/all/modules/civicrm/tests/phpunit/CRM/Event/Form/Registration/ConfirmTest.php --filter testSubmit 
 ``` 
 ### Command-line runs of standalone scripts 
 ```shell 
 env XDEBUG_SESSION=VSCODE php -dzend_extension=xdebug.so myscript.php 
 ```