- Issue created by @lostcarpark
- 🇮🇪Ireland lostcarpark
I currently have a blocker on a kernel test I'm writing for conversion of comment to node.
In the
CommentMover
service, I have a functionconvertCommentToEntity
. After creating a new entity, it will either convert the comment into a redirection message, or delete.if ($redirect) { // @todo Replace comment with redirection message. } else { $movingComment->delete(); }
However, when I try calling this from a kernel test, I get the following in phpunit:
There was 1 error: 1) Drupal\Tests\comment_mover\Kernel\CommentMoverServiceTest::testConvertCommentToNode PHPUnit\Framework\Exception: Segmentation fault (core dumped) /var/www/html/vendor/phpunit/phpunit/src/Framework/TestSuite.php:684 /var/www/html/vendor/phpunit/phpunit/src/Framework/TestSuite.php:684 /var/www/html/vendor/phpunit/phpunit/src/TextUI/TestRunner.php:651 /var/www/html/vendor/phpunit/phpunit/src/TextUI/Command.php:144 /var/www/html/vendor/phpunit/phpunit/src/TextUI/Command.php:97 -- There was 1 risky test: 1) Drupal\Tests\comment_mover\Kernel\CommentMoverServiceTest::testConvertCommentToNode This test did not perform any assertions /var/www/html/web/core/tests/Drupal/Tests/Listeners/DrupalListener.php:66 /var/www/html/vendor/phpunit/phpunit/src/Framework/TestResult.php:452 /var/www/html/vendor/phpunit/phpunit/src/Framework/TestSuite.php:684 /var/www/html/vendor/phpunit/phpunit/src/Framework/TestSuite.php:684 /var/www/html/vendor/phpunit/phpunit/src/TextUI/TestRunner.php:651 /var/www/html/vendor/phpunit/phpunit/src/TextUI/Command.php:144 /var/www/html/vendor/phpunit/phpunit/src/TextUI/Command.php:97
I suspect there is some entity schema I've missed installing in my setup, but I have no idea what it could be.
Would welcome any suggestions.