CategoryNonExistentExceptionHandler example

use Shopware\Core\Framework\DataAbstractionLayer\Dbal\ExceptionHandlerInterface;

/** * @internal * * @covers \Shopware\Core\Content\Category\DataAbstractionLayer\CategoryNonExistentExceptionHandler */
class CategoryNonExistentExceptionHandlerTest extends TestCase
{
    public function testExceptionHandler(): void
    {
        $handler = new CategoryNonExistentExceptionHandler();

        static::assertEquals(ExceptionHandlerInterface::PRIORITY_DEFAULT, $handler->getPriority());

        $afterException = new ForeignKeyConstraintViolationException(
            new PDOException('SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`shopware`.`category`, CONSTRAINT `fk.category.after_category_id` FOREIGN KEY (`after_category_id`, `after_category_version_id`) REFERENCES `category` (`id`, `version_id`) ON DELETE SET NULL O)'),
            new Query('SOME QUERY', [][])
        );

        $matched = $handler->matchException($afterException);

        static::assertInstanceOf(CategoryException::class$matched);
        
Home | Imprint | This part of the site doesn't use cookies.